You can use a similar approach for
3×3 matrices.
You subtract all numbers on the diagonal by
λ and find the values of
λ such that the determinant of this matrix is 0.
det⎣⎢⎡6−λ8217−λ91−1−1−λ⎦⎥⎤=0
To find the determinant of a
3×3 matrix, you use the following formula:
det⎣⎢⎡a11a21a31a12a22a32a13a23a33⎦⎥⎤=a11det[a22a32a23a33]−a12det[a21a31a23a33]+a13det[a21a31a22a32]
This is called
Laplace expansion. You look through a row, and for each element
arc in the
r-th row, you cover up the
r-th row and the
c-th column, and evaluate the determinant. Then multiply that to
arc(−1)r+c, and then sum up the results through the row. This works for any row, and the formula I gave for the special case of
3×3 determinants is the Laplace expansion of first row the determinant.
After using the formula and doing some work, you will find the eigenvalues. Finding eigenvectors is just the same.