Trisha Shetty (Editor)

Matrix decomposition

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

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.

Contents

Example

In numerical analysis, different decompositions are used to implement efficient matrix algorithms.

For instance, when solving a system of linear equations A x = b , 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 L ( U x ) = b and U x = L 1 b require fewer additions and multiplications to solve, compared with the original system A x = b , 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.

LU decomposition

  • Applicable to: square matrix A
  • Decomposition: A = L U , where L is lower triangular and U is upper triangular
  • Related: the LDU decomposition is A = L D U , 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 A = L U P , 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. If the LU decomposition exists, then the LDU decomposition exists.
  • Comments: The LUP and LU decompositions are useful in solving an n-by-n system of linear equations A x = b . 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.
  • Rank factorization

  • Applicable to: m-by-n matrix A of rank r
  • Decomposition: A = C F where C is an m-by-r full column rank matrix and F is an r-by-n full row rank matrix
  • Comment: The rank factorization can be used to compute the Moore–Penrose pseudoinverse of A, which one can apply to obtain all solutions of the linear system A x = b .
  • Cholesky decomposition

  • Applicable to: square, hermitian, positive definite matrix A
  • Decomposition: A = U U , where U is upper triangular with real positive diagonal entries
  • Comment: if the matrix A is Hermitian and positive semi-definite, then it has a decomposition of the form A = U U if the diagonal entries of U are allowed to be zero
  • Uniqueness: for positive definite matrices Cholesky decomposition is unique. However, it is not unique in the positive semi-definite case.
  • Comment: if A is real and symmetric, U has all real elements
  • Comment: An alternative is the LDL decomposition, which can avoid extracting square roots.
  • QR decomposition

  • Applicable to: m-by-n matrix A
  • Decomposition: A = Q R where Q is an unitary matrix of size m-by-m, and R is an upper triangular matrix of size m-by-n
  • Uniqueness: In general it is not unique, but if A is of full rank, then there exists a single R that has all positive diagonal elements. If A is square, also Q is unique.
  • Comment: The QR decomposition provides an alternative way of solving the system of equations A x = b without inverting the matrix A. The fact that Q is orthogonal means that Q T Q = I , so that A x = b is equivalent to R x = Q T b , which is easier to solve since R is triangular.
  • Eigendecomposition

  • Also called spectral decomposition
  • Applicable to: square matrix A with linearly independent eigenvectors (not necessarily distinct eigenvalues).
  • Decomposition: A = V D V 1 , 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 A V = V D . V is invertible if and only if the n eigenvectors are linearly independent (i.e., 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 definition of the eigenvalue equation)
  • Comment: Every normal matrix A (i.e., matrix for which A A = A A , where A is a conjugate transpose) can be eigendecomposed. For normal matrix A (and only for normal matrix), the eigenvectors can also be made orthonormal ( V V = I ) and eigendecomposition reads as A = V D V . In particular all unitary, Hermitian, and skew-Hermitian (in real-valued case, all orthogonal, symmetric, and skew-symmetric, respectively) matrices are normal and therefore possess this property.
  • Comment: For real symmetric matrix A the eigendecomposition always exists and can be written as A = V D V T , 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 x t + 1 = A x t starting from the initial condition x 0 = c is solved by x t = A t c , which is equivalent to x t = V D t V 1 c , where V and D are the matrices formed from the eigenvectors and eigenvalues of A. Since D is diagonal, raising it to power D t , just involves raising each element on the diagonal to the power t. This is much easier to do and to understand than raising A to power t, since A is usually not diagonal.
  • Jordan decomposition

    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

  • Applicable to: square matrix A
  • Decomposition (complex version): A = U T U , where U is a unitary matrix, U is the conjugate transpose of U, and T is an upper triangular matrix called the complex Schur form which has the eigenvalues of A along its diagonal.
  • Comment: if A is a normal matrix, then T is diagonal and the Shur decomposition coincides with the spectral decomposition.
  • Real Schur decomposition

  • Applicable to: square matrix A
  • Decomposition: This is a version of Shur decomposition where V and S only contain real numbers. One can always write A = V S V T where V is a real orthogonal matrix, V T is the transpose of V, and S is a block upper triangular matrix called the real Schur form. The blocks on the diagonal of S are of size 1×1 (in which case they represent real eigenvalues) or 2×2 (in which case they are derived from complex conjugate eigenvalue pairs).
  • QZ decomposition

  • 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): A = Q S Z H and B = Q T Z H where Q and Z are unitary matrices, the H 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, λ i = S i i / T i i , are the generalized eigenvalues that solve the generalized eigenvalue problem A v = λ B v (where λ is an unknown scalar and v is an unknown nonzero vector).
  • Decomposition (real version): A = Q S Z T and B = Q T Z T 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

  • Applicable to: square, complex, symmetric matrix A.
  • Decomposition: A = V D V T , where D is a real nonnegative diagonal matrix, and V is unitary. V T denotes the matrix transpose of V.
  • Comment: The diagonal elements of D are the nonnegative square roots of the eigenvalues of A A H .
  • Comment: V may be complex even if A is real.
  • Comment: This is not a special case of the eigendecomposition (see above).
  • Singular value decomposition

  • Applicable to: m-by-n matrix A.
  • Decomposition: A = U D V , where D is a nonnegative diagonal matrix, and U and V are unitary matrices, and V is the conjugate transpose of V (or simply the transpose, if V contains real numbers only).
  • Comment: The diagonal elements of D are called the singular values of A.
  • Comment: Like the eigendecomposition above, the singular value decomposition involves finding basis directions along which matrix multiplication is equivalent to scalar multiplication, but it has greater generality since the matrix under consideration need not be square.
  • Uniqueness: the singular values of A are always uniquely determined. U and V need not to be unique in general.
  • Polar decomposition

  • Applicable to: any square complex matrix A.
  • Decomposition: A = U P (right polar decomposition) or A = P U (left polar decomposition), where U is a unitary matrix and P and P' are positive semidefinite Hermitian matrices.
  • Uniqueness: P is always unique and equal to A A (which is always hermitian and positive semidefinite). If A is invertible, then U is unique.
  • Comment: Since any Hermitian matrix admits a spectral decomposition with a unitary matrix, P can be written as P = V D V . Since P is positive semidefinite, all elements in D are non-negative. Since the product of two unitary matrices is unitary, taking W = U V one can write A = U ( V D V ) = W D V which is the singular value decomposition. Hence, the existence of the polar decomposition is equivalent to the existence of the singular value decomposition.
  • Algebraic polar decomposition

  • Applicable to: square, complex, non-singular matrix A.
  • Decomposition: A = Q S , where Q is a complex orthogonal matrix and S is complex symmetric matrix.
  • Comment: The existence of this decomposition is equivalent to A A T being similar to A T A .
  • Sinkhorn normal form

  • Applicable to: square real matrix A with strictly positive elements.
  • Decomposition: A = D 1 S D 2 , where S is doubly stochastic and D1 and D2 are real diagonal matrices with strictly positive elements.
  • Sectoral decomposition

  • Applicable to: square, complex matrix A with numerical range contained in the sector S α = { r e i θ C r > 0 , | θ | α < π 2 } .
  • Decomposition: A = C Z C H , where C is an invertible complex matrix and Z = d i a g ( e i θ 1 , , e i θ n ) with all | θ j | α .
  • Generalizations

    There exist analogues of the SVD, QR, LU and Cholesky factorizations for quasimatrices and cmatrices or continuous matrices. 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).

    References

    Matrix decomposition Wikipedia