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.

Contents
Definition
Computing the QR decomposition
Computing QR by means of Gram-Schmidt
Example
Computing QR by means of Householder reflections
Example
Computing QR by means of Givens rotations
Example
Connection to a determinant or a product of eigenvalues
See also
References
External links

Definition


A 'QR decomposition' of a real square matrix ''A'' is a decomposition of ''A'' as
: A = QR, ,
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 m×n matrix (with ''m'' ≥ ''n'') as the product of an m×n unitary matrix (in the sense that ''Q''''Q'' = ''I'' ) and an n× n 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 A=(mathbf{a}_1| cdots|mathbf{a}_n). We define
mathrm{proj}_{mathbf{e}}mathbf{a}
= rac{leftlanglemathbf{e},mathbf{a}
ight
angle}{leftlanglemathbf{e},mathbf{e}
ight
angle}mathbf{e}
where leftlanglemathbf{v},mathbf{w}
ight
angle
=mathbf{v}^Tmathbf{w}.
Then
:
mathbf{u}_1 = mathbf{a}_1, qquadmathbf{e}_1 = {mathbf{u}_1 over |mathbf{u}_1|}
:
mathbf{u}_2 = mathbf{a}_2-mathrm{proj}_{mathbf{e}_1},mathbf{a}_2, qquadmathbf{e}_2 = {mathbf{u}_2 over |mathbf{u}_2|}
:
mathbf{u}_3 = mathbf{a}_3-mathrm{proj}_{mathbf{e}_1},mathbf{a}_3-mathrm{proj}_{mathbf{e}_2},mathbf{a}_3, qquadmathbf{e}_3 = {mathbf{u}_3 over |mathbf{u}_3|}
:: dots
:
mathbf{u}_k = mathbf{a}_k-sum_{j=1}^{k-1}mathrm{proj}_{mathbf{e}_j},mathbf{a}_k,qquadmathbf{e}_k = {mathbf{u}_kover|mathbf{u}_k|}

We then rearrange the equations above so that the mathbf{a}_is are on the left, producing
the following equations.
:mathbf{a}_1 = mathbf{e}_1|mathbf{u}_1|
:mathbf{a}_2 = mathrm{proj}_{mathbf{e}_1},mathbf{a}_2+mathbf{e}_2|mathbf{u}_2|
:mathbf{a}_3 = mathrm{proj}_{mathbf{e}_1},mathbf{a}_3+mathrm{proj}_{mathbf{e}_2},mathbf{a}_3+mathbf{e}_3|mathbf{u}_3|
:: dots
:mathbf{a}_k = sum_{j=1}^{k-1}mathrm{proj}_{mathbf{e}_j},mathbf{a}_k+mathbf{e}_k|mathbf{u}_k|
Note that since the mathbf{e}_i are unit vectors, we have the following.
:mathbf{a}_1 = mathbf{e}_1|mathbf{u}_1|
:mathbf{a}_2 = leftlanglemathbf{e}_1,mathbf{a}_2
ight
anglemathbf{e}_1
+mathbf{e}_2|mathbf{u}_2|
:mathbf{a}_3 = leftlanglemathbf{e}_1,mathbf{a}_3
ight
anglemathbf{e}_1
+leftlanglemathbf{e_2},mathbf{a}_3
ight
anglemathbf{e}_2
+mathbf{e}_3|mathbf{u}_3|
:: dots
:mathbf{a}_k = sum_{j=1}^{k-1}leftlanglemathbf{e}_j,mathbf{a}_k
ight
anglemathbf{e}_j
+mathbf{e}_k|mathbf{u}_k|
Now these equations can be written in matrix form as follows.
:left(mathbf{e}_1left|ldots
ight|mathbf{e}_n
ight)
egin{pmatrix}
|mathbf{u}_1| & langlemathbf{e}_1,mathbf{a}_2
angle & langlemathbf{e}_1,mathbf{a}_3
angle & ldots \
0 & |mathbf{u}_2| & langlemathbf{e}_2,mathbf{a}_3
angle & ldots \
0 & 0 & |mathbf{u}_3| & ldots \
dots & dots & dots & ddots end{pmatrix}
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, egin{matrix} R end{matrix} can be calculated as follows:
Recall that

egin{matrix}Qend{matrix} = left(mathbf{e}_1left|ldots
ight|mathbf{e}_n
ight).

Then, we have
:
egin{matrix} R = Q^{T}A = end{matrix}
egin{pmatrix}
langlemathbf{e}_1,mathbf{a}_1
angle & langlemathbf{e}_1,mathbf{a}_2
angle & langlemathbf{e}_1,mathbf{a}_3
angle & ldots
\
0 & langlemathbf{e}_2,mathbf{a}_2
angle & langlemathbf{e}_2,mathbf{a}_3
angle & ldots
\
0 & 0 & langlemathbf{e}_3,mathbf{a}_3
angle & ldots
\
dots & dots & dots & ddots end{pmatrix}.

Note that
langlemathbf{e}_j,mathbf{a}_j
angle = |mathbf{u}_j|,
langlemathbf{e}_j,mathbf{a}_k
angle = 0 mathrm{~~for~~} j > k,
and QQ^{T} = I , so Q^{T} = Q^{-1} .
Example

Consider the decomposition of
: A =
egin{pmatrix}
12 & -51 & 4 \
6 & 167 & -68 \
-4 & 24 & -41
end{pmatrix}
.
Recall the orthogonal matrix Q such that
:
egin{matrix}
Q,Q^{T} = I.
end{matrix}

Then, we can calculate Q by means of Gram-Schmidt as follows:
:
U =
egin{pmatrix}
mathbf u_1 & mathbf u_2 & mathbf u_3
end{pmatrix}
=
egin{pmatrix}
12 & -69 & -58/5 \
6 & 158 & 6/5 \
-4 & 30 & -33
end{pmatrix};

:
Q =
egin{pmatrix}
rac{mathbf u_1}{|mathbf u_1|} &
rac{mathbf u_2}{|mathbf u_2|} &
rac{mathbf u_3}{|mathbf u_3|}
end{pmatrix}
=
egin{pmatrix}
6/7 & -69/175 & -58/175 \
3/7 & 158/175 & 6/175 \
-2/7 & 6/35 & -33/35
end{pmatrix};

Thus, we have
:
egin{matrix}
A = Q,Q^{T}A = Q R;
end{matrix}

:
egin{matrix}
R = Q^{T}A =
end{matrix}
egin{pmatrix}
14 & 21 & -14 \
0 & 175 & -70 \
0 & 0 & 35
end{pmatrix}.

Performing this operation using MATLAB, including numerical errors due to finite precision operation, leads to:
egin{matrix}
Q =
end{matrix}
egin{pmatrix}
0.857142857142857 & -0.394285714285714 & -0.331428571428571 \
0.428571428571429 & 0.902857142857143 & 0.034285714285714 \
-0.285714285714286 & 0.171428571428571 & -0.942857142857143
end{pmatrix};

:
egin{matrix}
R =
end{matrix}
egin{pmatrix}
14 & 21 & -14 \
1.11022302462516 imes 10^{-16} & 175 & -70 \
-1.77635683940025 imes 10^{-15} & -5.32907051820075 imes 10^{-14} & 35
end{pmatrix}.

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 mathbf{x} be an arbitrary real ''m''-dimensional column vector such that ||mathbf{x}|| = |α| for a scalar α. If the algorithm is implemented using floating-point arithmetic, then α should get the opposite sign as the first coordinate of mathbf{x} to avoid loss of significance. If mathbf{x} is a complex vector, then the definition
: lpha = - mathrm{e}^{mathrm{i} rg x_1} |mathbf{x}|
should be used .
Then, where mathbf{e}_1 is the vector (1,0,...,0)T, and ||·|| the Euclidean norm, set
: mathbf{u} = mathbf{x} - lphamathbf{e}_1,
: mathbf{v} = {mathbf{u}over|mathbf{u}|},
: Q = I - 2 mathbf{v}mathbf{v}^T.
Q is a Householder matrix and
: Qx = (lpha, 0, cdots, 0)^T.,
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).
:Q_1A = egin{bmatrix}
lpha_1&star&dots&star\
0 & & & \
dots & & A' & \
0 & & & end{bmatrix}
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:
:Q_k = egin{pmatrix}
I_{k-1} & 0\
0 & Q_k'end{pmatrix}.
After t iterations of this process, t = min(m-1, n),
: R = Q_t cdots Q_2Q_1A
is a upper triangular matrix. So, with
: Q = Q_1Q_2 cdots Q_t
A = QR is a QR decomposition of A.
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 2(n-k+1)^2
additions (n-k+1)^2+(n-k+1)(n-k)+2
division 1
square root 1

Summing these numbers over the (n-1) steps (for a square matrix of size ''n''), the complexity of the algorithm is given by
: rac{4}{3}n^3+ rac{3}{2}n^2+ rac{19}{6}n-6=O(n^3)
Example

Let us calculate the decomposition of
: A = egin{pmatrix}
12 & -51 & 4 \
6 & 167 & -68 \
-4 & 24 & -41 end{pmatrix}.
First, we need to find a reflection that transforms the first column of matrix ''A'', vector mathbf{a}_1 = (12, 6, -4)^T, to |mathbf{a}_1| ;mathrm{e}_1 = (14, 0, 0)^T.
Now,
: mathbf{u} = mathbf{x} - lphamathbf{e}_1,
and
: mathbf{v} = {mathbf{u}over|mathbf{u}|},.
Here,
: lpha = 14 and mathbf{x} = mathbf{a}_1 = (12, 6, -4)^T
Therefore
: mathbf{u} = (-2, 6, -4)^T and mathbf{v} = {1 over sqrt{14}}(-1, 3, -2)^T, and then
:Q_1 = I - {2 over sqrt{14} sqrt{14}} egin{pmatrix} -1 \ 3 \ -2 end{pmatrix}egin{pmatrix} -1 & 3 & -2 end{pmatrix}
: = I - {1 over 7}egin{pmatrix}
1 & -3 & 2 \
-3 & 9 & -6 \
2 & -6 & 4
end{pmatrix}
: = egin{pmatrix}
6/7 & 3/7 & -2/7 \
3/7 &-2/7 & 6/7 \
-2/7 & 6/7 & 3/7 \
end{pmatrix}.
Now observe:
:Q_1A = egin{pmatrix}
14 & 21 & -14 \
0 & -49 & -14 \
0 & 168 & -77 end{pmatrix},
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
:A' = M_{11} = egin{pmatrix}
-49 & -14 \
168 & -77 end{pmatrix}.
By the same method as above, we obtain the matrix of the Householder transformation
:Q_2 = egin{pmatrix}
1 & 0 & 0 \
0 & -7/25 & 24/25 \
0 & 24/25 & 7/25 end{pmatrix}
after performing a direct sum with 1 to make sure the next step in the process works properly.
Now, we find
:Q=Q_1Q_2=egin{pmatrix}
6/7 & -69/175 & 58/175\
3/7 & 158/175 & -6/175 \
-2/7 & 6/35 & 33/35
end{pmatrix}
:R=Q_2Q_1A=Q^ op A=egin{pmatrix}
14 & 21 & -14 \
0 & 175 & -70 \
0 & 0 & -35
end{pmatrix}.
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
: A = egin{pmatrix}
12 & -51 & 4 \
6 & 167 & -68 \
-4 & 24 & -41 end{pmatrix}.
First, we need to form a rotation matrix that will zero the lowermost left element, mathbf{a}_{31} = -4. We form this matrix using the Givens rotation method, and call the matrix G_1. We will first rotate the vector (6,-4), to point along the ''X'' axis. This vector has an angle heta = rctan({-4 over 6}). We create the orthogonal Givens rotation matrix, G_1:
:G_1 = egin{pmatrix}
1 & 0 & 0 \
0 & cos( heta) & sin( heta) \
0 & -sin( heta) & cos( heta)
end{pmatrix}
:pprox egin{pmatrix}
1 & 0 & 0 \
0 & 0.83205 & -0.55470 \
0 & 0.55470 & 0.83205
end{pmatrix}
And the result of G_1A now has a zero in the mathbf{a}_{31} element.
:G_1A pprox egin{pmatrix}
12 & -51 & 4 \
7.21110 & 125.6396 & -33.83671 \
0 & 112.6041 & -71.83368
end{pmatrix}
We can similarly form Givens matrices G_2 and G_3, which will zero the sub-diagonal elements a_{21} and a_{32}, forming a triangular matrix R. The orthogonal matrix Q^T is formed from the concatenation of all the Givens matrices Q^T = G_3G_2G_1. Thus, we have
G_3G_2G_1A= Q^TA = R, and the ''QR'' decomposition is A = QR.

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 A=QR. Then we have
:det(A)=det(Q)cdotdet(R).
Since ''Q'' is unitary, |det(Q)|=1. Thus,
:|det(A)|=|det(R)|=Big|prod_{i} r_{ii}Big|,
where r_{ii} are the entries on the diagonal of ''R''.
Furthermore, because the determinant equals the product of the eigenvalues, we have
:Big|prod_{i} r_{ii}Big|=Big|prod_{i} lambda_{i}Big|,
where lambda_{i} are eigenvalues of A.
We can extend the above properties to non-square complex matrix A
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'':
:A = Q egin{pmatrix}R\Oend{pmatrix}, qquad Q^
★ Q = I,
where O is a zero matrix and Q is an unitary matrix.
From the properties of SVD and determinant of matrix, we have
:Big|prod_{i} r_{ii}Big| = prod_{i} sigma_{i},
where sigma_{i} are singular values of A.
Note that the singular values of A and R are identical, although the complex eigenvalues of them may be different.
However, if ''A'' is square, it holds that
:
{prod_{i} sigma_{i}} = Big|{prod_{i} lambda_{i}}Big|.

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