LinearAlgebra
Adjoint
compute the adjoint of a square Matrix
Calling Sequence
Parameters
Description
Examples
References
Adjoint(A, options)
A
-
square Matrix
options
(optional); constructor options for the result object
The Adjoint(A) function constructs Matrix M such that A·M=Determinant⁡A·IdentityMatrix⁡Dimensions⁡A. This is known as the "adjugate", "adjunct" or classical adjoint of A.
The constructor options provide additional information (readonly, shape, storage, order, datatype, and attributes) to the Matrix constructor that builds the result. These options may also be provided in the form outputoptions=[...], where [...] represents a Maple list. If a constructor option is provided in both the calling sequence directly and in an outputoptions option, the latter takes precedence (regardless of the order).
This function is part of the LinearAlgebra package, and so it can be used in the form Adjoint(..) only after executing the command with(LinearAlgebra). However, it can always be accessed through the long form of the command by using LinearAlgebra[Adjoint](..).
with⁡LinearAlgebra:
A1≔9,4,1|1,3,−1|0,8,1:
C1≔Adjoint⁡A1,datatype=float
C1≔11.−1.8.4.9.−72.−7.10.23.
A1·C1
103.0.0.0.103.0.0.0.103.
Determinant⁡A1
103
A2≔a,2⁢a|3,−a:
C2≔Adjoint⁡A2
C2≔−a−3−2⁢aa
A2·C2
−a2−6⁢a00−a2−6⁢a
Determinant⁡A2
−a2−6⁢a
de Boor, Carl. "An Empty Exercise." ACM SIGNUM Newsletter, Vol. 25 No. 2. (1990): 2-6.
See Also
LinearAlgebra[Determinant]
LinearAlgebra[Dimension]
LinearAlgebra[IdentityMatrix]
Matrix
Download Help Document