Inverse Power Iteration
   HOME

TheInfoList



OR:

In numerical analysis, inverse iteration (also known as the ''inverse power method'') is an iterative eigenvalue algorithm. It allows one to find an approximate eigenvector when an approximation to a corresponding eigenvalue is already known. The method is conceptually similar to the power method. It appears to have originally been developed to compute resonance frequencies in the field of structural mechanics. Ernst Pohlhausen, ''Berechnung der Eigenschwingungen statisch-bestimmter Fachwerke'', ZAMM - Zeitschrift für Angewandte Mathematik und Mechanik 1, 28-42 (1921). The inverse power iteration algorithm starts with an approximation \mu for the eigenvalue corresponding to the desired eigenvector and a vector b_0, either a randomly selected vector or an approximation to the eigenvector. The method is described by the iteration : b_ = \frac, where C_k are some constants usually chosen as C_k= \, (A - \mu I)^b_k \, . Since eigenvectors are defined up to multiplication by constant, the choice of C_k can be arbitrary in theory; practical aspects of the choice of C_k are discussed below. At every iteration, the vector b_k is multiplied by the matrix (A - \mu I)^ and normalized. It is exactly the same formula as in the power method, except replacing the matrix A by (A - \mu I)^. The closer the approximation \mu to the eigenvalue is chosen, the faster the algorithm converges; however, incorrect choice of \mu can lead to slow convergence or to the convergence to an eigenvector other than the one desired. In practice, the method is used when a good approximation for the eigenvalue is known, and hence one needs only few (quite often just one) iterations.


Theory and convergence

The basic idea of the power iteration is choosing an initial vector b (either an eigenvector approximation or a random vector) and iteratively calculating Ab, A^b, A^b,.... Except for a set of zero measure, for any initial vector, the result will converge to an eigenvector corresponding to the dominant eigenvalue. The inverse iteration does the same for the matrix (A - \mu I)^, so it converges to the eigenvector corresponding to the dominant eigenvalue of the matrix (A - \mu I)^. Eigenvalues of this matrix are (\lambda_1 - \mu)^,...,(\lambda_n - \mu)^, where \lambda_i are eigenvalues of A. The largest of these numbers corresponds to the smallest of (\lambda_1 - \mu),...,(\lambda_n - \mu). The eigenvectors of A and of (A - \mu I)^ are the same, since Av=\lambda v \Leftrightarrow (A-\mu I)v = \lambda v - \mu v \Leftrightarrow (\lambda - \mu)^ v = (A-\mu I)^ v Conclusion: The method converges to the eigenvector of the matrix A corresponding to the closest eigenvalue to \mu . In particular, taking \mu=0 we see that (A)^b_k converges to the eigenvector corresponding to the eigenvalue of A^ with the largest magnitude \frac and thus can be used to determine the smallest magnitude eigenvalue of A since they are inversely related.


Speed of convergence

Let us analyze the rate of convergence of the method. The power method is known to converge linearly to the limit, more precisely: \mathrm( b^\mathrm, b^_\mathrm)=O \left( \left, \frac \^k \right), hence for the inverse iteration method similar result sounds as: \mathrm( b^\mathrm, b^_\mathrm)=O \left( \left, \frac \^k \right). This is a key formula for understanding the method's convergence. It shows that if \mu is chosen close enough to some eigenvalue \lambda , for example \mu- \lambda = \epsilon each iteration will improve the accuracy , \epsilon, /, \lambda +\epsilon - \lambda_ , times. (We use that for small enough \epsilon "closest to \mu" and "closest to \lambda " is the same.) For small enough , \epsilon, it is approximately the same as , \epsilon, /, \lambda - \lambda_, . Hence if one is able to find \mu , such that the \epsilon will be small enough, then very few iterations may be satisfactory.


Complexity

The inverse iteration algorithm requires solving a linear system or calculation of the inverse matrix. For non-structured matrices (not sparse, not Toeplitz,...) this requires O(n^) operations.


Implementation options

The method is defined by the formula: : b_ = \frac, There are, however, multiple options for its implementation.


Calculate inverse matrix or solve system of linear equations

We can rewrite the formula in the following way: : (A - \mu I) b_ = \frac, emphasizing that to find the next approximation b_ we may solve a system of linear equations. There are two options: one may choose an algorithm that solves a linear system, or one may calculate the inverse (A - \mu I)^ and then apply it to the vector. Both options have complexity ''O(n3)'', the exact number depends on the chosen method. The choice depends also on the number of iterations. Naively, if at each iteration one solves a linear system, the complexity will be ''k*O(n3)'', where ''k'' is number of iterations; similarly, calculating the inverse matrix and applying it at each iteration is of complexity ''k*O(n3)''. Note, however, that if the eigenvalue estimate \mu remains constant, then we may reduce the complexity to ''O(n3) + k*O(n2)'' with either method. Calculating the inverse matrix once, and storing it to apply at each iteration is of complexity ''O(n3) + k*O(n2)''. Storing an LU decomposition of (A - \mu I) and using forward and back substitution to solve the system of equations at each iteration is also of complexity ''O(n3) + k*O(n2)''. Inverting the matrix will typically have a greater initial cost, but lower cost at each iteration. Conversely, solving systems of linear equations will typically have a lesser initial cost, but require more operations for each iteration.


Tridiagonalization,

