A topic in the Open Knowledge Graph — a free, open map of 15,290 topics and the order to learn them in.

Power Method for Eigenvalues

Graduate Depth 85 in the knowledge graph I know this Set as goal
1topic build on this
350prerequisites beneath it
See this on the map →
Eigenvalues and EigenvectorsQR Algorithm
power-method eigenvalues iteration

Core Idea

The power method finds the largest (in absolute value) eigenvalue and its eigenvector by repeatedly multiplying a random vector by the matrix: v(k+1) = Av(k) / ‖Av(k)‖. Convergence is geometric with rate determined by the ratio of the two largest eigenvalues. Simple to implement, the power method is practical for large sparse matrices but slow when eigenvalues are close.

Explainer

You already know that eigenvalues and eigenvectors satisfy Av = λv: multiplying a matrix by its eigenvector just scales that vector by λ. The power method exploits this property directly. Start with any random vector v⁰, multiply repeatedly by A, and normalize after each step. After many iterations, the direction of vk converges to the dominant eigenvector — the eigenvector corresponding to the largest absolute eigenvalue λ₁.

The reason this works becomes clear when you decompose the starting vector in the eigenvector basis. Write v⁰ = c₁v₁ + c₂v₂ + ... + cₙvₙ. After k applications of A: Aᵏv⁰ = c₁λ₁ᵏv₁ + c₂λ₂ᵏv₂ + ... = λ₁ᵏ(c₁v₁ + c₂(λ₂/λ₁)ᵏv₂ + ...). Since |λ₂/λ₁| < 1 (λ₁ is strictly dominant), every term except the first shrinks to zero. The iteration is dominated by the v₁ component, which is exactly the eigenvector you want. The normalization at each step prevents the vector from growing to infinity or shrinking to zero — it keeps the direction visible.

The convergence rate is |λ₂/λ₁|: the ratio of the second-largest to the largest eigenvalue. If this ratio is small (eigenvalues well-separated), convergence is fast. If it is close to 1 (eigenvalues nearly equal), convergence is very slow — the second component decays slowly and the iteration must work longer to wash it out. The Rayleigh quotient μ = (vk)ᵀ A vk / (vk)ᵀ vk gives an estimate of λ₁ at each step and converges quadratically once the eigenvector direction is approximately right.

For large sparse matrices from real applications — finite element models, network graphs, Google's PageRank — A might be millions by millions, but applying A to a vector is cheap (only the nonzero entries matter). This is where the power method shines: each iteration requires only a single matrix-vector multiply. The method can be extended via deflation: once λ₁ and v₁ are found, project out v₁ from the matrix and apply the method again to find the next eigenvalue. The QR algorithm — a much more sophisticated technique — can be understood in part as a way of applying power-method logic to all eigenvalues simultaneously and efficiently.

Practice Questions 5 questions

Prerequisite Chain

Understanding ZeroThe Number ZeroCounting to FiveCounting to 10Counting to 20Counting a Set of Objects Up to 20Cardinality: The Last Number CountedMatching Numerals to QuantitiesSubitizing Small QuantitiesAddition Within 10Number Bonds to 10Addition Within 20Doubles and Near DoublesDoubles Facts Within 10Near Doubles Facts Within 20Mental Math Strategies for AdditionMental Math: Adding and Subtracting TensAddition Within 100Repeated Addition as MultiplicationMultiplication as Equal GroupsMultiplication: ArraysBasic Multiplication Facts (0s, 1s, 2s, 5s, 10s)Multiplication Facts Within 100Division as Equal SharingDivision as Grouping (Measurement Division)Division: Grouping (Repeated Subtraction) ModelDivision: Fair Sharing ModelDivision as Equal SharingDivision as GroupingBasic Division FactsDivision Facts Within 100Multiplication and Division Fact FamiliesRelationship Between Multiplication and DivisionDivision Facts as Inverse of MultiplicationRemainders and Quotients in DivisionDivision Word ProblemsMulti-Step Word ProblemsSolving Multi-Step Word ProblemsMultiplication Word ProblemsDivision Word ProblemsIntroduction to Long DivisionFactors and MultiplesPrime and Composite NumbersEquivalent FractionsRelating Fractions and DecimalsDecimal Place ValueIntegers and the Number LineComparing and Ordering IntegersAbsolute ValueAdding IntegersSubtracting IntegersMultiplying IntegersDividing IntegersUnit RatesProportionsPercent ConceptConverting Between Fractions, Decimals, and PercentsOperations with Rational NumbersTwo-Step EquationsSolving Multi-Step EquationsEquations with Variables on Both SidesAngle Pairs: Complementary, Supplementary, and VerticalParallel Lines and TransversalsCorresponding AnglesAlternate Interior AnglesTriangle Angle Sum TheoremExterior Angle TheoremTriangle Inequality TheoremSimilar Triangles: AA SimilaritySimilar Triangles: SSS and SAS SimilarityProportions in Similar TrianglesRight Triangle Trigonometry IntroductionSine, Cosine, and Tangent RatiosTrigonometric Ratios ReviewVectors in Two DimensionsVector Operations: Addition, Subtraction, and Scalar MultiplicationDot Product (Inner Product in R^n)Matrix MultiplicationDeterminants of 2×2 and 3×3 MatricesInvertible Matrices and Matrix InversesSystems of Linear Equations and Matrix FormGaussian Elimination and Row ReductionRow Echelon Form and Back SubstitutionThe Standard Matrix of a Linear TransformationEigenvalues and EigenvectorsPower Method for Eigenvalues

Longest path: 86 steps · 350 total prerequisite topics

Prerequisites (1)

Leads To (1)