Matrix decomposition - Wikipedia
Excerpt
From Wikipedia, the free encyclopedia
From Wikipedia, the free encyclopedia
In the mathematical discipline of linear algebra, a matrix decomposition or matrix factorization is a factorization of a matrix into a product of matrices. There are many different matrix decompositions; each finds use among a particular class of problems.
Example[edit]
In numerical analysis, different decompositions are used to implement efficient matrix algorithms.
For instance, when solving a system of linear equations , the matrix A can be decomposed via the LU decomposition. The LU decomposition factorizes a matrix into a lower triangular matrix L and an upper triangular matrix U. The systems
and
require fewer additions and multiplications to solve, compared with the original system
, though one might require significantly more digits in inexact arithmetic such as floating point.
Similarly, the QR decomposition expresses A as QR with Q an orthogonal matrix and R an upper triangular matrix. The system Q(Rx) = b is solved by Rx = QTb = c, and the system Rx = c is solved by âback substitutionâ. The number of additions and multiplications required is about twice that of using the LU solver, but no more digits are required in inexact arithmetic because the QR decomposition is numerically stable.
[edit]
LU decomposition[edit]
- Traditionally applicable to: square matrix A, although rectangular matrices can be applicable.[1][nb 1]
- Decomposition:
, where L is lower triangular and U is upper triangular.
- Related: the LDU decomposition is
, where L is lower triangular with ones on the diagonal, U is upper triangular with ones on the diagonal, and D is a diagonal matrix.
- Related: the LUP decomposition is
, where L is lower triangular, U is upper triangular, and P is a permutation matrix.
- Existence: An LUP decomposition exists for any square matrix A. When P is an identity matrix, the LUP decomposition reduces to the LU decomposition.
- Comments: The LUP and LU decompositions are useful in solving an n-by-n system of linear equations
. These decompositions summarize the process of Gaussian elimination in matrix form. Matrix P represents any row interchanges carried out in the process of Gaussian elimination. If Gaussian elimination produces the row echelon form without requiring any row interchanges, then PÂ =Â I, so an LU decomposition exists.
LU reduction[edit]
Block LU decomposition[edit]
Rank factorization[edit]
Cholesky decomposition[edit]
QR decomposition[edit]
RRQR factorization[edit]
Interpolative decomposition[edit]
Decompositions based on eigenvalues and related concepts[edit]
Eigendecomposition[edit]
- Also called spectral decomposition.
- Applicable to: square matrix A with linearly independent eigenvectors (not necessarily distinct eigenvalues).
- Decomposition:
, where D is a diagonal matrix formed from the eigenvalues of A, and the columns of V are the corresponding eigenvectors of A.
- Existence: An n-by-n matrix A always has n (complex) eigenvalues, which can be ordered (in more than one way) to form an n-by-n diagonal matrix D and a corresponding matrix of nonzero columns V that satisfies the eigenvalue equation
.
is invertible if and only if the n eigenvectors are linearly independent (that is, each eigenvalue has geometric multiplicity equal to its algebraic multiplicity). A sufficient (but not necessary) condition for this to happen is that all the eigenvalues are different (in this case geometric and algebraic multiplicity are equal to 1)
- Comment: One can always normalize the eigenvectors to have length one (see the definition of the eigenvalue equation)
- Comment: Every normal matrix A (that is, matrix for which
, where
is a conjugate transpose) can be eigendecomposed. For a normal matrix A (and only for a normal matrix), the eigenvectors can also be made orthonormal (
) and the eigendecomposition reads as
. In particular all unitary, Hermitian, or skew-Hermitian (in the real-valued case, all orthogonal, symmetric, or skew-symmetric, respectively) matrices are normal and therefore possess this property.
- Comment: For any real symmetric matrix A, the eigendecomposition always exists and can be written as
, where both D and V are real-valued.
- Comment: The eigendecomposition is useful for understanding the solution of a system of linear ordinary differential equations or linear difference equations. For example, the difference equation
starting from the initial condition
is solved by
, which is equivalent to
, where V and D are the matrices formed from the eigenvectors and eigenvalues of A. Since D is diagonal, raising it to power
, just involves raising each element on the diagonal to the power t. This is much easier to do and understand than raising A to power t, since A is usually not diagonal.
Jordan decomposition[edit]
The Jordan normal form and the JordanâChevalley decomposition
- Applicable to: square matrix A
- Comment: the Jordan normal form generalizes the eigendecomposition to cases where there are repeated eigenvalues and cannot be diagonalized, the JordanâChevalley decomposition does this without choosing a basis.
Schur decomposition[edit]
Real Schur decomposition[edit]
QZ decomposition[edit]
- Also called: generalized Schur decomposition
- Applicable to: square matrices A and B
- Comment: there are two versions of this decomposition: complex and real.
- Decomposition (complex version):
and
where Q and Z are unitary matrices, the * superscript represents conjugate transpose, and S and T are upper triangular matrices.
- Comment: in the complex QZ decomposition, the ratios of the diagonal elements of S to the corresponding diagonal elements of T,
, are the generalized eigenvalues that solve the generalized eigenvalue problem
(where
is an unknown scalar and v is an unknown nonzero vector).
- Decomposition (real version):
and
where A, B, Q, Z, S, and T are matrices containing real numbers only. In this case Q and Z are orthogonal matrices, the T superscript represents transposition, and S and T are block upper triangular matrices. The blocks on the diagonal of S and T are of size 1Ă1 or 2Ă2.
Takagiâs factorization[edit]
Singular value decomposition[edit]
Scale-invariant decompositions[edit]
Refers to variants of existing matrix decompositions, such as the SVD, that are invariant with respect to diagonal scaling.
Analogous scale-invariant decompositions can be derived from other matrix decompositions; for example, to obtain scale-invariant eigenvalues.[3][4]
Hessenberg decomposition[edit]
Complete orthogonal decomposition[edit]
- Also known as: UTV decomposition, ULV decomposition, URV decomposition.
- Applicable to: m-by-n matrix A.
- Decomposition:
, where T is a triangular matrix, and U and V are unitary matrices.
- Comment: Similar to the singular value decomposition and to the Schur decomposition.
Other decompositions[edit]
Polar decomposition[edit]
Algebraic polar decomposition[edit]
Mostowâs decomposition[edit]
Sinkhorn normal form[edit]
- Applicable to: square real matrix A with strictly positive elements.
- Decomposition:
, where S is doubly stochastic and D1 and D2 are real diagonal matrices with strictly positive elements.
Sectoral decomposition[edit]
Williamsonâs normal form[edit]
Matrix square root[edit]
Generalizations[edit]
![]() | This section needs expansion with: examples and additional citations. You can help by adding to it. (December 2014) |
There exist analogues of the SVD, QR, LU and Cholesky factorizations for quasimatrices and cmatrices or continuous matrices.[13] A âquasimatrixâ is, like a matrix, a rectangular scheme whose elements are indexed, but one discrete index is replaced by a continuous index. Likewise, a âcmatrixâ, is continuous in both indices. As an example of a cmatrix, one can think of the kernel of an integral operator.
These factorizations are based on early work by Fredholm (1903), Hilbert (1904) and Schmidt (1907). For an account, and a translation to English of the seminal papers, see Stewart (2011).
See also[edit]
References[edit]
Notes[edit]
- ^ If a non-square matrix is used, however, then the matrix U will also have the same rectangular shape as the original matrix A. And so, calling the matrix U upper triangular would be incorrect as the correct term would be that U is the ârow echelon formâ of A. Other than this, there are no differences in LU factorization for square and non-square matrices.
Citations[edit]
- ^ Lay, David C. (2016). Linear algebra and its applications. Steven R. Lay, Judith McDonald (Fifth Global ed.). Harlow. p. 142. ISBN 978-1-292-09223-2. OCLC 920463015.
- ^ Piziak, R.; Odell, P. L. (1 June 1999). âFull Rank Factorization of Matricesâ. Mathematics Magazine. 72 (3): 193. doi:10.2307/2690882. JSTORÂ 2690882.
- ^ Uhlmann, J.K. (2018), âA Generalized Matrix Inverse that is Consistent with Respect to Diagonal Transformationsâ, SIAM Journal on Matrix Analysis and Applications, 239 (2): 781â800, doi:10.1137/17M113890X
- ^ Uhlmann, J.K. (2018), âA Rank-Preserving Generalized Matrix Inverse for Consistency with Respect to Similarityâ, IEEE Control Systems Letters, 3: 91â95, arXiv:1804.07334, doi:10.1109/LCSYS.2018.2854240, ISSNÂ 2475-1456, S2CIDÂ 5031440
- ^ Choudhury & Horn 1987, pp. 219â225
- ^ Jump up to: a b c Bhatia, Rajendra (2013-11-15). âThe bipolar decompositionâ. Linear Algebra and Its Applications. 439 (10): 3031â3037. doi:10.1016/j.laa.2013.09.006.
- ^ Horn & Merino 1995, pp. 43â92
- ^ Mostow, G. D. (1955), Some new decomposition theorems for semi-simple groups, Mem. Amer. Math. Soc., vol. 14, American Mathematical Society, pp. 31â54
- ^ Nielsen, Frank; Bhatia, Rajendra (2012). Matrix Information Geometry. Springer. p. 224. arXiv:1007.4402. doi:10.1007/978-3-642-30232-9. ISBN 9783642302329. S2CID 118466496.
- ^ Zhang, Fuzhen (30 June 2014). âA matrix decomposition and its applicationsâ. Linear and Multilinear Algebra. 63 (10): 2033â2042. doi:10.1080/03081087.2014.933219. S2CIDÂ 19437967.
- ^ Drury, S.W. (November 2013). âFischer determinantal inequalities and HighamÊŒs Conjectureâ. Linear Algebra and Its Applications. 439 (10): 3129â3133. doi:10.1016/j.laa.2013.08.031.
- ^ Idel, Martin; Soto Gaona, SebastiĂĄn; Wolf, Michael M. (2017-07-15). âPerturbation bounds for Williamsonâs symplectic normal formâ. Linear Algebra and Its Applications. 525: 45â58. arXiv:1609.01338. doi:10.1016/j.laa.2017.03.013. S2CIDÂ 119578994.
- ^ Townsend & Trefethen 2015
Bibliography[edit]
- Choudhury, Dipa; Horn, Roger A. (April 1987). âA Complex Orthogonal-Symmetric Analog of the Polar Decompositionâ. SIAM Journal on Algebraic and Discrete Methods. 8 (2): 219â225. doi:10.1137/0608019.
- Fredholm, I. (1903), âSur une classe dâÂŽequations fonctionnellesâ, Acta Mathematica (in French), 27: 365â390, doi:10.1007/bf02421317
- Hilbert, D. (1904), âGrundzĂŒge einer allgemeinen Theorie der linearen Integralgleichungenâ, Nachr. Königl. Ges. Gött (in German), 1904: 49â91
- Horn, Roger A.; Merino, Dennis I. (January 1995). âContragredient equivalence: A canonical form and some applicationsâ. Linear Algebra and Its Applications. 214: 43â92. doi:10.1016/0024-3795(93)00056-6.
- Meyer, C. D. (2000), Matrix Analysis and Applied Linear Algebra, SIAM, ISBNÂ 978-0-89871-454-8
- Schmidt, E. (1907), âZur Theorie der linearen und nichtlinearen Integralgleichungen. I Teil. Entwicklung willkĂŒrlichen Funktionen nach System vorgeschriebenerâ, Mathematische Annalen (in German), 63 (4): 433â476, doi:10.1007/bf01449770
- Simon, C.; Blume, L. (1994). Mathematics for Economists. Norton. ISBNÂ 978-0-393-95733-4.
- Stewart, G. W. (2011), Fredholm, Hilbert, Schmidt: three fundamental papers on integral equations (PDF), retrieved 2015-01-06
- Townsend, A.; Trefethen, L. N. (2015), âContinuous analogues of matrix factorizationsâ, Proc. R. Soc. A, 471 (2173): 20140585, Bibcode:2014RSPSA.47140585T, doi:10.1098/rspa.2014.0585, PMCÂ 4277194, PMIDÂ 25568618
- Jun, Lu (2021), Numerical matrix decomposition and its modern applications: A rigorous first course, arXiv:2107.02579
External links[edit]
- Online Matrix Calculator
- Wolfram Alpha Matrix Decomposition Computation » LU and QR Decomposition
- Springer Encyclopaedia of Mathematics » Matrix factorization
- GraphLab GraphLab collaborative filtering library, large scale parallel implementation of matrix decomposition methods (in C++) for multicore.