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

Online Help

All Products    Maple    MapleSim


Student[LinearAlgebra]

  

MinimalPolynomial

  

construct the minimal polynomial of a Matrix

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

MinimalPolynomial(A, t)

Parameters

A

-

Matrix

t

-

name; variable

Description

• 

The MinimalPolynomial(A, t) command returns a polynomial in t 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.

Examples

> 

with⁡StudentLinearAlgebra:

> 

A≔3,0,1|−1,2,−1|0,0,2

A≔3−100201−12

(1)
> 

mp≔MinimalPolynomial⁡A,x

mp≔x2−5⁢x+6

(2)
> 

divide⁡CharacteristicPolynomial⁡A,x,mp

true

(3)
> 

P≔unapply⁡mp,x

P≔x↦x2−5⋅x+6

(4)
> 

P⁡A

000000000

(5)

See Also

divide

LinearAlgebra[MinimalPolynomial]

Student[LinearAlgebra]

Student[LinearAlgebra][CharacteristicMatrix]

Student[LinearAlgebra][CharacteristicPolynomial]

unapply