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

Online Help

All Products    Maple    MapleSim


LinearAlgebra

  

MinimalPolynomial

  

construct the minimal polynomial of a Matrix

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

MinimalPolynomial(A, lambda)

Parameters

A

-

Matrix

lambda

-

name; used as a variable

Description

• 

The MinimalPolynomial(A, lambda) function returns a polynomial in lambda that is the minimal polynomial of Matrix A.

  

The minimal polynomial of A is the polynomial of lowest degree that divides every polynomial which has A as a zero.

  

The minimal polynomial of A always divides the characteristic polynomial of A.

• 

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

Examples

withLinearAlgebra:

A3,0,1|1,2,1|0,0,2

A3−100201−12

(1)

mpMinimalPolynomialA,x

mpx25x+6

(2)

divideCharacteristicPolynomialA,x,mp

true

(3)

Punapplymp,x

Pxx25x+6

(4)

PA

000000000

(5)

See Also

LinearAlgebra[CharacteristicPolynomial]

Matrix