LinearAlgebra
CharacteristicMatrix
construct the characteristic Matrix
Calling Sequence
Parameters
Description
Examples
CharacteristicMatrix(A, lambda, options)
A
-
square Matrix
lambda
name; used as a variable
options
(optional); constructor options for the result object
The CharacteristicMatrix(A, lambda) function constructs the characteristic Matrix M=I⁢λ−A, where I is the appropriately sized identity Matrix. The determinant of M, found by using Determinant(M), is the characteristic polynomial 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 CharacteristicMatrix(..) only after executing the command with(LinearAlgebra). However, it can always be accessed through the long form of the command by using LinearAlgebra[CharacteristicMatrix](..).
with⁡LinearAlgebra:
A≔1,2,3|1,2,3|1,5,6
A≔111225336
CharacteristicMatrix⁡A,λ
λ−1−1−1−2λ−2−5−3−3λ−6
See Also
LinearAlgebra[CharacteristicPolynomial]
LinearAlgebra[CompanionMatrix]
LinearAlgebra[Determinant]
LinearAlgebra[Eigenvalues]
LinearAlgebra[NullSpace]
Download Help Document