Inverse iteration

From HandWiki

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.[1]

The inverse power iteration algorithm starts with an approximation [math]\displaystyle{ \mu }[/math] for the eigenvalue corresponding to the desired eigenvector and a vector [math]\displaystyle{ b_0 }[/math], either a randomly selected vector or an approximation to the eigenvector. The method is described by the iteration

[math]\displaystyle{ b_{k+1} = \frac{(A - \mu I)^{-1}b_k}{C_k}, }[/math]

where [math]\displaystyle{ C_k }[/math] are some constants usually chosen as [math]\displaystyle{ C_k= \|(A - \mu I)^{-1}b_k \|. }[/math] Since eigenvectors are defined up to multiplication by constant, the choice of [math]\displaystyle{ C_k }[/math] can be arbitrary in theory; practical aspects of the choice of [math]\displaystyle{ C_k }[/math] are discussed below.

At every iteration, the vector [math]\displaystyle{ b_k }[/math] is multiplied by the matrix [math]\displaystyle{ (A - \mu I)^{-1} }[/math] and normalized. It is exactly the same formula as in the power method, except replacing the matrix [math]\displaystyle{ A }[/math] by [math]\displaystyle{ (A - \mu I)^{-1}. }[/math] The closer the approximation [math]\displaystyle{ \mu }[/math] to the eigenvalue is chosen, the faster the algorithm converges; however, incorrect choice of [math]\displaystyle{ \mu }[/math] 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 [math]\displaystyle{ b }[/math] (either an eigenvector approximation or a random vector) and iteratively calculating [math]\displaystyle{ Ab, A^{2}b, A^{3}b,... }[/math]. 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 [math]\displaystyle{ (A - \mu I)^{-1} }[/math], so it converges to the eigenvector corresponding to the dominant eigenvalue of the matrix [math]\displaystyle{ (A - \mu I)^{-1} }[/math]. Eigenvalues of this matrix are [math]\displaystyle{ (\lambda_1 - \mu)^{-1},...,(\lambda_n - \mu)^{-1}, }[/math] where [math]\displaystyle{ \lambda_i }[/math] are eigenvalues of [math]\displaystyle{ A }[/math]. The largest of these numbers corresponds to the smallest of [math]\displaystyle{ (\lambda_1 - \mu),...,(\lambda_n - \mu). }[/math] The eigenvectors of [math]\displaystyle{ A }[/math] and of [math]\displaystyle{ (A - \mu I)^{-1} }[/math] are the same, since

[math]\displaystyle{ Av=\lambda v \Leftrightarrow (A-\mu I)v = \lambda v - \mu v \Leftrightarrow (\lambda - \mu)^{-1} v = (A-\mu I)^{-1} v }[/math]

Conclusion: The method converges to the eigenvector of the matrix [math]\displaystyle{ A }[/math] corresponding to the closest eigenvalue to [math]\displaystyle{ \mu . }[/math]

In particular, taking [math]\displaystyle{ \mu=0 }[/math] we see that [math]\displaystyle{ (A)^{-1}b_k }[/math] converges to the eigenvector corresponding to the eigenvalue of [math]\displaystyle{ A^{-1} }[/math] with the largest magnitude [math]\displaystyle{ \frac{1}{\lambda _N} }[/math] and thus can be used to determine the smallest magnitude eigenvalue of [math]\displaystyle{ A }[/math] 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:

[math]\displaystyle{ \mathrm{Distance}( b^\mathrm{ideal}, b^{k}_\mathrm{Power~Method})=O \left( \left| \frac{\lambda_\mathrm{subdominant} }{\lambda_\mathrm{dominant} } \right|^k \right), }[/math]

hence for the inverse iteration method similar result sounds as:

[math]\displaystyle{ \mathrm{Distance}( b^\mathrm{ideal}, b^{k}_\mathrm{Inverse~iteration})=O \left( \left| \frac{\mu -\lambda_{\mathrm{closest~ to~ }\mu} }{\mu - \lambda_{\mathrm{second~ closest~ to~} \mu} } \right|^k \right). }[/math]

