I have the matrix of $A = \begin {pmatrix} 2 && 1 && 1 \\ 1 && 2 && 1 \\ 1 && 1 && 2 \end {pmatrix}$ and am trying to find its eigenvalue.
My work so far:
$A-\lambda = \begin {pmatrix} 2-\lambda && 1 && 1 \\ 1 && 2-\lambda && 1 \\ 1 && 1 && 2-\lambda \end {pmatrix}$
Using laplace expansion:
$(2-\lambda)((2-\lambda)^2-1) - ((2-\lambda)-1) + (1-(2-\lambda))$
Using difference of squares:
$(2-\lambda)(((2-\lambda)-1)(((2-\lambda)+1)) - ((2-\lambda)-1) + (1-(2-\lambda))$
and this is where I got stuck. I can't get it to the point where I can set each point to $0$ to get the eigenvalues. Any help would be appreciated.
Why don't you try opening the brackets as well? You have $$(2-\lambda)((2-\lambda)^2-1) - ((2-\lambda)-1) + (1-(2-\lambda))\\ = (2-\lambda)^3 - (2-\lambda) - (2-\lambda) + 1 + 1 - (2-\lambda)\\ = (2-\lambda)^3 - 3(2-\lambda) + 2$$
Take $\mu = 2 - \lambda$. You get $\mu^3 - 3\mu + 2$, and $\mu - 1$ is a divisor of the equation. $$\mu^3 - 3\mu + 2 = (\mu^2 + \mu - 2) (\mu - 1)=(\mu + 2)(\mu - 1)^2$$ Therefore $\mu = -2,1,1 \implies \lambda = 4,1,1$