QR Factorization
   HOME

TheInfoList



OR:

In
linear algebra Linear algebra is the branch of mathematics concerning linear equations such as: :a_1x_1+\cdots +a_nx_n=b, linear maps such as: :(x_1, \ldots, x_n) \mapsto a_1x_1+\cdots +a_nx_n, and their representations in vector spaces and through matrices ...
, a QR decomposition, also known as a QR factorization or QU factorization, is a
decomposition Decomposition or rot is the process by which dead organic substances are broken down into simpler organic or inorganic matter such as carbon dioxide, water, simple sugars and mineral salts. The process is a part of the nutrient cycle and is e ...
of a matrix ''A'' into a product ''A'' = ''QR'' of an
orthogonal matrix In linear algebra, an orthogonal matrix, or orthonormal matrix, is a real square matrix whose columns and rows are orthonormal vectors. One way to express this is Q^\mathrm Q = Q Q^\mathrm = I, where is the transpose of and is the identity m ...
''Q'' and an
upper triangular matrix In mathematics, a triangular matrix is a special kind of square matrix. A square matrix is called if all the entries ''above'' the main diagonal are zero. Similarly, a square matrix is called if all the entries ''below'' the main diagonal are ...
''R''. QR decomposition is often used to solve the linear least squares problem and is the basis for a particular
eigenvalue algorithm In numerical analysis, one of the most important problems is designing efficient and stable algorithms for finding the eigenvalues of a matrix. These eigenvalue algorithms may also find eigenvectors. Eigenvalues and eigenvectors Given an square ...
, the
QR algorithm In numerical linear algebra, the QR algorithm or QR iteration is an eigenvalue algorithm: that is, a procedure to calculate the eigenvalues and eigenvectors of a matrix. The QR algorithm was developed in the late 1950s by John G. F. Francis and by ...
.


Cases and definitions


Square matrix

