|
In mathematics, power iteration is an eigenvalue algorithm: given a matrix A, the algorithm will produce a number λ (the eigenvalue) and a nonzero vector v (the eigenvector), such that Av = λv. The power iteration is a very simple algorithm. It does not compute a matrix decomposition, and hence it can be used when A is very large sparse matrix. However, it will find only one eigenvalue (the one with the greatest absolute value) and it may converge only slowly.
The method The power iteration algorithm starts with a vector b0, which may be an approximation to the dominant eigenvector or a random vector. The method is described by the iteration So, at every iteration, the vector bk is multiplied by the matrix A and normalized. Under the assumptions: Note that the sequence does not necessarily converge. It can be shown that: where: is an eigenvector associated with the dominant eigenvalue, and . The presence of the term implies that does not converge unless Under the two assumptions listed above, the sequence defined by: converges to the dominant eigenvalue. The method can also be used to calculate the spectral radius of a matrix by computing the Rayleigh quotient Analysis Let be decomposed into its Jordan canonical form: , where the first column of is an eigenvector of corresponding to the dominant eigenvalue . Since the dominant eigenvalue of is unique, the first Jordan block of is the matrix , where is the largest eigenvalue of A in magnitude. The starting vector can be written as a linear combination of the columns of V: . By assumption, has a nonzero component in the direction of the dominant eigenvalue, so . The computationally useful recurrence relation for can be rewritten as: , where the expression: is more amenable to the following analysis. The expression above simplifies as as . The limit follows from the fact that the eigenvalue of is less than in 1 in magnitude, so as It follows that: as Using this fact, can be written in a form that emphasizes its relationship with when k is large: where and as The sequence is bounded, so it contains a convergent subsequence. Note that the eigenvector corresponding to the dominant eigenvalue is only unique up to a scalar, so although the sequence may not converge, is nearly an eigenvector of A for large k. Alternatively, if A is diagonalizable, then the following proof yields the same result Let λ1, λ2, …, λm be the m eigenvalues (counted with multiplicity) of A and let v1, v2, …, vm be the corresponding eigenvectors. Suppose that is the dominant eigenvector, so that for . The initial vector can be written: If is chosen randomly (with uniform probability), then c1 ≠ 0 with probability 1. Now, & = & c_lambda_^v_ + c_lambda_^v_ + cdots + c_lambda_^v_ \ & = & c_lambda_^ left( v_ + racleft(rac ight)^v_ + cdots + racleft(rac ight)^v_ ight). end The expression within parentheses converges to because for . On the other hand, we have Therefore, converges to (a multiple of) the eigenvector . The convergence is geometric, with ratio ight|, where denotes the second dominant eigenvalue. Thus, the method converges slowly if there is an eigenvalue close in magnitude to the dominant eigenvalue. Applications Power iteration is not used very much because it can find only the dominant eigenvalue. Nevertheless, the algorithm is very useful in some specific situations. For instance, Google uses it to calculate the page rank of documents in their search engine. Some of the more advanced eigenvalue algorithms can be understood as variations of the power iteration. For instance, the inverse iteration method applies power iteration to the matrix . Other algorithms look at the whole subspace generated by the vectors . This subspace is known as the Krylov subspace. It can be computed by Arnoldi iteration or Lanczos iteration. | ||||||||
|
| |||||||||
![]() |
|
| |