Earlier today I posted about finding eigenvalues by inspection (Eigenvalues of a matrix A by inspection) when the matrix is of the form.
$$
\begin{bmatrix}
a&b&b\\
b&a&b\\
b&b&a
\end{bmatrix}
$$
For example:
$$
\begin{bmatrix}
3&2&2\\
2&3&2\\
2&2&3
\end{bmatrix}
$$
And I was made aware of an "algorithm" in such cases. Is there such shortcuts for matrices of the form:
$$ \begin{bmatrix} a&b&0\\ b&c&b\\ 0&b&a \end{bmatrix} $$
For example:
$$ \begin{bmatrix} 1&1&0\\ 1&2&1\\ 0&1&1 \end{bmatrix} $$
I might be starting to push my luck with this question because this matrix is slightly more complex than the previous example, but just putting it out there.
Thanks.