Here we will present the QR algorithm, an important iterative method for solving the eigenvalue problem of a general square matrix (real or complex, symmetric or non-symmetric). To do so, we first need to consider the Schur decomposition, the theoretical foundation for the QR algorithm, which has two versions for real and complex matrices.
Theorem of Schur decomposition (complex):
A complex matrix can be decomposed into a product
Proof: The proof is by
induction.
When , the statement is
trivially true. We assume this is true for
, and show the statement
is also true for
. Let
be the normalized eigenvector of
corresponding to an eigenvalue
, i.e.,
and
. We construct a unitary
matrix
(78) |
(79) |
(80) |
(81) |
(82) |
QED
Theorem Schur decomposition (real):
A real matrix can be decomposed into a product
(84) |
Note that here is not strictly triangular, as there may
exist some
blocks on the diagonal, i.e., some subdiagonal
entries may be non-zeor.
Proof:
We first review the following simple facts. Let and
be the eigenvalue and the corresponding eigenvector of a real matrix
, i.e.,
. Taking complex conjugate
on both sides we get
. Consider the following two cases:
(85) |
Assume a real matrix has a pair of complex conjugate eigenvalues
with the corresponding complex conjugate eigenvectors
:
(86) |
(87) |
(88) |
(89) |
(90) |
(91) |
Now we are ready to prove the theorem, by following the same induction
steps in the proof of the complex Schur decomposition. Let
be an eigenvalue of
. If
is real, it has a real
eigenvector
and we proceed as in the proof of the previus
theorem. If
is complex, then it must have be one of a pair of
complex conjugate eigenvalue
with the corresponding
eigenvectors
. We can now construct an
orthogonal matrix
, where
and
are the orthonormal basis of
as defined above, and
is an
matrix composed
of
orthonormal vectors all orthogonal to
and
.
Now we have
(92) |
(93) |
QED
In particular, if
is real and symmetric, all of its
eigenvalues are real, and all entries above the diagonal of
are eliminated as well as those below, i.e.,
becomes the
diagonal eigenvalue matrix containing all real eigenvalues, and the
corresponding
matrix becomes the orthogonal eigenvector
matrix.
Example 1: The QR algorithm applied to this given complex matrix
Example 2:
Example 3:
The proof of the Schur decomposition theorems is not constructive (it
is based on the unknown eigenvalues of ), it does not lead
to any specific algorithm for actually obtaining
. However, the
QR algorithm below can be used to actually implement the Schur
decomposition, thereby solving the eigenvalue problem of a real square
matrix
.
The QR algorithm
The first step is to perform the QR decomposition of the given matrix:
, i.e.,
. The second step
is to construct a new matrix
.
Then these two steps are carried out iteratively until
becomes
a quasi upper triangular matrix:
(94) |
(95) |
(96) |
Theorem: Let have distinct eigenvalues satisfying
. The iteration on
of the QR algorithm given above converges to an upper
triangular matrix
, i.e.,
(97) |
(98) |
The proof of this theorem can be found in
7.3, Matrix Computations 4th ed. G.H. Golub and C. F. Van Loan,
The Johns Hopkins University Press,
In this QR algorithm, the QR decomposition with complexity is
carried out in every iteration. To reduce the complexity, we can first
convert
into a Hessenberg matrix
with
all components below the subdiagonal being zero. As the complexity of
each column transformation is constant
(instead of
), the
QR decomposition of
is
(instead of
, and the
overall complexity of the iterative algorithm is much reduced.
As and
are similar, they share
the same eigenvalues
, which are on the
diagonal elements of the upper triangular matrix
. We can
further find the corresponding eigenvectors of
by either of
the two methods below:
(99) |