I have this matrix:
$$ A= \begin{pmatrix} 0 & 1 & 1 \\ 0 & 1 & 0 \\ -1 & 1 & 2 \\ \end{pmatrix} $$
I have founded the eigenvalues: $$\lambda_{1,2,3}=1$$ So $$\lambda=1$$$$\mu=3$$
I'm expecting to have one eigenvector plus two generalized eigenvectors. But, proceding I have some troubles:
$$ A= \begin{pmatrix} -1 & 1 & 1 \\ 0 & 0 & 0 \\ -1 & 1 & 1 \\ \end{pmatrix} \begin{pmatrix} x \\ y\\ z\\ \end{pmatrix} = \begin{pmatrix} 0 \\ 0 \\ 0 \\ \end{pmatrix} $$
Which cleary brings to two equal equations:
$$-x+y+z=0$$
I don't know how I should proceed. I can find a solution by trying some values but I don't like this method. Which is the best and secure method to solve this problem? Thank you very much.