HOME

TheInfoList



OR:

In numerical
linear algebra Linear algebra is the branch of mathematics concerning linear equations such as :a_1x_1+\cdots +a_nx_n=b, linear maps such as :(x_1, \ldots, x_n) \mapsto a_1x_1+\cdots +a_nx_n, and their representations in vector spaces and through matrix (mathemat ...
, the Arnoldi iteration is an eigenvalue algorithm and an important example of an
iterative method In computational mathematics, an iterative method is a Algorithm, mathematical procedure that uses an initial value to generate a sequence of improving approximate solutions for a class of problems, in which the ''i''-th approximation (called an " ...
. Arnoldi finds an approximation to the
eigenvalue In linear algebra, an eigenvector ( ) or characteristic vector is a vector that has its direction unchanged (or reversed) by a given linear transformation. More precisely, an eigenvector \mathbf v of a linear transformation T is scaled by a ...
s and
eigenvector In linear algebra, an eigenvector ( ) or characteristic vector is a vector that has its direction unchanged (or reversed) by a given linear transformation. More precisely, an eigenvector \mathbf v of a linear transformation T is scaled by ...
s of general (possibly non- Hermitian) matrices by constructing an orthonormal basis of the Krylov subspace, which makes it particularly useful when dealing with large sparse matrices. The Arnoldi method belongs to a class of linear algebra algorithms that give a partial result after a small number of iterations, in contrast to so-called ''direct methods'' which must complete to give any useful results (see for example, Householder transformation). The partial result in this case being the first few vectors of the basis the algorithm is building. When applied to Hermitian matrices it reduces to the
Lanczos algorithm The Lanczos algorithm is an iterative method devised by Cornelius Lanczos that is an adaptation of power iteration, power methods to find the m "most useful" (tending towards extreme highest/lowest) eigenvalues and eigenvectors of an n \times n ...
. The Arnoldi iteration was invented by W. E. Arnoldi in 1951.


Krylov subspaces and the power iteration

An intuitive method for finding the largest (in absolute value) eigenvalue of a given ''m'' × ''m'' matrix A is the power iteration: starting with an arbitrary initial vector b, calculate normalizing the result after every application of the matrix ''A''. This sequence converges to the
eigenvector In linear algebra, an eigenvector ( ) or characteristic vector is a vector that has its direction unchanged (or reversed) by a given linear transformation. More precisely, an eigenvector \mathbf v of a linear transformation T is scaled by ...
corresponding to the eigenvalue with the largest absolute value, \lambda_. However, much potentially useful computation is wasted by using only the final result, A^b. This suggests that instead, we form the so-called ''Krylov matrix'': :K_ = \beginb & Ab & A^b & \cdots & A^b \end. The columns of this matrix are not in general
orthogonal In mathematics, orthogonality (mathematics), orthogonality is the generalization of the geometric notion of ''perpendicularity''. Although many authors use the two terms ''perpendicular'' and ''orthogonal'' interchangeably, the term ''perpendic ...
, but we can extract an orthogonal basis, via a method such as Gram–Schmidt orthogonalization. The resulting set of vectors is thus an orthogonal basis of the '' Krylov subspace'', \mathcal_. We may expect the vectors of this basis to span good approximations of the eigenvectors corresponding to the n largest eigenvalues, for the same reason that A^b approximates the dominant eigenvector.


The Arnoldi iteration

The Arnoldi iteration uses the modified Gram–Schmidt process to produce a sequence of orthonormal vectors, ''q''1, ''q''2, ''q''3, ..., called the ''Arnoldi vectors'', such that for every ''n'', the vectors ''q''1, ..., ''q''''n'' span the Krylov subspace \mathcal_n. Explicitly, the algorithm is as follows: Start with an arbitrary vector ''q''1 with norm 1. Repeat for ''k'' = 2, 3, ... ''q''''k'' := ''A'' ''q''''k''−1 for ''j'' from 1 to ''k'' − 1 ''h''''j'',''k''−1 := ''q''''j''* ''q''''k'' ''q''''k'' := ''q''''k'' − h''j'',''k''−1 ''q''''j'' ''h''''k'',''k''−1 := ''q''''k'' := ''q''''k'' / ''h''''k'',''k''−1 The ''j''-loop projects out the component of q_k in the directions of q_1,\dots,q_. This ensures the orthogonality of all the generated vectors. The algorithm breaks down when ''q''''k'' is the zero vector. This happens when the minimal polynomial of ''A'' is of degree ''k''. In most applications of the Arnoldi iteration, including the eigenvalue algorithm below and GMRES, the algorithm has converged at this point. Every step of the ''k''-loop takes one matrix-vector product and approximately 4''mk'' floating point operations. In the programming language Python with support of the NumPy library: import numpy as np def arnoldi_iteration(A, b, n: int): """Compute a basis of the (n + 1)-Krylov subspace of the matrix A. This is the space spanned by the vectors . Parameters ---------- A : array_like An m × m array. b : array_like Initial vector (length m). n : int One less than the dimension of the Krylov subspace, or equivalently the *degree* of the Krylov space. Must be >= 1. Returns ------- Q : numpy.array An m x (n + 1) array, where the columns are an orthonormal basis of the Krylov subspace. h : numpy.array An (n + 1) x n array. A on basis Q. It is upper Hessenberg. """ eps = 1e-12 h = np.zeros((n + 1, n)) Q = np.zeros((A.shape n + 1)) # Normalize the input vector Q , 0= b / np.linalg.norm(b, 2) # Use it as the first Krylov vector for k in range(1, n + 1): v = np.dot(A, Q , k - 1 # Generate a new candidate vector for j in range(k): # Subtract the projections on previous vectors h , k - 1= np.dot(Q , jconj(), v) v = v - h , k - 1* Q , j h , k - 1= np.linalg.norm(v, 2) if h , k - 1> eps: # Add the produced vector to the list, unless Q
, k The comma is a punctuation mark that appears in several variants in different languages. Some typefaces render it as a small line, slightly curved or straight, but inclined from the vertical; others give it the appearance of a miniature fille ...
= v / h , k - 1 else: # If that happens, stop iterating. return Q, h return Q, h


Properties of the Arnoldi iteration

Let ''Q''''n'' denote the ''m''-by-''n'' matrix formed by the first ''n'' Arnoldi vectors ''q''1, ''q''2, ..., ''q''''n'', and let ''H''''n'' be the (upper Hessenberg) matrix formed by the numbers ''h''''j'',''k'' computed by the algorithm: : H_n = Q_n^* A Q_n. The orthogonalization method has to be specifically chosen such that the lower Arnoldi/Krylov components are removed from higher Krylov vectors. As A q_i can be expressed in terms of ''q''1, ..., ''q''''i''+1 by construction, they are orthogonal to ''q''''i''+2, ..., ''q''''n'', We then have : H_n = \begin h_ & h_ & h_ & \cdots & h_ \\ h_ & h_ & h_ & \cdots & h_ \\ 0 & h_ & h_ & \cdots & h_ \\ \vdots & \ddots & \ddots & \ddots & \vdots \\ 0 & \cdots & 0 & h_ & h_ \end. The matrix ''H''''n'' can be viewed as ''A'' in the subspace \mathcal_n with the Arnoldi vectors as an orthogonal basis; ''A'' is orthogonally projected onto \mathcal_n. The matrix ''H''''n'' can be characterized by the following optimality condition. The
characteristic polynomial In linear algebra, the characteristic polynomial of a square matrix is a polynomial which is invariant under matrix similarity and has the eigenvalues as roots. It has the determinant and the trace of the matrix among its coefficients. The ...
of ''H''''n'' minimizes , , ''p''(''A'')''q''1, , 2 among all
monic polynomial In algebra, a monic polynomial is a non-zero univariate polynomial (that is, a polynomial in a single variable) in which the leading coefficient (the nonzero coefficient of highest degree) is equal to 1. That is to say, a monic polynomial is one ...
s of degree ''n''. This optimality problem has a unique solution if and only if the Arnoldi iteration does not break down. The relation between the ''Q'' matrices in subsequent iterations is given by : A Q_n = Q_ \tilde_n where : \tilde_n = \begin h_ & h_ & h_ & \cdots & h_ \\ h_ & h_ & h_ & \cdots & h_ \\ 0 & h_ & h_ & \cdots & h_ \\ \vdots & \ddots & \ddots & \ddots & \vdots \\ \vdots & & 0 & h_ & h_ \\ 0 & \cdots & \cdots & 0 & h_ \end is an (''n''+1)-by-''n'' matrix formed by adding an extra row to ''H''''n''.


Finding eigenvalues with the Arnoldi iteration

The idea of the Arnoldi iteration as an eigenvalue algorithm is to compute the eigenvalues in the Krylov subspace. The eigenvalues of ''H''''n'' are called the ''Ritz eigenvalues''. Since ''H''''n'' is a Hessenberg matrix of modest size, its eigenvalues can be computed efficiently, for instance with the QR algorithm, or somewhat related, Francis' algorithm. Also Francis' algorithm itself can be considered to be related to power iterations, operating on nested Krylov subspace. In fact, the most basic form of Francis' algorithm appears to be to choose ''b'' to be equal to ''Ae''1, and extending ''n'' to the full dimension of ''A''. Improved versions include one or more shifts, and higher powers of ''A'' may be applied in a single steps. This is an example of the Rayleigh-Ritz method. It is often observed in practice that some of the Ritz eigenvalues converge to eigenvalues of ''A''. Since ''H''''n'' is ''n''-by-''n'', it has at most ''n'' eigenvalues, and not all eigenvalues of ''A'' can be approximated. Typically, the Ritz eigenvalues converge to the largest eigenvalues of ''A''. To get the smallest eigenvalues of ''A'', the inverse (operation) of ''A'' should be used instead. This can be related to the characterization of ''H''''n'' as the matrix whose characteristic polynomial minimizes , , ''p''(''A'')''q''1, , in the following way. A good way to get ''p''(''A'') small is to choose the polynomial ''p'' such that ''p''(''x'') is small whenever ''x'' is an eigenvalue of ''A''. Hence, the zeros of ''p'' (and thus the Ritz eigenvalues) will be close to the eigenvalues of ''A''. However, the details are not fully understood yet. This is in contrast to the case where ''A'' is Hermitian. In that situation, the Arnoldi iteration becomes the Lanczos iteration, for which the theory is more complete. ]


Restarted Arnoldi iteration

Due to practical storage consideration, common implementations of Arnoldi methods typically restart after a fixed number of iterations. One approach is the Implicitly Restarted Arnoldi Method (IRAM) by Lehoucq and Sorensen, which was popularized in the free and open source software package ARPACK. Another approach is the Krylov-Schur Algorithm by G. W. Stewart, which is more stable and simpler to implement than IRAM.


See also

The generalized minimal residual method (GMRES) is a method for solving ''Ax'' = ''b'' based on Arnoldi iteration.


References

* W. E. Arnoldi, "The principle of minimized iterations in the solution of the matrix eigenvalue problem," ''Quarterly of Applied Mathematics'', volume 9, pages 17–29, 1951. * Yousef Saad, ''Numerical Methods for Large Eigenvalue Problems'', Manchester University Press, 1992. . * Lloyd N. Trefethen and David Bau, III, ''Numerical Linear Algebra'', Society for Industrial and Applied Mathematics, 1997. . * Jaschke, Leonhard: ''Preconditioned Arnoldi Methods for Systems of Nonlinear Equations''. (2004). * Implementation:
Matlab MATLAB (an abbreviation of "MATrix LABoratory") is a proprietary multi-paradigm programming language and numeric computing environment developed by MathWorks. MATLAB allows matrix manipulations, plotting of functions and data, implementat ...
comes with ARPACK built-in. Both stored and implicit matrices can be analyzed through th
eigs()
function. {{DEFAULTSORT:Arnoldi Iteration Numerical linear algebra