Eigenpair with the Largest Eigenvalue: Difference between revisions

From Algorithm Wiki
Jump to navigation Jump to search
(Created page with "{{DISPLAYTITLE:Eigenpair with the Largest Eigenvalue (Eigenvalues (Iterative Methods))}} == Description == Given an $n \times n$ matrix $A$, find the eigenpair (eigenvalue and associated eigenvector) of $A$ with the largest eigenvalue. == Related Problems == Generalizations: Any Eigenpair Related: All Eigenvalues, Any Eigenvalue, All Eigenpairs, Eigenpair closest to mu == Parameters == No parameters found. == Table of Algorithms == {| clas...")
 
No edit summary
 
(4 intermediate revisions by the same user not shown)
Line 12: Line 12:
== Parameters ==  
== Parameters ==  


No parameters found.
$n$: dimension of matrix


== Table of Algorithms ==  
== Table of Algorithms ==  
Line 26: Line 26:
|}
|}


== Time Complexity graph ==  
== Time Complexity Graph ==  


[[File:Eigenvalues (Iterative Methods) - Eigenpair with the Largest Eigenvalue - Time.png|1000px]]
[[File:Eigenvalues (Iterative Methods) - Eigenpair with the Largest Eigenvalue - Time.png|1000px]]
== Space Complexity graph ==
[[File:Eigenvalues (Iterative Methods) - Eigenpair with the Largest Eigenvalue - Space.png|1000px]]
== Pareto Decades graph ==
[[File:Eigenvalues (Iterative Methods) - Eigenpair with the Largest Eigenvalue - Pareto Frontier.png|1000px]]

Latest revision as of 10:08, 28 April 2023

Description

Given an $n \times n$ matrix $A$, find the eigenpair (eigenvalue and associated eigenvector) of $A$ with the largest eigenvalue.

Related Problems

Generalizations: Any Eigenpair

Related: All Eigenvalues, Any Eigenvalue, All Eigenpairs, Eigenpair closest to mu

Parameters

$n$: dimension of matrix

Table of Algorithms

Name Year Time Space Approximation Factor Model Reference
Power Iteration 1929 $O(n^{2})$ $O(n)$ Exact Deterministic Time

Time Complexity Graph

Eigenvalues (Iterative Methods) - Eigenpair with the Largest Eigenvalue - Time.png