Any real square matrix ''A'' may be decomposed as : A = QR, where ''Q'' is an
orthogonal matrix In linear algebra, an orthogonal matrix, or orthonormal matrix, is a real square matrix whose columns and rows are orthonormal vectors. One way to express this is Q^\mathrm Q = Q Q^\mathrm = I, where is the transpose of and is the identity m ...
(its columns are orthogonal
unit vector In mathematics, a unit vector in a normed vector space is a vector (often a spatial vector) of length 1. A unit vector is often denoted by a lowercase letter with a circumflex, or "hat", as in \hat (pronounced "v-hat"). The term ''direction v ...
s meaning and ''R'' is an upper
triangular matrix In mathematics, a triangular matrix is a special kind of square matrix. A square matrix is called if all the entries ''above'' the main diagonal are zero. Similarly, a square matrix is called if all the entries ''below'' the main diagonal are ...
(also called right triangular matrix). If ''A'' is
invertible In mathematics, the concept of an inverse element generalises the concepts of opposite () and reciprocal () of numbers. Given an operation denoted here , and an identity element denoted , if , one says that is a left inverse of , and that is ...
, then the factorization is unique if we require the diagonal elements of ''R'' to be positive. If instead ''A'' is a complex square matrix, then there is a decomposition ''A'' = ''QR'' where ''Q'' is a
unitary matrix In linear algebra, a complex square matrix is unitary if its conjugate transpose is also its inverse, that is, if U^* U = UU^* = UU^ = I, where is the identity matrix. In physics, especially in quantum mechanics, the conjugate transpose is ...
(so If ''A'' has ''n''
linearly independent In the theory of vector spaces, a set of vectors is said to be if there is a nontrivial linear combination of the vectors that equals the zero vector. If no such linear combination exists, then the vectors are said to be . These concepts are ...
columns, then the first ''n'' columns of ''Q'' form an
orthonormal basis In mathematics, particularly linear algebra, an orthonormal basis for an inner product space ''V'' with finite dimension is a basis for V whose vectors are orthonormal, that is, they are all unit vectors and orthogonal to each other. For examp ...
for the
column space In linear algebra, the column space (also called the range or image) of a matrix ''A'' is the span (set of all possible linear combinations) of its column vectors. The column space of a matrix is the image or range of the corresponding mat ...
of ''A''. More generally, the first ''k'' columns of ''Q'' form an orthonormal basis for the
span Span may refer to: Science, technology and engineering * Span (unit), the width of a human hand * Span (engineering), a section between two intermediate supports * Wingspan, the distance between the wingtips of a bird or aircraft * Sorbitan ester ...
of the first ''k'' columns of ''A'' for any . The fact that any column ''k'' of ''A'' only depends on the first ''k'' columns of ''Q'' corresponds to the triangular form of ''R''.


Rectangular matrix

More generally, we can factor a complex ''m''×''n'' matrix ''A'', with , as the product of an ''m''×''m''
unitary matrix In linear algebra, a complex square matrix is unitary if its conjugate transpose is also its inverse, that is, if U^* U = UU^* = UU^ = I, where is the identity matrix. In physics, especially in quantum mechanics, the conjugate transpose is ...
''Q'' and an ''m''×''n'' upper triangular matrix ''R''. As the bottom (''m''−''n'') rows of an ''m''×''n'' upper triangular matrix consist entirely of zeroes, it is often useful to partition ''R'', or both ''R'' and ''Q'': : A = QR = Q \begin R_1 \\ 0 \end = \begin Q_1 & Q_2 \end \begin R_1 \\ 0 \end = Q_1 R_1, where ''R''1 is an ''n''×''n'' upper triangular matrix, 0 is an zero matrix, ''Q''1 is ''m''×''n'', ''Q''2 is , and ''Q''1 and ''Q''2 both have orthogonal columns. call ''Q''1''R''1 the ''thin QR factorization'' of ''A''; Trefethen and Bau call this the ''reduced QR factorization''. If ''A'' is of full
rank Rank is the relative position, value, worth, complexity, power, importance, authority, level, etc. of a person or object within a ranking, such as: Level or position in a hierarchical organization * Academic rank * Diplomatic rank * Hierarchy * ...
''n'' and we require that the diagonal elements of ''R''1 are positive then ''R''1 and ''Q''1 are unique, but in general ''Q''2 is not. ''R''1 is then equal to the upper triangular factor of the
Cholesky decomposition In linear algebra, the Cholesky decomposition or Cholesky factorization (pronounced ) is a decomposition of a Hermitian, positive-definite matrix into the product of a lower triangular matrix and its conjugate transpose, which is useful for effici ...
of ''A'' ''A'' (= ''A''T''A'' if ''A'' is real).


QL, RQ and LQ decompositions

Analogously, we can define QL, RQ, and LQ decompositions, with ''L'' being a ''lower'' triangular matrix.


Computing the QR decomposition

There are several methods for actually computing the QR decomposition, such as by means of the
Gram–Schmidt process In mathematics, particularly linear algebra and numerical analysis, the Gram–Schmidt process is a method for orthonormalizing a set of vectors in an inner product space, most commonly the Euclidean space equipped with the standard inner produ ...
,
Householder transformation In linear algebra, a Householder transformation (also known as a Householder reflection or elementary reflector) is a linear transformation that describes a reflection about a plane or hyperplane containing the origin. The Householder transformati ...
s, or
Givens rotation In numerical linear algebra, a Givens rotation is a rotation in the plane spanned by two coordinates axes. Givens rotations are named after Wallace Givens, who introduced them to numerical analysts in the 1950s while he was working at Argonne Nation ...
s. Each has a number of advantages and disadvantages.


Using the Gram–Schmidt process

Consider the
Gram–Schmidt process In mathematics, particularly linear algebra and numerical analysis, the Gram–Schmidt process is a method for orthonormalizing a set of vectors in an inner product space, most commonly the Euclidean space equipped with the standard inner produ ...
applied to the columns of the full column rank matrix with
inner product In mathematics, an inner product space (or, rarely, a Hausdorff space, Hausdorff pre-Hilbert space) is a real vector space or a complex vector space with an operation (mathematics), operation called an inner product. The inner product of two ve ...
\langle\mathbf, \mathbf\rangle = \mathbf^\textsf \mathbf (or \langle\mathbf, \mathbf\rangle = \mathbf^* \mathbf for the complex case). Define the
projection Projection, projections or projective may refer to: Physics * Projection (physics), the action/process of light, heat, or sound reflecting from a surface to another in a different direction * The display of images by a projector Optics, graphic ...
: :\operatorname_\mathbf = \frac then: :\begin \mathbf_1 &= \mathbf_1, & \mathbf_1 &= \frac \\ \mathbf_2 &= \mathbf_2 - \operatorname_ \mathbf_2, & \mathbf_2 &= \frac \\ \mathbf_3 &= \mathbf_3 - \operatorname_ \mathbf_3 - \operatorname_ \mathbf_3, & \mathbf_3 &= \frac \\ & \;\; \vdots & & \;\; \vdots \\ \mathbf_k &= \mathbf_k - \sum_^\operatorname_ \mathbf_k,& \mathbf_k &= \frac \end We can now express the \mathbf_is over our newly computed orthonormal basis: :\begin \mathbf_1 &= \left\langle\mathbf_1, \mathbf_1\right\rangle \mathbf_1 \\ \mathbf_2 &= \left\langle\mathbf_1, \mathbf_2\right\rangle \mathbf_1 + \left\langle\mathbf_2, \mathbf_2\right\rangle \mathbf_2 \\ \mathbf_3 &= \left\langle\mathbf_1, \mathbf_3\right\rangle \mathbf_1 + \left\langle\mathbf_2, \mathbf_3\right\rangle \mathbf_2 + \left\langle\mathbf_3, \mathbf_3\right\rangle \mathbf_3 \\ &\;\;\vdots \\ \mathbf_k &= \sum_^k \left\langle \mathbf_j, \mathbf_k \right\rangle \mathbf_j \end where This can be written in matrix form: :A = QR where: :Q = \begin\mathbf_1 & \cdots & \mathbf_n\end and :R = \begin \langle\mathbf_1, \mathbf_1\rangle & \langle\mathbf_1, \mathbf_2\rangle & \langle\mathbf_1, \mathbf_3\rangle & \cdots & \langle\mathbf_1, \mathbf_n\rangle \\ 0 & \langle\mathbf_2, \mathbf_2\rangle & \langle\mathbf_2, \mathbf_3\rangle & \cdots & \langle\mathbf_2, \mathbf_n\rangle \\ 0 & 0 & \langle\mathbf_3, \mathbf_3\rangle & \cdots & \langle\mathbf_3, \mathbf_n\rangle \\ \vdots & \vdots & \vdots & \ddots & \vdots \\ 0 & 0 & 0 & \cdots & \langle\mathbf_n, \mathbf_n\rangle \\ \end.


Example

Consider the decomposition of : A = \begin 12 & -51 & 4 \\ 6 & 167 & -68 \\ -4 & 24 & -41 \end. Recall that an orthonormal matrix Q has the property Then, we can calculate Q by means of Gram–Schmidt as follows: : \begin U = \begin \mathbf u_1 & \mathbf u_2 & \mathbf u_3 \end &= \begin 12 & -69 & -58/5 \\ 6 & 158 & 6/5 \\ -4 & 30 & -33 \end; \\ Q = \begin \frac & \frac & \frac \end &= \begin 6/7 & -69/175 & -58/175 \\ 3/7 & 158/175 & 6/175 \\ -2/7 & 6/35 & -33/35 \end. \end Thus, we have : \begin Q^\textsf A &= Q^\textsfQ\,R = R; \\ R &= Q^\textsfA = \begin 14 & 21 & -14 \\ 0 & 175 & -70 \\ 0 & 0 & 35 \end. \end


Relation to RQ decomposition

The RQ decomposition transforms a matrix ''A'' into the product of an upper triangular matrix ''R'' (also known as right-triangular) and an orthogonal matrix ''Q''. The only difference from QR decomposition is the order of these matrices. QR decomposition is Gram–Schmidt orthogonalization of columns of ''A'', started from the first column. RQ decomposition is Gram–Schmidt orthogonalization of rows of ''A'', started from the last row.


Advantages and disadvantages

The Gram-Schmidt process is inherently numerically unstable. While the application of the projections has an appealing geometric analogy to orthogonalization, the orthogonalization itself is prone to numerical error. A significant advantage however is the ease of implementation, which makes this a useful algorithm to use for prototyping if a pre-built linear algebra library is unavailable, which is almost never the case.


Using Householder reflections

A
Householder reflection In linear algebra, a Householder transformation (also known as a Householder reflection or elementary reflector) is a linear transformation that describes a reflection about a plane or hyperplane containing the origin. The Householder transformati ...
(or ''Householder transformation'') is a transformation that takes a vector and reflects it about some
plane Plane(s) most often refers to: * Aero- or airplane, a powered, fixed-wing aircraft * Plane (geometry), a flat, 2-dimensional surface Plane or planes may also refer to: Biology * Plane (tree) or ''Platanus'', wetland native plant * ''Planes' ...
or
hyperplane In geometry, a hyperplane is a subspace whose dimension is one less than that of its ''ambient space''. For example, if a space is 3-dimensional then its hyperplanes are the 2-dimensional planes, while if the space is 2-dimensional, its hyper ...
. We can use this operation to calculate the ''QR'' factorization of an ''m''-by-''n'' matrix A with . ''Q'' can be used to reflect a vector in such a way that all coordinates but one disappear. Let \mathbf be an arbitrary real ''m''-dimensional column vector of A such that \, \mathbf\, = , \alpha, for a scalar ''α''. If the algorithm is implemented using
floating-point arithmetic In computing, floating-point arithmetic (FP) is arithmetic that represents real numbers approximately, using an integer with a fixed precision, called the significand, scaled by an integer exponent of a fixed base. For example, 12.345 can be ...
, then ''α'' should get the opposite sign as the ''k''-th coordinate of where x_k is to be the pivot coordinate after which all entries are 0 in matrix ''A''s final upper triangular form, to avoid
loss of significance In numerical analysis, catastrophic cancellation is the phenomenon that subtracting good approximations to two nearby numbers may yield a very bad approximation to the difference of the original numbers. For example, if there are two studs, one L_ ...
. In the complex case, set :\alpha = -e^ \, \mathbf\, and substitute transposition by conjugate transposition in the construction of ''Q'' below. Then, where \mathbf_1 is the vector 0 ⋯ 0sup>T, , , ·, , is the
Euclidean norm Euclidean space is the fundamental space of geometry, intended to represent physical space. Originally, that is, in Euclid's ''Elements'', it was the three-dimensional space of Euclidean geometry, but in modern mathematics there are Euclidean s ...
and I is an ''m''×''m'' identity matrix, set : \begin \mathbf &= \mathbf - \alpha\mathbf_1, \\ \mathbf &= \frac, \\ Q &= I - 2 \mathbf\mathbf^\textsf. \end Or, if A is complex : Q = I - 2\mathbf\mathbf^*. Q is an ''m''-by-''m'' Householder matrix, which is both symmetric and orthogonal (Hermitian and unitary in the complex case), and : Q\mathbf = \begin \alpha \\ 0 \\ \vdots \\ 0 \end. This can be used to gradually transform an ''m''-by-''n'' matrix ''A'' to upper
triangular A triangle is a polygon with three edges and three vertices. It is one of the basic shapes in geometry. A triangle with vertices ''A'', ''B'', and ''C'' is denoted \triangle ABC. In Euclidean geometry, any three points, when non- collinea ...
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 ''Q''1''A'' with zeros in the left column (except for the first row). : Q_1A = \begin \alpha_1 & \star & \cdots & \star \\ 0 & & & \\ \vdots & & A' & \\ 0 & & & \end 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 = \begin I_ & 0 \\ 0 & Q_k' \end. After t iterations of this process, :R = Q_t \cdots Q_2 Q_1 A is an upper triangular matrix. So, with :\begin Q^\textsf &= Q_t \cdots Q_2 Q_1, \\ Q &= Q_1^\textsf Q_2^\textsf \cdots Q_t^\textsf, \\ &= Q_1 Q_2 \cdots Q_t, \end A = QR is a QR decomposition of A. This method has greater
numerical stability In the mathematical subfield of numerical analysis, numerical stability is a generally desirable property of numerical algorithms. The precise definition of stability depends on the context. One is numerical linear algebra and the other is algorit ...
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 (in terms of floating point multiplications) is given by :\fracn^3 + n^2 + \fracn - 2 = O\left(n^3\right).


Example

Let us calculate the decomposition of : A = \begin 12 & -51 & 4 \\ 6 & 167 & -68 \\ -4 & 24 & -41 \end. First, we need to find a reflection that transforms the first column of matrix ''A'', vector into Now, : \mathbf = \mathbf - \alpha\mathbf_1, and : \mathbf = \frac. Here, : \alpha = 14 and \mathbf = \mathbf_1 = \begin 12 & 6 & -4 \end^\textsf Therefore : \mathbf = \begin -2 & 6 & -4 \end^\textsf = 2 \begin -1 & 3 & -2 \end^\textsf and and then : \begin Q_1 = &I - \frac \begin -1 \\ 3 \\ -2 \end \begin -1 & 3 & -2 \end \\ = &I - \frac\begin 1 & -3 & 2 \\ -3 & 9 & -6 \\ 2 & -6 & 4 \end \\ = &\begin 6/7 & 3/7 & -2/7 \\ 3/7 & -2/7 & 6/7 \\ -2/7 & 6/7 & 3/7 \\ \end. \end Now observe: :Q_1A = \begin 14 & 21 & -14 \\ 0 & -49 & -14 \\ 0 & 168 & -77 \end, so we already have almost a triangular matrix. We only need to zero the (3, 2) entry. Take the (1, 1)
minor Minor may refer to: * Minor (law), a person under the age of certain legal activities. ** A person who has not reached the age of majority * Academic minor, a secondary field of study in undergraduate education Music theory *Minor chord ** Barb ...
, and then apply the process again to :A' = M_ = \begin -49 & -14 \\ 168 & -77 \end. By the same method as above, we obtain the matrix of the Householder transformation :Q_2 = \begin 1 & 0 & 0 \\ 0 & -7/25 & 24/25 \\ 0 & 24/25 & 7/25 \end after performing a direct sum with 1 to make sure the next step in the process works properly. Now, we find :Q = Q_1^\textsf Q_2^\textsf = \begin 6/7 & -69/175 & -58/175 \\ 3/7 & 158/175 & 6/175 \\ -2/7 & 6/35 & -33/35 \end. Or, to four decimal digits, :\begin Q &= Q_1^\textsf Q_2^\textsf = \begin 0.8571 & -0.3943 & -0.3314 \\ 0.4286 & 0.9029 & 0.0343 \\ -0.2857 & 0.1714 & -0.9429 \end \\ R &= Q_2 Q_1 A = Q^\textsf A = \begin 14 & 21 & -14 \\ 0 & 175 & -70 \\ 0 & 0 & -35 \end. \end The matrix ''Q'' is orthogonal and ''R'' is upper triangular, so is the required QR decomposition.


Advantages and disadvantages

The use of Householder transformations is inherently the most simple of the numerically stable QR decomposition algorithms due to the use of reflections as the mechanism for producing zeroes in the ''R'' matrix. However, the Householder reflection algorithm is bandwidth heavy and not parallelizable, as every reflection that produces a new zero element changes the entirety of both ''Q'' and ''R'' matrices.


Using Givens rotations

QR decompositions can also be computed with a series of
Givens rotation In numerical linear algebra, a Givens rotation is a rotation in the plane spanned by two coordinates axes. Givens rotations are named after Wallace Givens, who introduced them to numerical analysts in the 1950s while he was working at Argonne Nation ...
s. Each rotation zeroes 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 relatively few off-diagonal elements need to be zeroed, and is more easily parallelized than
Householder transformation In linear algebra, a Householder transformation (also known as a Householder reflection or elementary reflector) is a linear transformation that describes a reflection about a plane or hyperplane containing the origin. The Householder transformati ...
s.


Example

Let us calculate the decomposition of : A = \begin 12 & -51 & 4 \\ 6 & 167 & -68 \\ -4 & 24 & -41 \end. 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 G_1. We will first rotate the vector to point along the ''X'' axis. This vector has an angle We create the orthogonal Givens rotation matrix, G_1: :\begin G_1 &= \begin \cos(\theta) & 0 & -\sin(\theta) \\ 0 & 1 & 0 \\ \sin(\theta) & 0 & \cos(\theta) \end \\ &\approx \begin 0.94868 & 0 & -0.31622 \\ 0 & 1 & 0 \\ 0.31622 & 0 & 0.94868 \end \end And the result of G_1A now has a zero in the a_ element. :G_1A \approx \begin 12.64911 & -55.97231 & 16.76007 \\ 6 & 167 & -68 \\ 0 & 6.64078 & -37.6311 \end We can similarly form Givens matrices G_2 and which will zero the sub-diagonal elements a_ and forming a triangular matrix The orthogonal matrix Q^\textsf is formed from the product of all the Givens matrices Thus, we have and the ''QR'' decomposition is


Advantages and disadvantages

The QR decomposition via Givens rotations is the most involved to implement, as the ordering of the rows required to fully exploit the algorithm is not trivial to determine. However, it has a significant advantage in that each new zero element a_ affects only the row with the element to be zeroed (''i'') and a row above (''j''). This makes the Givens rotation algorithm more bandwidth efficient and parallelizable than the Householder reflection technique.


Connection to a determinant or a product of eigenvalues

We can use QR decomposition to find the
determinant In mathematics, the determinant is a scalar value that is a function of the entries of a square matrix. It characterizes some properties of the matrix and the linear map represented by the matrix. In particular, the determinant is nonzero if and ...
of a square matrix. Suppose a matrix is decomposed as A = QR. Then we have \det A = \det Q \det R. Q can be chosen such that \det Q = 1. Thus, \det A = \det R = \prod_i r_ where the r_ are the entries on the diagonal of R. Furthermore, because the determinant equals the product of the eigenvalues, we have \prod_ r_ = \prod_ \lambda_ where the \lambda_i are eigenvalues of A. We can extend the above properties to a non-square complex matrix A by introducing the definition of QR decomposition for non-square complex matrices and replacing eigenvalues with singular values. Start with a QR decomposition for a non-square matrix ''A'': : A = Q \begin R \\ 0 \end, \qquad Q^* Q = I where 0 denotes the zero matrix and Q is a unitary matrix. From the properties of the
SVD ''Svenska Dagbladet'' (, "The Swedish Daily News"), abbreviated SvD, is a daily newspaper published in Stockholm, Sweden. History and profile The first issue of ''Svenska Dagbladet'' appeared on 18 December 1884. During the beginning of the ...
and the determinant of a matrix, we have :\Big, \prod_i r_\Big, = \prod_i\sigma_, where the \sigma_i are the singular values of Note that the singular values of A and R are identical, although their complex eigenvalues may be different. However, if ''A'' is square, then : = \Big, \prod_i \lambda_i\Big, . It follows that the QR decomposition can be used to efficiently calculate the product of the eigenvalues or singular values of a matrix.


Column pivoting

Pivoted QR differs from ordinary Gram-Schmidt in that it takes the largest remaining column at the beginning of each new step—column pivoting— and thus introduces a
permutation matrix In mathematics, particularly in matrix theory, a permutation matrix is a square binary matrix that has exactly one entry of 1 in each row and each column and 0s elsewhere. Each such matrix, say , represents a permutation of elements and, when ...
''P'': :AP = QR\quad \iff\quad A = QRP^\textsf Column pivoting is useful when ''A'' is (nearly)
rank deficient In linear algebra, the rank of a matrix is the dimension of the vector space generated (or spanned) by its columns. p. 48, § 1.16 This corresponds to the maximal number of linearly independent columns of . This, in turn, is identical to the dime ...
, or is suspected of being so. It can also improve numerical accuracy. ''P'' is usually chosen so that the diagonal elements of ''R'' are non-increasing: \left, r_\ \ge \left, r_\ \ge \cdots \ge \left, r_\. This can be used to find the (numerical) rank of ''A'' at lower computational cost than a
singular value decomposition In linear algebra, the singular value decomposition (SVD) is a factorization of a real or complex matrix. It generalizes the eigendecomposition of a square normal matrix with an orthonormal eigenbasis to any \ m \times n\ matrix. It is related ...
, forming the basis of so-called rank-revealing QR algorithms.


Using for solution to linear inverse problems

Compared to the direct matrix inverse, inverse solutions using QR decomposition are more numerically stable as evidenced by their reduced
condition number In numerical analysis, the condition number of a function measures how much the output value of the function can change for a small change in the input argument. This is used to measure how sensitive a function is to changes or errors in the input ...
s arker, Geophysical Inverse Theory, Ch1.13 To solve the underdetermined linear problem A \mathbf x = \mathbf b where the matrix A has dimensions m \times n and rank first find the QR factorization of the transpose of where ''Q'' is an orthogonal matrix (i.e. and ''R'' has a special form: R = \left begin R_1 \\ 0 \end\right/math>. Here R_1 is a square m \times m right triangular matrix, and the zero matrix has dimension After some algebra, it can be shown that a solution to the inverse problem can be expressed as: \mathbf x = Q \left begin \left(R_1^\textsf\right)^ \mathbf b \\ 0 \end\right/math> where one may either find R_1^ by
Gaussian elimination In mathematics, Gaussian elimination, also known as row reduction, is an algorithm for solving systems of linear equations. It consists of a sequence of operations performed on the corresponding matrix of coefficients. This method can also be used ...
or compute \left(R_1^\textsf\right)^ \mathbf b directly by
forward substitution In mathematics, a triangular matrix is a special kind of square matrix. A square matrix is called if all the entries ''above'' the main diagonal are zero. Similarly, a square matrix is called if all the entries ''below'' the main diagonal are ...
. The latter technique enjoys greater numerical accuracy and lower computations. To find a solution \hat to the overdetermined problem A \mathbf x = \mathbf b which minimizes the norm first find the QR factorization of The solution can then be expressed as where Q_1 is an m \times n matrix containing the first n columns of the full orthonormal basis Q and where R_1 is as before. Equivalent to the underdetermined case,
back substitution In mathematics, a triangular matrix is a special kind of square matrix. A square matrix is called if all the entries ''above'' the main diagonal are zero. Similarly, a square matrix is called if all the entries ''below'' the main diagonal are ...
can be used to quickly and accurately find this \hat without explicitly inverting (Q_1 and R_1 are often provided by numerical libraries as an "economic" QR decomposition.)


Generalizations

Iwasawa decomposition In mathematics, the Iwasawa decomposition (aka KAN from its expression) of a semisimple Lie group generalises the way a square real matrix can be written as a product of an orthogonal matrix and an upper triangular matrix (QR decomposition, a cons ...
generalizes QR decomposition to semi-simple Lie groups.


See also

*
Polar decomposition In mathematics, the polar decomposition of a square real or complex matrix A is a factorization of the form A = U P, where U is an orthogonal matrix and P is a positive semi-definite symmetric matrix (U is a unitary matrix and P is a positive se ...
*
Eigenvalue decomposition In linear algebra, eigendecomposition is the factorization of a matrix into a canonical form, whereby the matrix is represented in terms of its eigenvalues and eigenvectors. Only diagonalizable matrices can be factorized in this way. When the matr ...
* Spectral decomposition *
LU decomposition In numerical analysis and linear algebra, lower–upper (LU) decomposition or factorization factors a matrix as the product of a lower triangular matrix and an upper triangular matrix (see matrix decomposition). The product sometimes includes a pe ...
*
Singular value decomposition In linear algebra, the singular value decomposition (SVD) is a factorization of a real or complex matrix. It generalizes the eigendecomposition of a square normal matrix with an orthonormal eigenbasis to any \ m \times n\ matrix. It is related ...


References


Further reading

* . * *


External links


Online Matrix Calculator
Performs QR decomposition of matrices.

gives details of subroutines to calculate the QR decomposition
Mathematica users manual
gives details and examples of routines to calculate QR decomposition
ALGLIB
includes a partial port of the LAPACK to C++, C#, Delphi, etc.

Includes C++ implementation of QR decomposition. {{Numerical linear algebra Matrix decompositions Numerical linear algebra