Hessenberg form In linear algebra, a Hessenberg matrix is a special kind of square matrix, one that is "almost" triangular. To be exact, an upper Hessenberg matrix has zero entries below the first subdiagonal, and a lower Hessenberg matrix has zero entries above t ...

If it is necessary to perform many iterations (or few iterations, but for many eigenvectors), then it might be wise to bring the matrix to the upper
Hessenberg form In linear algebra, a Hessenberg matrix is a special kind of square matrix, one that is "almost" triangular. To be exact, an upper Hessenberg matrix has zero entries below the first subdiagonal, and a lower Hessenberg matrix has zero entries above t ...
first (for symmetric matrix this will be tridiagonal form). Which costs \begin\frac\end n^3 + O(n^2) arithmetic operations using a technique based on Householder reduction), with a finite sequence of orthogonal similarity transforms, somewhat like a two-sided QR decomposition..Lloyd N. Trefethen and David Bau, ''Numerical Linear Algebra'' (SIAM, 1997). (For QR decomposition, the Householder rotations are multiplied only on the left, but for the Hessenberg case they are multiplied on both left and right.) For symmetric matrices this procedure costs \begin\frac\end n^3 + O(n^2) arithmetic operations using a technique based on Householder reduction. Solution of the system of linear equations for the tridiagonal matrix costs O(n) operations, so the complexity grows like O(n^3) + kO(n), where k is the iteration number, which is better than for the direct inversion. However, for few iterations such transformation may not be practical. Also transformation to the
Hessenberg form In linear algebra, a Hessenberg matrix is a special kind of square matrix, one that is "almost" triangular. To be exact, an upper Hessenberg matrix has zero entries below the first subdiagonal, and a lower Hessenberg matrix has zero entries above t ...
involves square roots and the division operation, which are not universally supported by hardware.


Choice of the normalization constant C_k

On general purpose processors (e.g. produced by Intel) the execution time of addition, multiplication and division is approximately equal. But on embedded and/or low energy consuming hardware (
digital signal processor A digital signal processor (DSP) is a specialized microprocessor chip, with its architecture optimized for the operational needs of digital signal processing. DSPs are fabricated on MOS integrated circuit chips. They are widely used in audio si ...
s,
FPGA A field-programmable gate array (FPGA) is an integrated circuit designed to be configured by a customer or a designer after manufacturinghence the term '' field-programmable''. The FPGA configuration is generally specified using a hardware de ...
,
ASIC An application-specific integrated circuit (ASIC ) is an integrated circuit (IC) chip customized for a particular use, rather than intended for general-purpose use, such as a chip designed to run in a digital voice recorder or a high-efficien ...
) division may not be supported by hardware, and so should be avoided. Choosing C_k=2^ allows fast division without explicit hardware support, as division by a power of 2 may be implemented as either a bit shift (for
fixed-point arithmetic In computing, fixed-point is a method of representing fractional (non-integer) numbers by storing a fixed number of digits of their fractional part. Dollar amounts, for example, are often stored with exactly two fractional digits, representi ...
) or subtraction of k from the exponent (for
floating-point arithmetic In computing, floating-point arithmetic (FP) is arithmetic that represents real numbers approximately, using an integer with a fixed precision, called the significand, scaled by an integer exponent of a fixed base. For example, 12.345 can be ...
). When implementing the algorithm using
fixed-point arithmetic In computing, fixed-point is a method of representing fractional (non-integer) numbers by storing a fixed number of digits of their fractional part. Dollar amounts, for example, are often stored with exactly two fractional digits, representi ...
, the choice of the constant C_k is especially important. Small values will lead to fast growth of the norm of b_k and to overflow; large values of C_k will cause the vector b_k to tend toward zero.


Usage

The main application of the method is the situation when an approximation to an eigenvalue is found and one needs to find the corresponding approximate eigenvector. In such a situation the inverse iteration is the main and probably the only method to use.


Methods to find approximate eigenvalues

Typically, the method is used in combination with some other method which finds approximate eigenvalues: the standard example is the bisection eigenvalue algorithm, another example is the Rayleigh quotient iteration, which is actually the same inverse iteration with the choice of the approximate eigenvalue as the Rayleigh quotient corresponding to the vector obtained on the previous step of the iteration. There are some situations where the method can be used by itself, however they are quite marginal.


Norm of matrix as approximation to the ''dominant'' eigenvalue

The dominant eigenvalue can be easily estimated for any matrix. For any
induced norm In mathematics, a matrix norm is a vector norm in a vector space whose elements (vectors) are matrices (of given dimensions). Preliminaries Given a field K of either real or complex numbers, let K^ be the -vector space of matrices with m rows ...
it is true that \left \, A \right \, \ge , \lambda, , for any eigenvalue \lambda. So taking the norm of the matrix as an approximate eigenvalue one can see that the method will converge to the dominant eigenvector.


Estimates based on statistics

In some real-time applications one needs to find eigenvectors for matrices with a speed of millions of matrices per second. In such applications, typically the statistics of matrices is known in advance and one can take as an approximate eigenvalue the average eigenvalue for some large matrix sample. Better, one may calculate the mean ratio of the eigenvalues to the trace or the norm of the matrix and estimate the average eigenvalue as the trace or norm multiplied by the average value of that ratio. Clearly such a method can be used only with discretion and only when high precision is not critical. This approach of estimating an average eigenvalue can be combined with other methods to avoid excessively large error.


See also

* Power iteration * Rayleigh quotient iteration * List of eigenvalue algorithms


References

{{Numerical linear algebra Numerical linear algebra