I must make the following matrix upper triangular:
\begin{bmatrix} 2 & 1 & 0 & 0 \\ 0 & 2 & 0 & 1 \\ 1 & 0 & 2 & 0 \\ 0 & 0 & 0 & 2 \end{bmatrix}
To do this, I'm calculating the Jordan Normal form outlined here.
There is only one eigenvalue, 2. So I must find three generalized eigenvectors (ugh).
To find the first one, I try to solve $(A-λI)v_2=v_1$, where $v_1$ is the first eigenvector: \begin{bmatrix} 0 \\ 0 \\ 1 \\ 0 \end{bmatrix}
So the equation is the following ($v_{21},v_{22},v_{23},v_{24}$ are the four components of $v_2$)
$$\begin{bmatrix} 0 & 1 & 0 & 0 \\ 0 & 0 & 0 & 1 \\ 1 & 0 & 0 & 0 \\ 0 & 0 & 0 & 0 \end{bmatrix} \begin{bmatrix} v_{21} \\ v_{22} \\ v_{23} \\ v_{24} \end{bmatrix}= \begin{bmatrix} 0 \\ 0 \\ 1 \\ 0 \end{bmatrix}$$
My problem is that there is a column of all zeros in the first matrix, which means that there are infinite solutions for $v_{33}$? I'm not sure what I'm doing wrong here but any help would be appreciated!
And for the generalized eigenvectors, how would one solve for P then? Wouldn't P be a 4x4 matrix there? That seems like a lot of systems of equations (which I'm fine with doing, but want to make sure before I undertake that challenge)
– Anthony Dec 08 '17 at 21:30