Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition

Lecture



Matrix decomposition is the representation of a matrix Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition as a product of matrices possessing certain specified properties (for example, orthogonality, symmetry, diagonality). Each class of matrix decompositions has its own area of application; in particular, many efficient algorithms of computational linear algebra are based on constructing the corresponding matrix decompositions.

Matrix decomposition is the process of representing a matrix as a combination of simpler matrices or operations on matrices. There are various types of matrix decompositions, each with its own features and applications.
The so-called LU and QR decompositions are implemented by matrix functions. The function lu expresses any square matrix X as a product of two triangular matrices, one of which (possibly with permutations) is a lower triangular matrix, and the other an upper triangular matrix. This operation is sometimes called LR decomposition.

Decompositions for Solving Systems of Linear Algebraic Equations

LU decomposition (LU decomposition, LU factorization) is the representation of a matrix Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition as a product of two matrices, Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition, where Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is a lower triangular matrix and Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is an upper triangular matrix.

LU decomposition is used for solving systems of linear equations, inverting matrices, and computing the determinant. LU decomposition exists only when the matrix Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is invertible and all the leading (corner) principal minors of the matrix Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition are non-singular .

This method is a variant of Gaussian elimination.

LU Decomposition

  • Constraints: the matrix Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is square and non-singular, and all its leading principal minors are nonzero .
  • Form of the decomposition: Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition, where Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is a lower triangular matrix and Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is an upper triangular matrix. For the decomposition to be unique, it is usually additionally required that the matrix Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition be unitriangular, i.e., a triangular matrix with diagonal entries equal to one (sometimes this unitriangularity requirement is imposed on the matrix Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition instead) .
  • Related decompositions: LDU decomposition of the form Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition, where Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is a lower unitriangular matrix, Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is an upper unitriangular matrix, and Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is a diagonal matrix.
  • Related decompositions: LUP decomposition of the form Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition, where Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is a permutation matrix (chosen during construction of the decomposition), Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is a lower unitriangular matrix, Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is an upper triangular matrix. This is a generalization of LU decomposition to the case of arbitrary non-singular matrices.
  • Existence: LUP decomposition exists for any square matrix Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition. When the matrix Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition reduces to the identity matrix, the LUP decomposition reduces to the LU decomposition.
  • LUP and LU decompositions are used when solving the system of linear algebraic equations Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition of dimension Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition. The corresponding methods are variants of the matrix form of Gaussian elimination. The matrix Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition then characterizes the combined effect of row permutations in Gaussian elimination.

Algorithm for LU Decomposition

One of the algorithms for computing the LU decomposition is given below

We will use the following notation for the matrix entries: Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition, Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition, Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition, Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition; and the diagonal entries of the matrix Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition, =1… Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition.

The matrices Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition and Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition can be found as follows (the steps must be performed strictly in order, since later elements are computed using earlier ones):

  1. Loop i from 1 to n
    1. Loop j from 1 to n
      1. uij=0, lij=0
      2. lii=1
  2. Loop i from 1 to n
    1. Loop j from 1 to n
      1. If i<=j: Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition
      2. If i>j: Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition

As a result we obtain the matrices Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition and Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition.

Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition fig. LDU decomposition of the Walsh matrix

Rank factorization Rank factorization

  • Constraints: an arbitrary matrix Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition of size Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition and rank Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition.
  • Form of the decomposition: Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition, where Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is a matrix of size Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition and Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is a matrix of size Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition.
  • Rank factorization can be used to compute the pseudoinverse matrix, which is applied when finding the general solution of the system of linear algebraic equations Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition.

Cholesky Decomposition

  • Constraints: a symmetric positive definite matrix Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition .
  • Form of the decomposition: Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition (or, equivalently, Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition), where the matrix Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is upper triangular (respectively, the matrix Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is lower triangular) .
  • Related decompositions: an alternative is the modified Cholesky decomposition (LDL decomposition), which avoids taking square roots (here the matrix Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is a lower unitriangular matrix and Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is diagonal).
  • The Cholesky decomposition is unique.
  • The Cholesky decomposition is also applicable if the matrix Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is Hermitian and positive definite.
  • The Cholesky decomposition is used to solve the system of linear algebraic equations Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition, if the matrix Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition has the corresponding properties. Compared with the LU decomposition method, this approach is guaranteed to be numerically stable and requires half as many arithmetic operations .

QR Decomposition

  • Constraints: an arbitrary matrix Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition of size Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition.
  • Form of the decomposition: Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition, where Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is an orthogonal matrix of size Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition, and Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is upper triangular of size Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition.
  • Related decompositions: similar QL, RQ, and LQ decompositions also exist.
  • Because the matrix Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is orthogonal (which means its inverse Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition coincides with its transpose Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition), the system Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is equivalent to the system Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition with a triangular matrix, which is easy to solve.
  • One way to obtain the matrix Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is the Gram–Schmidt process, in which case Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition.
  • Constructing the QR decomposition is the basis of the QR algorithm, one of the methods for finding the eigenvectors and eigenvalues of a matrix.
  • Algorithms for solving systems of linear algebraic equations based on the QR decomposition perform almost equally well for both well-conditioned and singular systems .

Interpolative Decomposition

  • Constraints: an arbitrary matrix Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition of dimension Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition and rank Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition.
  • Form of the decomposition: Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition, where Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is a subset of Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition indices Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition; the matrix Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition consists of the corresponding columns of the original matrix; Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is a matrix all of whose entries do not exceed 2 in absolute value (moreover, Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition contains an identity submatrix of dimension Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition). A similar decomposition can be obtained for the rows as well.

Decompositions Related to Eigenvalues or Singular Values

