QR DECOMPOSITION
In linear algebra, the 'QR decomposition' (also called the 'QR factorization') of a matrix is a decomposition of the matrix into an orthogonal and a triangular matrix. The QR decomposition is often used to solve the linear least squares problem. The QR decomposition is also the basis for a particular eigenvalue algorithm, the QR algorithm.
A 'QR decomposition' of a real square matrix ''A'' is a decomposition of ''A'' as
:
where ''Q'' is an orthogonal matrix (meaning that ''Q''T''Q'' = ''I'' ) and ''R'' is an upper triangular matrix. Analogously, we can define the QL, RQ, and LQ decompositions of A.
More generally, we can factor a complex × matrix (with ''m'' ≥ ''n'') as the product of an × unitary matrix (in the sense that ''Q''∗''Q'' = ''I'' ) and an × upper triangular matrix.
If ''A'' is nonsingular, then this factorization is unique if we require that the diagonal elements of ''R'' are positive.
There are several methods for actually computing the QR decomposition, such as by means of the Gram–Schmidt process, Householder transformations, or Givens rotations. Each has a number of advantages and disadvantages.
Consider the Gram–Schmidt process, with the vectors to be considered in the process as the columns of the matrix . We define
where .
Then
:
:
:
::
:
We then rearrange the equations above so that the s are on the left, producing
the following equations.
:
:
:
::
:
Note that since the are unit vectors, we have the following.
:
:
:
::
:
Now these equations can be written in matrix form as follows.
:
But the product of each row and column of the matrices above give us a respective column of ''A'' that we started with, and together, they give us the matrix ''A'', so we have factorized ''A'' into an orthogonal matrix ''Q'' (the matrix of '''e'''''k''s), via Gram Schmidt, and the obvious upper triangular matrix as a remainder ''R''.
Alternatively, can be calculated as follows:
Recall that
Then, we have
:
Note that
and , so .
Consider the decomposition of
:
Recall the orthogonal matrix such that
:
Then, we can calculate by means of Gram-Schmidt as follows:
:
:
Thus, we have
:
:
Performing this operation using MATLAB, including numerical errors due to finite precision operation, leads to:
:
A Householder reflection (or ''Householder transformation'') is a transformation that takes a vector and reflects it about some plane. We can use this property to calculate the QR factorization of a matrix.
''Q'' can be used to reflect a vector in such a way that all coordinates but one disappear.
Let be an arbitrary real ''m''-dimensional column vector such that |||| = |α| for a scalar α. If the algorithm is implemented using floating-point arithmetic, then α should get the opposite sign as the first coordinate of to avoid loss of significance. If is a complex vector, then the definition
:
should be used .
Then, where is the vector (1,0,...,0)T, and ||·|| the Euclidean norm, set
:
:
:
is a Householder matrix and
:
This can be used to gradually transform an ''m''-by-''n'' matrix ''A'' to upper triangular form. First, we multiply ''A'' with the Householder matrix ''Q''1 we obtain when we choose the first matrix column for 'x'. This results in a matrix ''QA'' with zeros in the left column (except for the first row).
:
This can be repeated for ''A''′ (obtained from ''Q''1''A'' by deleting the first row and first column), resulting in a Householder matrix ''Q''′2. Note that ''Q''′2 is smaller than ''Q''1. Since we want it really to operate on ''Q''1''A'' instead of ''A''′ we need to expand it to the upper left, filling in a 1, or in general:
:
After iterations of this process, ,
:
is a upper triangular matrix. So, with
:
is a QR decomposition of .
This method has greater numerical stability than the Gram-Schmidt method above.
The following table gives the number of operations in the k-th step of the QR-Decomposition by the Householder transformation, assuming a square matrix with size ''n''.
Summing these numbers over the steps (for a square matrix of size ''n''), the complexity of the algorithm is given by
:
Let us calculate the decomposition of
:
First, we need to find a reflection that transforms the first column of matrix ''A'', vector , to
Now,
:
and
: .
Here,
: and
Therefore
: and , and then
:
:
:
Now observe:
:
so we already have almost a triangular matrix. We only need to zero the (3, 2) entry.
Take the (1, 1) minor, and then apply the process again to
:
By the same method as above, we obtain the matrix of the Householder transformation
:
after performing a direct sum with 1 to make sure the next step in the process works properly.
Now, we find
:
:
The matrix ''Q'' is orthogonal and ''R'' is upper triangular, so ''A'' = ''QR'' is the required QR-decomposition.
''QR'' decompositions can also be computed with a series of Givens rotations. Each rotation zeros an element in the subdiagonal of the matrix, forming the ''R'' matrix. The concatenation of all the Givens rotations forms the orthogonal ''Q'' matrix.
In practice, Givens rotations are not actually performed by building a whole matrix and doing a matrix multiplication. A Givens rotation procedure is used instead which does the equivalent of the sparse Givens matrix multiplication, without the extra work of handling the sparse elements. The Givens rotation procedure is useful in situations where only a relatively few off diagonal elements need to be zeroed, and is more easily parallelized than Householder transformations.
Let us calculate the decomposition of
:
First, we need to form a rotation matrix that will zero the lowermost left element, . We form this matrix using the Givens rotation method, and call the matrix . We will first rotate the vector , to point along the ''X'' axis. This vector has an angle . We create the orthogonal Givens rotation matrix, :
:
:
And the result of now has a zero in the element.
:
We can similarly form Givens matrices and , which will zero the sub-diagonal elements and , forming a triangular matrix . The orthogonal matrix is formed from the concatenation of all the Givens matrices . Thus, we have , and the ''QR'' decomposition is .
We can use QR decomposition to find the absolute value of the determinant of a square matrix. Suppose a matrix is decomposed as . Then we have
:
Since ''Q'' is unitary, . Thus,
:
where are the entries on the diagonal of ''R''.
Furthermore, because the determinant equals the product of the eigenvalues, we have
:
where are eigenvalues of .
We can extend the above properties to non-square complex matrix
by introducing the definition of QR-decomposition for non-square complex matrix
and replacing eigenvalues with singular values.
Suppose a QR decomposition for a non-square matrix ''A'':
:
where is a zero matrix and is an unitary matrix.
From the properties of SVD and determinant of matrix, we have
:
where are singular values of .
Note that the singular values of and are identical, although the complex eigenvalues of them may be different.
However, if ''A'' is square, it holds that
:
In conclusion, QR decomposition can be used efficiently to calculate a product of eigenvalues or singular values of matrix.
★ Polar decomposition
★ Eigenvalue decomposition
★ Spectral decomposition
★ . Section 2.8.
★ .
★ Online Matrix Calculator Performs QR decomposition of matrices.
★ LAPACK users manual gives details of subroutines to calculate the QR decomposition
★ Mathematica users manual gives details and examples of routines to calculate QR decomposition
★ Module for the QR Method
★ ALGLIB includes a partial port of the LAPACK to C++, C#, Delphi, etc.
Definition
A 'QR decomposition' of a real square matrix ''A'' is a decomposition of ''A'' as
:
where ''Q'' is an orthogonal matrix (meaning that ''Q''T''Q'' = ''I'' ) and ''R'' is an upper triangular matrix. Analogously, we can define the QL, RQ, and LQ decompositions of A.
More generally, we can factor a complex × matrix (with ''m'' ≥ ''n'') as the product of an × unitary matrix (in the sense that ''Q''∗''Q'' = ''I'' ) and an × upper triangular matrix.
If ''A'' is nonsingular, then this factorization is unique if we require that the diagonal elements of ''R'' are positive.
Computing the QR decomposition
There are several methods for actually computing the QR decomposition, such as by means of the Gram–Schmidt process, Householder transformations, or Givens rotations. Each has a number of advantages and disadvantages.
Computing QR by means of Gram-Schmidt
Consider the Gram–Schmidt process, with the vectors to be considered in the process as the columns of the matrix . We define
where .
Then
:
:
:
::
:
We then rearrange the equations above so that the s are on the left, producing
the following equations.
:
:
:
::
:
Note that since the are unit vectors, we have the following.
:
:
:
::
:
Now these equations can be written in matrix form as follows.
:
But the product of each row and column of the matrices above give us a respective column of ''A'' that we started with, and together, they give us the matrix ''A'', so we have factorized ''A'' into an orthogonal matrix ''Q'' (the matrix of '''e'''''k''s), via Gram Schmidt, and the obvious upper triangular matrix as a remainder ''R''.
Alternatively, can be calculated as follows:
Recall that
Then, we have
:
Note that
and , so .
Example
Consider the decomposition of
:
Recall the orthogonal matrix such that
:
Then, we can calculate by means of Gram-Schmidt as follows:
:
:
Thus, we have
:
:
Performing this operation using MATLAB, including numerical errors due to finite precision operation, leads to:
:
Computing QR by means of Householder reflections
A Householder reflection (or ''Householder transformation'') is a transformation that takes a vector and reflects it about some plane. We can use this property to calculate the QR factorization of a matrix.
''Q'' can be used to reflect a vector in such a way that all coordinates but one disappear.
Let be an arbitrary real ''m''-dimensional column vector such that |||| = |α| for a scalar α. If the algorithm is implemented using floating-point arithmetic, then α should get the opposite sign as the first coordinate of to avoid loss of significance. If is a complex vector, then the definition
:
should be used .
Then, where is the vector (1,0,...,0)T, and ||·|| the Euclidean norm, set
:
:
:
is a Householder matrix and
:
This can be used to gradually transform an ''m''-by-''n'' matrix ''A'' to upper triangular form. First, we multiply ''A'' with the Householder matrix ''Q''1 we obtain when we choose the first matrix column for 'x'. This results in a matrix ''QA'' with zeros in the left column (except for the first row).
:
This can be repeated for ''A''′ (obtained from ''Q''1''A'' by deleting the first row and first column), resulting in a Householder matrix ''Q''′2. Note that ''Q''′2 is smaller than ''Q''1. Since we want it really to operate on ''Q''1''A'' instead of ''A''′ we need to expand it to the upper left, filling in a 1, or in general:
:
After iterations of this process, ,
:
is a upper triangular matrix. So, with
:
is a QR decomposition of .
This method has greater numerical stability than the Gram-Schmidt method above.
The following table gives the number of operations in the k-th step of the QR-Decomposition by the Householder transformation, assuming a square matrix with size ''n''.
| Operation | Number of operations in the k-th step |
|---|---|
| multiplications | |
| additions | |
| division | |
| square root |
Summing these numbers over the steps (for a square matrix of size ''n''), the complexity of the algorithm is given by
:
Example
Let us calculate the decomposition of
:
First, we need to find a reflection that transforms the first column of matrix ''A'', vector , to
Now,
:
and
: .
Here,
: and
Therefore
: and , and then
:
:
:
Now observe:
:
so we already have almost a triangular matrix. We only need to zero the (3, 2) entry.
Take the (1, 1) minor, and then apply the process again to
:
By the same method as above, we obtain the matrix of the Householder transformation
:
after performing a direct sum with 1 to make sure the next step in the process works properly.
Now, we find
:
:
The matrix ''Q'' is orthogonal and ''R'' is upper triangular, so ''A'' = ''QR'' is the required QR-decomposition.
Computing QR by means of Givens rotations
''QR'' decompositions can also be computed with a series of Givens rotations. Each rotation zeros an element in the subdiagonal of the matrix, forming the ''R'' matrix. The concatenation of all the Givens rotations forms the orthogonal ''Q'' matrix.
In practice, Givens rotations are not actually performed by building a whole matrix and doing a matrix multiplication. A Givens rotation procedure is used instead which does the equivalent of the sparse Givens matrix multiplication, without the extra work of handling the sparse elements. The Givens rotation procedure is useful in situations where only a relatively few off diagonal elements need to be zeroed, and is more easily parallelized than Householder transformations.
Example
Let us calculate the decomposition of
:
First, we need to form a rotation matrix that will zero the lowermost left element, . We form this matrix using the Givens rotation method, and call the matrix . We will first rotate the vector , to point along the ''X'' axis. This vector has an angle . We create the orthogonal Givens rotation matrix, :
:
:
And the result of now has a zero in the element.
:
We can similarly form Givens matrices and , which will zero the sub-diagonal elements and , forming a triangular matrix . The orthogonal matrix is formed from the concatenation of all the Givens matrices . Thus, we have , and the ''QR'' decomposition is .
Connection to a determinant or a product of eigenvalues
We can use QR decomposition to find the absolute value of the determinant of a square matrix. Suppose a matrix is decomposed as . Then we have
:
Since ''Q'' is unitary, . Thus,
:
where are the entries on the diagonal of ''R''.
Furthermore, because the determinant equals the product of the eigenvalues, we have
:
where are eigenvalues of .
We can extend the above properties to non-square complex matrix
by introducing the definition of QR-decomposition for non-square complex matrix
and replacing eigenvalues with singular values.
Suppose a QR decomposition for a non-square matrix ''A'':
:
where is a zero matrix and is an unitary matrix.
From the properties of SVD and determinant of matrix, we have
:
where are singular values of .
Note that the singular values of and are identical, although the complex eigenvalues of them may be different.
However, if ''A'' is square, it holds that
:
In conclusion, QR decomposition can be used efficiently to calculate a product of eigenvalues or singular values of matrix.
See also
★ Polar decomposition
★ Eigenvalue decomposition
★ Spectral decomposition
References
★ . Section 2.8.
★ .
External links
★ Online Matrix Calculator Performs QR decomposition of matrices.
★ LAPACK users manual gives details of subroutines to calculate the QR decomposition
★ Mathematica users manual gives details and examples of routines to calculate QR decomposition
★ Module for the QR Method
★ ALGLIB includes a partial port of the LAPACK to C++, C#, Delphi, etc.
This article provided by Wikipedia. To edit the contents of this article, click here for original source.
psst.. try this: add to faves

العربية
ä¸å›½
Français
Deutsch
Ελληνική
हिनà¥à¤¦à¥€
Italiano
日本語
Português
РуÑÑкий
Español