I am given the matrix:
$$A = \begin{pmatrix} 0 & 1 & 1 \\ 1 & 0 & 1 \\ 1 & 1 & 0 \\ \end{pmatrix}$$
I have to show that the following is true:
$$A ^ {2009} + A ^ {2008} = 2 ^ {2008} (A + I_3)$$
I calcucalted $A^2, A^3, A^4,...$ in hopes that I would find some kind of pattern, but I didn't.
Your matrix is symmetric, so you can take a few short-cuts. In general a matrix is diagonalizable iff for every eigenvalue, the algebraic multiplicity of the eigenvalue in the characteristic equation is equal to the dimension of the corresponding eigenspace. However, a symmetric matrix has 3 special properties (i) all the eigenvalues are real, so we don't have to work with complex numbers on the diagonal or anywhere else. (ii) the matrix is diagonalizable $i.e.$ it is guaranteed the every eigenspace has the "right" dimension [(iii) it is orthogonally diagonalizable I'll say a bit about that at the end, since we can do your problem wihout using that property.]Unfortunately, knowing that a matrix is diagonalizable isn't enough-we have to actually $do$ the diagonalization. Your matrix has eigenvalues 2, with algebraic multiplicity 1 and -1 with algebraic multiplicity 2. A basis for the eigenspace for eigenvalue 2 is $$\left\{\begin{bmatrix}1\\1\\1\end{bmatrix}\right\}$$ A basis for the eigenspace for eigenvalue -1 is $$\left\{\begin{bmatrix}1\\0\\-1\end{bmatrix},\begin{bmatrix}0\\1\\-1\end{bmatrix}\right\}.$$ Let $$P=\begin{bmatrix}1&1&0\\1&0&1\\1&-1&-1\end{bmatrix}$$ Let $$D=\begin{bmatrix}2&0&0\\0&-1&0\\0&0&-1\end{bmatrix}. $$ Then $P^{-1}AP=D,A=PAP^{-1}$ $$ A^n=PD^nP^{-1}$$ $$=P\begin{bmatrix}2^n&0&0\\0&(-1)^n&0\\0&0&(-1)^n\end{bmatrix}P^{-1}$$ All that remains for you to do is calculate $P^{-1}$ and stick in the appropriate values for $n.$ If you find the calculation of $P^{-1}$ tedious, a slight variation, which which works for symmetric matrices, is to use their third property above. Find an orthonormal basis for each eigenspace($e.g.$ by the Gram-Schmidt procedure) and write them side-by-side to give an orthogonal matrix matrix $ P'$ such that $A=P'D(P')^{-1}$. Then $(P')^{-1}=P'^T,$ which is much easier to calculate.