Spectral decomposition of a matrix

  • Constraints: a diagonalizable square matrix Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition, i.e., one having a set of Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition distinct eigenvectors (the eigenvalues need not be distinct).
  • Form of the decomposition: Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition, where Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is a diagonal matrix formed from the eigenvalues Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition, and the columns of Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition are the corresponding eigenvectors.
  • Existence: a matrix of dimension Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition always has Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition eigenvalues (counted with multiplicity), which can be ordered (not uniquely) to form a diagonal matrix Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition of dimension Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition and a corresponding matrix of nonzero columns Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition satisfying the equality Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition. If the Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition eigenvectors are distinct, then the matrix Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is invertible, which gives the desired decomposition −1Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition .
  • The eigenvectors can always be normalized to have length 1. If Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is a real symmetric matrix, then Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is always invertible and can be normalized. In this case the matrix Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition turns out to be orthogonal, since the eigenvectors are orthogonal to one another. Thus, the desired decomposition (which always exists in this case) can be written as Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition.
  • A necessary and sufficient condition for diagonalizability is that the geometric and algebraic multiplicities of every eigenvalue coincide. In particular, having Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition distinct eigenvalues is a sufficient (but not necessary) condition.
  • Spectral decomposition is useful for understanding the solutions of systems of linear ordinary differential equations or difference equations. For example, the difference equation Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition with initial condition Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition has the solution Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition, which can also be written as Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition (in the case that Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition). Computing the power Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition of the diagonal matrix Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition reduces to raising each element on the diagonal to the power Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition, which is incomparably simpler than Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition (unless, of course, the latter is already diagonal to begin with).

Jordan Normal Form Jordan Matrix

  • Constraints: a square matrix Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition.
  • Form of the decomposition: Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition, where Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is the Jordan matrix, and Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is the change-of-basis matrix.
  • The Jordan normal form generalizes the diagonal form of the matrix Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition made up of the eigenvalues, to the case where the geometric multiplicity of one or more eigenvalues is less than its algebraic multiplicity.

Schur Decomposition

  • Constraints: a square matrix Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition.
  • There are two versions of the decomposition: for the case of a real matrix and for the case of a complex matrix. The latter always has a complex Schur decomposition.
  • Form of the decomposition (real case): Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition (all the matrices on both sides of the equality consist of strictly real values). In this case Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is an orthogonal matrix, and Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is quasi-triangular. The latter is called the real Schur form. The blocks on the diagonal of Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition are either of size 1×1Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition (in which case they represent real eigenvalues) or 2×2Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition (formed by a pair of complex-conjugate eigenvalues).
  • Form of the decomposition (complex case): Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition, where Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is unitary, Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is its Hermitian conjugate, and Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is an upper triangular matrix, called the complex Schur form, which contains the eigenvalues Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition on the diagonal.

QZ Decomposition Schur Decomposition, Generalized Schur Decomposition

  • Constraints: square matrices Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition and Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition.
  • There are two versions of the decomposition: complex and real.
  • Form of the decomposition (complex case): Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition, where Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition and Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition are unitary matrices, Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is the Hermitian conjugate of Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition, and Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition and Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition are upper triangular matrices.
  • In this decomposition, the ratio of the diagonal entries in Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition to the corresponding entries in Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition, Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition, are the generalized eigenvalues, which are the solution of the generalized eigenvalue problem Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition (where Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is an unknown scalar and Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is an unknown nonzero vector).
  • Form of the decomposition (real case): Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition, where all the matrices consist strictly of real values. Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition are orthogonal matrices, and Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition are quasi-triangular, consisting of blocks of size 1×1Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition or 2×2Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition (similar to the corresponding blocks in the Schur decomposition).

Singular Value Decomposition

  • Constraints: an arbitrary matrix Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition of size Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition .
  • Form of the decomposition: Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition, where ΣMatrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is a non-negative diagonal matrix, Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition are unitary matrices, and Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is the Hermitian conjugate. In the real case Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition, where ΣMatrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition, as before, is a non-negative diagonal matrix, and Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition are orthogonal .
  • The elements on the diagonal of the matrix ΣMatrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition are called the singular values of the matrix Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition and are denoted .Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition The number of nonzero singular values of the matrix Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition equals the rank of that matrix .
  • Like spectral decomposition, singular value decomposition involves finding a basis for subspaces on whose elements the action of the operator Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is equivalent to multiplication by a scalar (i.e., Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition), but singular value decomposition is a more general method, since the matrix Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition need not be square.

Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition

Other Decompositions

Polar Decomposition

  • Constraints: a square complex matrix Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition .
  • Form of the decomposition (complex case): Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition, where Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is a Hermitian matrix with non-negative leading minors, and Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is a unitary matrix.
  • Form of the decomposition (real case): Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition, where Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is a symmetric matrix with non-negative leading minors, and Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is an orthogonal matrix.
  • For a non-singular matrix the polar decomposition is unique, while for a singular matrix only the factor Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is uniquely determined.
  • In the complex case, the polar decomposition of a matrix is analogous to representing an arbitrary complex number Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition in the form Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition .

Frobenius Normal Form

  • Constraints: a square matrix Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition.
  • Form of the decomposition:Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition, where Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is a block-diagonal matrix composed of the companion matrices of monic polynomials Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition such that Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is a multiple of Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition. Matrix Decomposition: LU Decomposition (LR), Cholesky Decomposition, and Singular Value Decomposition is the transition matrix.

See Also

  • Matrix splitting
  • Non-negative matrix factorization
  • Principal component analysis

Comments

To leave a comment

If you have any suggestion, idea, thanks or comment, feel free to write. We really value feedback and are glad to hear your opinion.
To reply

Lectures and tutorial on "Linear Algebra and Analytical Geometry"

Terms: Linear Algebra and Analytical Geometry