This is a key formula for understanding the method's convergence. It shows that if [math]\displaystyle{ \mu }[/math] is chosen close enough to some eigenvalue [math]\displaystyle{ \lambda }[/math], for example [math]\displaystyle{ \mu- \lambda = \epsilon }[/math] each iteration will improve the accuracy [math]\displaystyle{ |\epsilon| /|\lambda +\epsilon - \lambda_{\mathrm{closest~ to~} \lambda} | }[/math] times. (We use that for small enough [math]\displaystyle{ \epsilon }[/math] "closest to [math]\displaystyle{ \mu }[/math]" and "closest to [math]\displaystyle{ \lambda }[/math]" is the same.) For small enough [math]\displaystyle{ |\epsilon| }[/math] it is approximately the same as [math]\displaystyle{ |\epsilon| /|\lambda - \lambda_{\text{closest to } \lambda}| }[/math]. Hence if one is able to find [math]\displaystyle{ \mu }[/math], such that the [math]\displaystyle{ \epsilon }[/math] 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 [math]\displaystyle{ O(n^{3}) }[/math] operations.

Implementation options

The method is defined by the formula:

[math]\displaystyle{ b_{k+1} = \frac{(A - \mu I)^{-1}b_k}{C_k}, }[/math]

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: [math]\displaystyle{ (A - \mu I) b_{k+1} = \frac{b_k}{C_k}, }[/math]

emphasizing that to find the next approximation [math]\displaystyle{ b_{k+1} }[/math] 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 [math]\displaystyle{ (A - \mu I)^{-1} }[/math] 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 kO(n3), where k is number of iterations; similarly, calculating the inverse matrix and applying it at each iteration is of complexity kO(n3). Note, however, that if the eigenvalue estimate [math]\displaystyle{ \mu }[/math] remains constant, then we may reduce the complexity to O(n3) + kO(n2) with either method. Calculating the inverse matrix once, and storing it to apply at each iteration is of complexity O(n3) + kO(n2). Storing an LU decomposition of [math]\displaystyle{ (A - \mu I) }[/math] and using forward and back substitution to solve the system of equations at each iteration is also of complexity O(n3) + kO(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

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 first (for symmetric matrix this will be tridiagonal form). Which costs [math]\displaystyle{ \frac{10}{3} n^3 + O(n^2) }[/math] arithmetic operations using a technique based on Householder reduction), with a finite sequence of orthogonal similarity transforms, somewhat like a two-sided QR decomposition.[2][3] (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 [math]\displaystyle{ \frac{4}{3} n^3 + O(n^2) }[/math] arithmetic operations using a technique based on Householder reduction.[2][3]

Solution of the system of linear equations for the tridiagonal matrix costs [math]\displaystyle{ O(n) }[/math] operations, so the complexity grows like [math]\displaystyle{ O(n^3) + kO(n) }[/math], where [math]\displaystyle{ k }[/math] 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 involves square roots and the division operation, which are not universally supported by hardware.

Choice of the normalization constant Ck

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 processors, FPGA, ASIC) division may not be supported by hardware, and so should be avoided. Choosing [math]\displaystyle{ C_k = 2^{n_k} }[/math] 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) or subtraction of [math]\displaystyle{ k }[/math] from the exponent (for floating-point arithmetic).

When implementing the algorithm using fixed-point arithmetic, the choice of the constant [math]\displaystyle{ C_k }[/math] is especially important. Small values will lead to fast growth of the norm of [math]\displaystyle{ b_k }[/math] and to overflow; large values of [math]\displaystyle{ C_k }[/math] will cause the vector [math]\displaystyle{ b_k }[/math] 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 it is true that [math]\displaystyle{ \left \| A \right \| \ge |\lambda| , }[/math] for any eigenvalue [math]\displaystyle{ \lambda }[/math]. 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

References

  1. Ernst Pohlhausen, Berechnung der Eigenschwingungen statisch-bestimmter Fachwerke, ZAMM - Zeitschrift für Angewandte Mathematik und Mechanik 1, 28-42 (1921).
  2. 2.0 2.1 Applied Numerical Linear Algebra, Philadelphia, PA: Society for Industrial and Applied Mathematics, 1997, ISBN 0-89871-389-7 .
  3. 3.0 3.1 Lloyd N. Trefethen and David Bau, Numerical Linear Algebra (SIAM, 1997).