Find the minimal polynomial of a matrix with two eigenvalues

186 Views Asked by At

I need to find the minimal polynomial for the following matrix:

$$ A = \begin{bmatrix} 1 & -2 & 3\\ 0 & 2 & 0\\ 0 & -2 & 1\\ \end{bmatrix} $$

The characteristic polynomial of the matrix above is $\det{(A-\lambda I_3)}=(\lambda - 1)^2\cdot(\lambda - 2)$ so there are two eigenvalues $2$ and $1$ (that's new to me).

How to find the minimal polynomial? Thank you!

2

There are 2 best solutions below

0
On

The minimal polynomial divides the characteristic polynomial and also contains the same irreducible factors as the characteristic polynomial. Therefore the two possibilities for the minimal polynomial of this matrix are $(\lambda -1)(\lambda - 2)$ and $(\lambda-1)^2(\lambda-2)$.

\begin{align*} (A-I)(A-2I) &= \begin{pmatrix} 0 & -2 & 3 \\ 0 & 1 & 0 \\ 0 & -2 & 0 \end{pmatrix} \begin{pmatrix} -1 & -2 & 3 \\ 0 & 0 & 0 \\ 0 & -2 & -1\end{pmatrix} \\ &= \begin{pmatrix} 0 &-6 &-3 \\0 & 0 & 0 \\0 &0 &0\end{pmatrix} \end{align*}

Therefore the minimal polynomial is not $(\lambda - 1)(\lambda-2)$.

Hence the minimal polynomial is $(\lambda - 1)^2(\lambda-2)$.

0
On

Well, do you have two one-dimensional subspaces of 1-eigenvectors, or a two-dimensional subspace of generalized 1-eigenvectors?

Try putting the matrix in Jordan canonical form.