[Math] Find a basis in which matrix will be diagonal

diagonalizationlinear algebra

Let $F= \begin{bmatrix}
-1 & -2 & 2 \\
0 & 1 & 0 \\
0 & 0 & 1 \\
\end{bmatrix}$ is a matrix of a linear transformation $f:\mathbb{R^3}\rightarrow \mathbb{R^3}$ in standard basis. Find a basis in which $F$ will be diagonal matrix.

Matrix $F$ is diagonalizable $\Rightarrow J=\begin{bmatrix}
-1 & 0 & 0 \\
0 & 1 & 0 \\
0 & 0 & 1 \\
\end{bmatrix}$ and a basis in which $F$ is diagonal are column vectors of $J$.

Is this correct?

Best Answer

Write $F = Q\Lambda Q^{-1}$, where $\Lambda$ is a diagonal matrix, and Q contains the eigenvectors as its columns. Then Q is a set of basis for which F is a scaling transformation. To see this, $Q\Lambda Q^{-1}$ is applied from right to left, and means:

$Q^{-1}$ maps any vector in the original space into vector represented by basis Q

$\Lambda$ performs a scaling (diagonal) transformation

$Q$ maps the vector represented in basis $Q$ back to original space.

So if you think about this decomposition of transformation mean, you can see why Q is the basis for which the transformation F can be represented by a diagonal matrix

Related Question