Power Method Eigenvalue Calculator

Dominant eigenvalue finder

CalculatorsFreeNo Signup
4.3(192 reviews)
All Tools

Loading tool...

About Power Method Eigenvalue Calculator

A power method calculator for finding the largest eigenvalue and corresponding eigenvector of a matrix. Iterates v^(k+1) = Av^(k)/||Av^(k)||. Shows convergence of eigenvalue estimates. Select from preset matrices. All calculations are client-side. Essential for spectral analysis and PageRank.

Power Method Eigenvalue Calculator Features

  • Dominant λ
  • Eigenvector
  • Convergence
  • Iteration table
  • Presets
Power method: starting from v₀, iterate vₖ₊₁ = Avₖ/||Avₖ||. The Rayleigh quotient λₖ = vₖᵀAvₖ/vₖᵀvₖ converges to the dominant eigenvalue. Rate: |λ₂/λ₁|ᵏ. Used in Google's PageRank.

How to Use

Set up the matrix:

  • A: Square matrix
  • v₀: Initial vector
  • Output: λ₁ + eigenvector

PageRank Connection

Google PageRank = dominant eigenvector of the link matrix. Power method on billions of web pages. Convergence rate depends on ratio |λ₂/λ₁|, which Google controls via damping factor.

Limitations

Only finds dominant eigenvalue. Fails if |λ₁| = |λ₂|. Slow if λ₂ ≈ λ₁. For all eigenvalues, use QR algorithm. For specific eigenvalues, use inverse iteration or shift-invert.

Step-by-Step Instructions

  1. 1Select a matrix.
  2. 2View iterations.
  3. 3Watch λ converge.
  4. 4See eigenvector.
  5. 5Check convergence rate.

Power Method Eigenvalue Calculator — Frequently Asked Questions

Why does the power method work?+

Any vector v₀ can be written as c₁e₁+c₂e₂+... in the eigenbasis. After k iterations, Aᵏv₀ ≈ c₁λ₁ᵏe₁ (dominant term dominates). The direction converges to e₁ and the growth rate to λ₁.

How fast does it converge?+

Rate = |λ₂/λ₁|ᵏ. If λ₁=5 and λ₂=2, rate = 0.4ᵏ — fast convergence. If λ₁=5 and λ₂=4.9, rate = 0.98ᵏ — very slow. Deflation or shift can help.

What is inverse iteration?+

Apply power method to A⁻¹ instead: finds smallest eigenvalue. With shift: apply to (A−σI)⁻¹ to find eigenvalue nearest σ. Requires solving linear systems but converges much faster.

Share this tool: