The Eigenvalue Equation
Start from and rearrange: . Writing , this becomes . So finding an eigenvector for is the same as finding a nonzero vector in the null space of the matrix .
The null space of contains a nonzero vector if and only if is singular — that is, not invertible. A square matrix is singular precisely when its determinant is zero. So the condition for to be an eigenvalue is: .
This is the key insight: every eigenvalue problem reduces to a determinant equation. Instead of searching blindly for vectors satisfying , we first find all valid by solving , then find the corresponding vectors.
Formal View
Equivalently: is an eigenvalue iff is singular iff .
Why This Matters
Reducing eigenvalue finding to a determinant condition gives a systematic algorithm that works for any square matrix.
- Stability analysis of linear dynamical systems depends on whether eigenvalues have positive or negative real parts
- Numerical methods like the QR algorithm find all eigenvalues of large matrices iteratively
- The condition underlies the characteristic equation used in control theory
- Differential equations: evolves along eigenvector directions, with rates given by eigenvalues
Quiz
is an eigenvalue of if and only if:
If is invertible, then is an eigenvalue of .
For the diagonal matrix , which values are eigenvalues?
Common Mistakes
- Writing the eigenvalue equation as instead of — is a scalar, not a matrix input.
- Confusing with (you must subtract a matrix , not a scalar from ).
- Forgetting the : computing instead of .