How I can found the eigenvectors in the matrix A?
$$ A= \begin{bmatrix} 0 & c & -b \\ -c & 0 & a \\ b & -a & 0 \\ \end{bmatrix} $$ with the condition $a^2+b^2+c^2=1$
I have the Characteristic polynomial: $ \lambda \ ( - \lambda \ ^2-1)$ and the eigenvalues $ \lambda \ _1 =0$, $ \lambda \ _2 =i$, $ \lambda \ _3 =-i$
My idea is use the definition for example for $ \lambda \ _2 =i$
$(A- \lambda \ _2 I ) (x,y,z)^T =(0,0,0)^T$
then i get the system $$\begin{equation}\begin{aligned} -ix+cy-bz = 0 \\ -cx-iy+az= 0 \\ bx-ay-iz= 0\\ \end{aligned}\end{equation}\tag{1}\label{eq1}$$ I don't see a solution to find the eigenvectors, can you gime some hints?
For a $3\times 3$ matrix $A$ with eigenvalues $\{\lambda_1,\lambda_2,\lambda_3\}\,$ Cayley-Hamilton tells us that $$p(A) = (A-\lambda_1I)(A-\lambda_2I)(A-\lambda_3I) = 0$$ Define the vectors $$\eqalign{ x_1 &= (A-\lambda_2I)(A-\lambda_3I)b_1 \cr x_2 &= (A-\lambda_3I)(A-\lambda_1I)b_2 \cr x_3 &= (A-\lambda_1I)(A-\lambda_2I)b_3 \cr }$$ where $\,b_k\,$ is any vector which makes $\,x_k\,$ non-zero.
By direct calculation $$\eqalign{ (A-\lambda_1I)x_1 &= p(A)b_1 = 0 \cr (A-\lambda_2I)x_2 &= p(A)b_2 = 0 \cr (A-\lambda_3I)x_3 &= p(A)b_3 = 0 \cr }$$ Thus $x_k$ is the eigenvector associated with eigenvalue $\lambda_k$