For a square matrix and an eigenvalue , two notions of “how many” the eigenvalue is:
- Algebraic multiplicity : the number of times appears as a root of the characteristic polynomial .
- Geometric multiplicity : the dimension of the eigenspace, i.e., the number of linearly independent eigenvectors corresponding to .
In general, . They can be equal (the matrix is non-defective for ) or unequal (, meaning is defective at ).
Why they can differ
The characteristic polynomial is a polynomial of degree for an matrix. Its roots are eigenvalues; their multiplicities (algebraic) are how many times each root appears.
The eigenspace for a particular eigenvalue is the kernel of — a subspace of . Its dimension is the geometric multiplicity.
These count different things. Algebraic multiplicity counts repetitions in the polynomial. Geometric multiplicity counts how many independent directions “stretches” by the same factor .
Consider . Characteristic polynomial: . So has .
But the eigenspace: becomes , giving . So eigenspace is span of , dimension 1: .
So but . The matrix is defective.
Diagonal vs defective matrices
A matrix is diagonalizable if and only if for every eigenvalue, . In that case, you can find a basis of eigenvectors and the matrix decomposes as with diagonal.
If any eigenvalue has , the matrix is defective — you can’t fully diagonalize it. The closest you can get is the Jordan canonical form with block-diagonal of Jordan blocks. Each Jordan block of size corresponds to an eigenvalue with geometric multiplicity 1 contributing algebraic multiplicity .
For an matrix with distinct eigenvalues, for each — automatically diagonalizable.
For repeated eigenvalues, you might or might not be diagonalizable, depending on the eigenspace structure.
Implications for ODE systems
For , we want linearly independent solutions to span the solution space.
If is diagonalizable (every ), each eigenvalue with contributes linearly independent solutions of the form (one per linearly independent eigenvector). Total: solutions.
If is defective at some eigenvalue (), you don’t have enough eigenvectors. Need generalized eigenvectors to fill out the solution space. See Repeated eigenvalues case for the construction.
Inequality holds always
For any eigenvalue of an matrix:
Lower bound 1: every eigenvalue has at least one eigenvector.
Upper bound : total of all equals .
The middle inequality comes from a counting argument: restricted to the generalized eigenspace acts as where is nilpotent — so the dimension of the generalized eigenspace is , and the eigenspace (kernel of , hence of ) is a subspace.
Computing them
For a given matrix:
- Compute to find eigenvalues. Multiplicities of roots are algebraic multiplicities.
- For each eigenvalue , solve — find the kernel. Dimension = geometric multiplicity.
- Compare: if , that eigenvalue’s eigenspace is “full.” If , the matrix is defective at .
Worked example
.
Algebraic: . So , .
Geometric: gives . The kernel: , so (one independent eigenvector). .
Since , the matrix is defective. To solve , you need a generalized eigenvector — see Repeated eigenvalues case.
For more on the linear-algebra background, this concept connects to Jordan canonical form (not yet in this vault).