Why Krylov Subspace?
This note serves to remind me why the Krylov subspace is incredbly popular when it comes to numerical linear algebra.
We want to solve the linear system where is and . Let be a solution to this linear system. The goal is to claim that .
To prove this statement, we separate it into two cases:
- Case 1: is invertible
- Case 2: is not invertible
But by the end of this note, we will realize that the argument can be simply reduced to Case 2. The reason why I still put the Case 1 here is because it makes the whole thought more intuitive to me.
Case 1: is invertible
In this case, . Let be the characteristic polynomial of , by the Cayley-Hamilton theorem, satisfies , i.e, , therefore can be expressed as the linear combination of a set of vectors , implying that .
Case 2: is not invertible
In this case, we still want to proceed with the similar trick we've used in Case 1. So it urges me to express as where denotes the pseudo-inverse of . Let be the singular value decomposition (SVD) of where and and unitary, the matrix whose diagonal entries ( being the rank of ) the singular values of sorted in descending order. Then . Write where are the columns of . Rewerite in vector forms ( the columns of below), we have
What is
To prove that , it suffices to show that for some for every . Or to simplify the notation, for some , but it is easily found as we can dot product both sides with and evaluate .
We can immediately recognize that Case 2 is actually a generalization of Case 1 since every matrix admits the singular value decomposition.
We are now gaining more familiarity with the Krylov subspaces, and we are able to absorb the ideas of the Conjugate Gradient, MINRES, and GMRES algorithms more easily.