Find the Jordan basis of a matrix

jordan-normal-formlinear algebra

I'm trying to find the Jordan basis of the matrix $$A =\begin{bmatrix} 8 & 1 & 2 \\ -3 & 4 & -2\\ -3 & -1 & 3\end{bmatrix}$$ I've got the characteristic equation to be $CA(x) = (5-x)^3$ and hence the eigenvalue to be $5$. I started by finding $v_1$ such that $(A-5I)v_1=0$ and chose $v_1 = \begin{bmatrix} 1 \\ -3 \\ 0\end{bmatrix}$. I then tried to find a $v_2$ such that $(A-5I)^2v_2 = 0$ but $(A-5I)^2$ is the zero matrix so can $v_2$ be any vector in $\mathbb{R}^3$?

More generally, when trying to find a Jordan basis for a matrix $A$, what do you do when $(A-\lambda I)^i=0$ for some $i$? Also what do you do when there is no solution to $(A-\lambda I)^iv_i = 0$ for a particular $i$?

Best Answer

If the minimal polynomial is $(\lambda -5)^2,$ you may, indeed, pick any column vector $w$ you like that is not already an eigenvector, make it the right hand column of $P. \; $ The rule is that the middle column must be $v = (A-5I) w.$ The left column of $P$ is then $u,$ a different eigenvector from $v.$ Sometimes it takes a little ingenuity to take the pair of eigenvectors you first calculated and revise to get $u.$

Then, with matrix $P,$ you get $J = P^{-1}AP.$

Try it.

Related Question