I have this 4x4 matrix:
\begin{bmatrix} -1 & -1 & -1 & -1 \\ -1 & -1 & -1 & -1 \\ 4 & 3 & 4 & 2 \\ -2 & 0 & -2 & 1 \\ \end{bmatrix}
I know the eigenvectors are:
\begin{bmatrix} -1\\ -1 \\ 1 \\ 2 \\ \end{bmatrix} and \begin{bmatrix} -1\\ 0 \\ 1 \\ 0 \\ \end{bmatrix}
but I don't know how to get there. For matrices with patterns of upper right or lower left zeroes I've found 'easy' solutions, but this one doesn't seem to have an obvious way in.
To clarify a bit, I'm not just looking for specific steps for this matrix, but also general patterns that are useful to attack problems like this. For example, the solutions to this one are quite diverse, but involve row operations that are likely applicable only to that specific matrix.