I want to diagonalize the following matrix:
$$A =\begin{bmatrix} 1&0&0&0 \\ 0&0&1&0 \\ 0&1&0&0\\ 0&0&0&1 \end{bmatrix}$$
And I get the following characteristic equation: $(\lambda - 1)^3(\lambda +1)$ and therefore $\lambda=1,-1$
Firstly get the basis vectors for $\lambda = 1$ $$(A - \lambda_2 I_4) = \begin{bmatrix} 0&0&0&0 \\ 0&-1&1&0 \\ 0&1&-1&0\\ 0&0&0&0 \end{bmatrix} \rightarrow \text{row reduce} \rightarrow \begin{bmatrix} 0&1&-1&0 \\ 0&0&0&0 \\ 0&0&0&0\\ 0&0&0&0 \end{bmatrix}$$
So I have $x_2 = x_3$ wich yields the vector: $$v_1 = \begin{bmatrix} 0 \\ 1 \\ 1\\ 0 \end{bmatrix}$$
However there should be $3$ basis vectors total for $\lambda = 1$ according to the characteristic equation.
The answer key gives vectors: $$\begin{bmatrix} 1 \\ 0 \\ 0\\ 0 \end{bmatrix} , \begin{bmatrix} 0 \\ 0 \\ 0\\ 1 \end{bmatrix}$$ to be the other basis vectors for $\lambda = 1$, but where do these vectors come from in regards to my reduced matrix? I understand there ought to be 2 additional vectors to the one that I found but why are they the vectors given?