Estimate the dominant eigenvalue from your matrix instantly. Inspect vectors, ratios, convergence, and iteration accuracy. Understand spectral behavior through practical outputs and helpful summaries.
Use a real square matrix. The method estimates the dominant eigenvalue by magnitude through power iteration and Rayleigh quotient updates.
| Sample Matrix | Initial Vector | Max Iterations | Tolerance | Approx. Leading Eigenvalue |
|---|---|---|---|---|
| [[4, 1, 0], [1, 3, 1], [0, 1, 2]] | [1, 1, 1] | 100 | 1e-8 | 4.732051 |
| [[6, 2], [2, 3]] | [1, 1] | 80 | 1e-8 | 7.000000 |
| [[5, -1, 0], [2, 4, 1], [0, 1, 3]] | [1, 0.5, 1] | 120 | 1e-9 | 5.732051 |
Start with a nonzero vector x₀. For each iteration, compute yₖ = A xₖ₋₁, then normalize to get xₖ = yₖ / ||yₖ||.
After each normalized vector update, estimate the eigenvalue with λₖ = (xₖᵀ A xₖ) / (xₖᵀ xₖ).
Measure quality using rₖ = ||A xₖ − λₖ xₖ||₂. Smaller residuals indicate a better eigenpair approximation.
The calculator stops early when the eigenvalue change becomes smaller than the tolerance and the residual is also sufficiently small.
It usually means the eigenvalue with the largest absolute value. In many applications, that value controls long-term growth, stability, or dominant system behavior.
Power iteration needs a starting direction. A nonzero initial vector lets the repeated matrix multiplications amplify the dominant eigendirection over time.
This version is designed for real-valued inputs and real iteration steps. It works best when the dominant eigenpair is real and well separated.
Convergence slows when the two largest eigenvalue magnitudes are close, when the initial vector poorly aligns with the dominant eigendirection, or when the matrix is defective.
The residual norm measures how closely the computed vector and value satisfy A x = λ x. Smaller residuals usually mean a more trustworthy estimate.
Euclidean normalization is common and stable for many problems. Infinity normalization can be useful for scaling by the largest component and simplifying interpretation.
No. The leading eigenvalue depends on the full matrix structure, not a single coefficient. Interactions across rows and columns determine the dominant behavior.
Export when you want to save convergence history, share results, compare matrices, or attach calculation evidence to notes, reports, or coursework.
Important Note: All the Calculators listed in this site are for educational purpose only and we do not guarentee the accuracy of results. Please do consult with other sources as well.