I have the following matrix:
$$\left[\begin{matrix}-4 & 20 & -33 \\ 0 & 1 & 12 \\ 0 & 0 & 5\end{matrix}\right]$$
Since it is a triangular matrix, we have the eigenvalues: $-4,1,5$
Then, when I try to get the eigenvector for the eigenvalue $-4$.
A-In: $$\left[\begin{matrix}0 & -20 & 33 \\ 0 & -5 & -12 \\ 0 & 0 & -9\end{matrix}\right]$$
Then I do its RREF: $$\left[\begin{matrix}0 & 1 & 0 \\ 0 & 0 & 1 \\ 0 & 0 & 0\end{matrix}\right]$$
After this step, I get lost. Wouldn't the resulting vector be $\left[\begin{matrix}1 \\ 1 \\ 0\end{matrix}\right]$?
Thanks for your help in advance!