I want to find all eigenvalues and eigenvectors of the matrix $\begin{bmatrix}0&1&0\\0&0&1\\-1&0&0\end{bmatrix}$.
Here is how I find eigenvalues: $$\begin{align*} \det(A - \lambda I) &= \det \Bigg(\begin{bmatrix}0&1&0\\0&0&1\\-1&0&0\end{bmatrix} - \begin{bmatrix}\lambda&0&0\\0&\lambda&0\\0&0&\lambda \end{bmatrix} \Bigg)\\ &= \det \Bigg(\begin{bmatrix} -\lambda&1&0 \\ 0&-\lambda&1 \\ -1&0&-\lambda \end{bmatrix} \Bigg)\\ &= -\lambda^3 - 1\\ \therefore \lambda =& -1 \end{align*}$$
Using eigenvalue that I found ($-1$), I want to find eigenvectors: $$\begin{align*} (A - \lambda I)\vec{V} =& 0\\ \Bigg(\begin{bmatrix}0&1&0\\0&0&1\\-1&0&0\end{bmatrix} - \begin{bmatrix}-1&0&0\\0&-1&0\\0&0&-1\end{bmatrix}\Bigg) \begin{bmatrix}x\\y\\z \end{bmatrix} =& \begin{bmatrix}0\\0\\0\end{bmatrix}\\ \begin{bmatrix}1&1&0\\0&1&1\\-1&0&1\end{bmatrix} \begin{bmatrix} x\\y\\z \end{bmatrix} = & \begin{bmatrix}0\\0\\0\end{bmatrix}\\ \begin{bmatrix} x+y \\ y+z \\ -x+z \end{bmatrix} = & \begin{bmatrix}0\\0\\0\end{bmatrix}\\ \end{align*}$$
But what I should do from now? What is really the eigenvectors? Does this means that I have unlimited eigenvectors and any number that satisfies three equations can be eigenvectors?
Since your characteristic equation is:
$$ \lambda^3 = -1 \rightarrow \lambda = e^{\pi i + \frac{2n\pi}{3}i} $$ and gives three distinct eigenvalues, there are exactly three eigenvectors only one of which has eigenvalue $\lambda = -1$.
$$ \begin{bmatrix} 1 & 1 & 0 \\ 0 &1& 1 \\ -1 &0 & 1 \end{bmatrix} \rightarrow \begin{bmatrix} 1 & 1 & 0 \\ 0 &1& 1 \\ 0 &1 & 1 \end{bmatrix} $$
Now the last two are degenerate (as we would expect) which gives:
$$ y = -z \\ x = -y = z \\ (z, -z, z) \rightarrow (1, -1, 1) $$
So $\left\langle1, -1, 1\right\rangle$ or $\left\langle \frac{1}{\sqrt{3}}, -\frac{1}{\sqrt{3}}, \frac{1}{\sqrt{3}}\right\rangle$ is the only eigenvector for $\lambda = -1$.
By only eigenvector, I mean that all eigenvectors for $\lambda = -1$ will be scalar multiples of the above.