What are the eigenvalues of the following matrix?
$$A=\left(\begin{matrix} 0 & 0 & 0 & 1 & 0&0\\ 0 & 0 & 0 & 0 & 1&0\\ 0 & 0& 0 & 0 & 0&1\\ 1 & 0 & 0 & 0 & 0&0\\ 0 & 1 & 0 & 0 & 0&0\\0&0&1&0&0&0 \end{matrix}\right)$$
My attempt: I know how to find the eigenvalues of a $2 \times 2$ matrix and of a $3 \times 3$ matrix. But here I am very confused, as I don't know how to find the eigenvalues of a $6 \times 6$ matrix.
Is there any easy method or some tricky method?
In this case, the simplest way to analyze it is to simply see what it does to vectors.
$A \left(\begin{matrix} a\\ b\\ c\\ d\\ e\\f \end{matrix}\right) = \left(\begin{matrix} d\\ e\\ f\\ a\\ b\\c \end{matrix}\right)$
So for an eigenvector, we have
$A \left(\begin{matrix} a\\ b\\ c\\ d\\ e\\f \end{matrix}\right) = \left(\begin{matrix} d\\ e\\ f\\ a\\ b\\c \end{matrix}\right) =\lambda \left(\begin{matrix} a\\ b\\ c\\ d\\ e\\f \end{matrix}\right)$
So $d=\lambda a $ and $a = \lambda d$, hence $a = \lambda^2 a$, so $\lambda = \pm 1$.
You can also observe that if you apply $A$ to a vector, and apply $A$ to the result, you get the original vector. So $A^2=I$, and the minimal polynomial of A is $t^2-1$, which has roots $\pm1$.