Finding eigenvalues and eigenvectors is a four-step procedure: a single algebraic equation produces the eigenvalues, and a separate null-space computation produces the eigenvectors for each one. The table below collects the four steps alongside what each one produces and the tool it relies on, summarizing the entire computational pipeline assembled across the sections above.
| Step |
Action |
Output |
Tool |
| 1 |
form the matrix A − λI |
an n × n matrix with λ subtracted along the diagonal |
scalar–matrix subtraction |
| 2 |
set det(A − λI) = 0 |
a degree-n polynomial in λ — the characteristic equation |
determinant (cofactor expansion or row reduction) |
| 3 |
solve the characteristic polynomial |
the n eigenvalues λ₁, …, λₙ (counted with algebraic multiplicity) |
polynomial root-finding (factoring, quadratic formula, …) |
| 4 |
for each λ, solve (A − λI)v = 0 |
a basis of the eigenspace Eλ; its dimension is the geometric multiplicity |
row reduction and parametric null-space extraction |