A Householder transformation of a vector
is its reflection
(mirror image) with respect to a plane or hyperplane (as a mirror)
through the origin with unit normal vector
(
):
 |
(51) |
where
is the
projection
of
onto the unit vector
, and
is the Householder matrix
that converts
to its reflection
. Given the
desired reflection
, we can get the normal direction
of the reflection plane
, and then
normalize it to get
. Although the
Householder transformation is expressed as a linear transformation
, its computational complexity is
, instead
of
for a general matrix multiplication
.
The Householder matrix
is symmetric
 |
(52) |
and orthogonal:
i.e.,
. As vector norm is preserved by an
orthogonal transform, we have
.
We can verify that
indeed converts the given
into
the desired
if
, or
if
:
The Householder transformation is typically used to convert a given
vector
into a vector with all but the
first one of its components converted to zero:
![$\displaystyle {\bf x}'=[x'_1,0,\cdots,0]^T=\vert\vert{\bf x}\vert\vert{\bf e}_1$](img246.svg) |
(55) |
where
is the first standard basis vector.
In this case, the normal vector needs to be:
 |
(56) |
We note that the reflection
is always a real vector. However, when the given vector
is complex, the reflection needs to be kept complex as well, instead
of being forced to be real. In this case, we should use
, where
is a normalized complex value based on the first entry of the given
vector
.
By applying a sequence of Householder transformations to the rows
and columns of a given square matrix
, we can convert it
into certain desired form, such as a tridiagonal matrix if
is symmetric, or a Hessenberg matrix if
is non-symmetric.
This process is actually a similarity transformation
, which preserves the eigenvalues of
. Some subsequent algorithm can be further applied to
solve the eigenvalue problem an arbitrary matrix
.
We first consider converting a symmetric matrix
to a tridiagonal matrix. To start, we construct an
square matrix:
![$\displaystyle {\bf Q}_1=\left[\begin{array}{c\vert ccc}
1&0&\cdots&0\\ \hline 0& & & \\ \vdots & &{\bf P}_{N-1} & \\
0& & & \end{array}\right]$](img253.svg) |
(57) |
where
is an
dimensional Householder matrix that
converts
containing the last
elements of
the first column of
into
. Note that
is also symmetric and orthogonal.
Pre-multiplying
to
we get:
where
is an
dimensional submatrix containing
the lower-right
by
elements of
. We see that
the last
components of the first column of the resulting matrix
are zero. We next post-multiply
to
modify the first row:
We see that the last
components of the first row and column
of
become zero.
This process is then repeated for the lower-right submatrix
of
. Pre and post
multiplying
by
![$\displaystyle {\bf Q}_2=\left[\begin{array}{cc\vert ccc}
1&0&0&\cdots&0\\ 0&1&0...
...ne
0&0& & & \\ \vdots &\vdots& &{\bf P}_{N-2} & \\
0&0& & & \end{array}\right]$](img272.svg) |
(60) |
we get
![$\displaystyle {\bf A}''={\bf Q}_2{\bf A}'{\bf Q}_2={\bf Q}_2{\bf Q}_1{\bf A}{\b...
...{\bf P}_{N-2}{\bf A}_{N-2}{\bf P}_{N-2}& \\
0 &0& & & & \\
\end{array}\right]$](img273.svg) |
(61) |
We see that the last
components of the second row and column
of
become zero. This process is repeated until after
iterations the N-D matrix
is converted into a
tridiagonal matrix, with all entries
equal to zero except
those along the sub-diagonal (
), the superdiagonal (
)
as well as the main diagonal (
):
 |
(62) |
where we have defined
. Note
that
is not symmetric (a product of symmetric matrices is
not symmetric), but it is orthogonal:
The resulting matrix
, a similarity transformation
of
, has the same eigenvalues as
.
Based on the example tridiagonalization above, we make a few notes
- One may wonder if the method for tridiagonalizing a symmetric
matrix could also diagonalize the matrix, so that all entries become
zero, except those on the main diagonal, which become the eigenvalues.
Unfortunately, this is impossible, as the entire N-D matrix, instead
an (N-1)-D submatrix, needs to be Householder transformed. After the
pre-multiplication of a Householder matrix to convert a column, the
following post-multiplication of the Householder matrix to convert a
row will modify the entire matrix, including the column, thereby
destroying the previous results.
- The same algorithm for tridiagonalization of a symmetric matrix
can also be applied to a non-symmetric matrix
.
However, as its rows are not the same as its columns, while the
pre-multiplication of the Householder matrices can convert all entries
below the sub-diagonal to zero, the post-multiplication by the the same
matrices can no longer convert all entries above the super-diagonal to
zero. The resulting matrix
, called
Hessenberg matrix, is not tridiagonal, as the entries above the
super-diagonal are non-zero. The non-symmetric matrix could still be
tridiagonalized by post-multiplying the Householder matrices based on
its rows (instead its columns). However, as the post-multiplying matrix
is not the same as pre-multiplying matrix, this is not a similarity
transformation, and the eigenvalues are not preserved.
- We can also convert a non-symmetric matrix
into a upper
triangular matrix
by a sequence of Householder transformations
applied only to the columns of
. This is the QR decomposition
to be considered in the next section. Note that this is not a similarity
transformation,
and
do not have the same eigenvalues.
However, it can be used as an iterative step in an algorithm for solving
the eigenvalue problem.
- The method of Gauss-Jordan elimination based on the elementary row
operations can also convert a given matrix
into a lower of
upper triangular matrix, or even a diagonal matrix. However, this is
not a similarity transformation, and the eigenvalues are not preserved.
While this method can be used to find the inverse of
, it
cannot be used for solving eigenvalue problem.
Examples: Consider two matrices, one symmetric, one non-symmetric:
- The following symmetric matrix can be converted into a tridiagonal matrix:
by
The tridiagonal matrix
and the symmetric matrix
share the same eigenvalues
.
- The following non-symmetric
can be converted into
a Hessenberg matrix
by
The Hessenberg matrix
and the non-symmetric matrix
share the same eigenvalues
.