Choosing the Right Coordinates
Eigenvectors give a matrix its "natural axes." Diagonalization exploits this: if a matrix has enough independent eigenvectors to form a basis, then in that basis the transformation is simply a scaling along each axis — a diagonal matrix. Complicated becomes simple, just by choosing the right coordinates.
Concretely, a square matrix is diagonalizable if it can be written where is diagonal (the eigenvalues on its diagonal) and has the corresponding eigenvectors as its columns. The condition is exactly having a basis of eigenvectors: an matrix is diagonalizable if and only if it has linearly independent eigenvectors. (A sufficient condition: distinct eigenvalues guarantees it, since eigenvectors for distinct eigenvalues are automatically independent.)
Not every matrix is diagonalizable — a matrix with a repeated eigenvalue that lacks enough independent eigenvectors (a defective matrix) cannot be diagonalized. So diagonalizability is a genuine property, not automatic.
The payoff is computational. Powers become trivial: , and just raises each diagonal entry to the . Computing by repeated multiplication is enormous work; via diagonalization it is one matrix of easy powers, sandwiched by and . This is exactly how one solves systems of linear recurrences and differential equations, and how the long-term behavior of dynamical systems (dominant eigenvalue) is read off. Diagonalization is the practical reason eigenvalues matter.
Common pitfall: assuming every square matrix is diagonalizable. Diagonalization requires a full set of independent eigenvectors; a defective matrix (too few independent eigenvectors, from a repeated eigenvalue) cannot be diagonalized. Having distinct eigenvalues is sufficient but not necessary — some repeated-eigenvalue matrices are still diagonalizable, and some are not; you must check the eigenvectors.
A skewed eigenvector grid straightened by P^{-1} into axis-aligned coordinates where the accent diagonal matrix D simply scales each axis, then mapped back by P — diagonalization as a change of coordinates.