Once the residual norm of a Ritz pair is small enough, we say a Ritz pair has converged. Until now I have not mentioned how we can find the next eigenpair, but it is clear that the converged eigenvector should not be part of the search space anymore, so that we can find eigenvector corresponding to eigenvalues farther away from our target.
Another reason to shrink the search subspace is when it simply becomes too big. A large search space not only requires much memory, but is computationally expensive as well. We want to keep the computational costs of orthogonalization and extraction fixed, and therefore we simply impose a maximum dimension .
Hermetian problems and shrinking the search space
Hermetian matrices have orthogonal eigenvectors for distinct eigenvalues. This is useful, because we work with an orthonormal basis for our search space as well. In fact this orthogonality property is most pronounced when we shrink the search space.
Suppose is Hermetian and the columns of the orthonormal matrix span the search subspace. Then the Galerkin projection of onto the search subspace gives rise to a Hermetian matrix . So if its eigenvalues are distinct, its has an eigendecomposition where is unitary and .
Suppose that the Ritz pair is converged, then we can remove it from our search space by choosing a new basis in terms of all Ritz vectors excluding . This is equivalent as updating as
Similarly for restarts. If the search subspace becomes to large so that , we decide to keep only the most promising Ritz vectors. That would for instance mean updating as
Each time we update our basis of the search space , we must also update our Galerkin approximation of . Since our new basis consists of Ritz vectors, our Galerkin approximation will be diagonal:
Note that we could also restart with our current best approximate eigenvector (that is ), but usually it’s a shame to throw away so many good directions. IRAM is another eigensolver that restarts with a small basis of Ritz vectors, but this restart is more subtle, as one must also have that the shrunken search space is a Krylov subspace.
Change of basis without temporaries
The following is probably not a real issue these days, but if a restart is necessary because of memory limitations, you really would not want to store temporarily both the old basis together with the new basis . It is however possible to compute this matrix-matrix product in-place.
To do so (assuming is square), compute the LU decomposition , and compute the product
column-wise from left to right with and from right to left with . If we must compute the product with only a few columns of , then we could perform only a partial LU decomposition. Lastly, for a stable LU decomposition we need pivoting, but I will not go into that detail.
Non-Hermetian problems
Non-Hermatian matrices do not necessarily have orthonormal eigenvectors, and since we really want to work with orthonormal vectors, an alternative is to use the Schur decomposition. More about this in a next post.