Diagonalization of a given matrix
Let
- Compute the characteristic polynomial
of . It has integer roots. - For each eigenvalue
of , find a basis for the eigenspace . - Determine if
is diagonalizable. If so, give matrices and such that and is diagonal. If no, explain carefully why is not diagonalizable.
View code
Let $A=\begin{bmatrix} 2 & -1 & -1 \\ 1 & 0 & -1 \\ 1 & -1 & 0\end{bmatrix}$.
\begin{enumerate}[label=\alph*)]
\item Compute the characteristic polynomial $p_A(x)$ of $A$. It has integer roots.
\item For each eigenvalue $\lambda$ of $A$, find a basis for the eigenspace $E_{\lambda}$.
\item Determine if $A$ is diagonalizable. If so, give matrices $P$ and $B$ such that $P^{-1}AP=B$ and $B$ is diagonal. If no, explain carefully why $A$ is not diagonalizable.
\end{enumerate}