Diagonalization Basics
Eigenvectors give a matrix its natural axes. Diagonalization exploits this: if a matrix has enough independent eigenvectors to form a basis, the transformation is simply scaling along each axis via a diagonal matrix.
A square matrix is diagonalizable if it can be written as:
| Component | Meaning | |
|---|---|---|
| Diagonal matrix containing eigenvalues on its diagonal | ||
| Matrix with corresponding eigenvectors as columns | ||
| Inverse of matrix , reversing the coordinate change |
An matrix is diagonalizable if and only if it has linearly independent eigenvectors. A sufficient condition is having distinct eigenvalues, as their eigenvectors are automatically independent.
Powers and Pitfalls
The true payoff of diagonalization is computational. Raising a matrix to a power becomes trivial using the formula:
Here, just raises each diagonal entry to the power . This avoids enormous multiplication work when computing , enabling fast solutions to linear recurrences and differential equations.
| Property | Status |
|---|---|
| Distinct Eigenvalues | Always diagonalizable (Sufficient) |
| Repeated Eigenvalues | May or may not be diagonalizable (Must check) |
| Defective Matrix | Matrix with repeated eigenvalue lacking enough independent eigenvectors. Cannot be diagonalized. |
Common pitfall: Assuming every square matrix is diagonalizable. You must always check the actual number of independent eigenvectors.