CharacteristicPolynomial - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


LinearAlgebra

  

CharacteristicPolynomial

  

construct the characteristic polynomial of a Matrix

 

Calling Sequence

Parameters

Description

Examples

References

Calling Sequence

CharacteristicPolynomial(A, lambda)

Parameters

A

-

Matrix

lambda

-

name; used as a variable

Description

• 

The CharacteristicPolynomial(A, lambda) function returns the characteristic polynomial in lambda that has the eigenvalues of Matrix A as its roots (all multiplicities respected).

  

This polynomial is the determinant of IλA, where I is the identity Matrix with dimension(A).

• 

When the input is an integer Matrix, the LinearAlgebra:-Modular:-IntegerCharacteristicPolynomial routine is used. Note: The IntegerCharacteristicPolynomial routine uses a probabilistic approach that achieves great gains for structured systems. Information on controlling the probabilistic behavior can be found in _EnvProbabilistic.

• 

This function is part of the LinearAlgebra package, and so it can be used in the form CharacteristicPolynomial(..) only after executing the command with(LinearAlgebra). However, it can always be accessed through the long form of the command by using LinearAlgebra[CharacteristicPolynomial](..).

Examples

withLinearAlgebra:

M1,0,0|1,1,0|0,3,2

M110013002

(1)

CharacteristicPolynomialM,x

x34x2+5x2

(2)

solve,x

2,1,1

(3)

EigenvaluesM,output=list

2,1,1

(4)

References

  

Abdeljaoued, J. "The Berkowitz Algorithm, Maple and Computing the Characteristic Polynomial in an Arbitrary Commutative Ring." MapleTech Vol. 4 No. 3. Birkhauser, (1997): 21-32.

  

De Boor, C. "An Empty Exercise." ACM SIGNUM Newsletter, Vol. 25 No. 2. (1990): 2-6.

See Also

LinearAlgebra[CharacteristicMatrix]

LinearAlgebra[Eigenvalues]

LinearAlgebra[IdentityMatrix]

LinearAlgebra[MinimalPolynomial]

Matrix