LU decomposition

From Free net encyclopedia

In linear algebra, the LU decomposition is a matrix decomposition which writes a matrix as the product of a lower and upper triangular matrix. The product sometimes includes a permutation matrix as well. This decomposition is used in numerical analysis to solve systems of linear equations or find the inverse of a matrix.

Contents

Definitions

Let A be a square matrix. An LU decomposition is a decomposition of the form

<math> A = LU, \, </math>

where L and U are lower and upper triangular matrices (of the same size), respectively. This means that L has only zeros above the diagonal and U has only zeros below the diagonal. For a <math>3 \times 3</math> matrix, this becomes:

<math>
       \begin{bmatrix}
          a_{11} & a_{12} & a_{13} \\
          a_{21} & a_{22} & a_{23} \\
          a_{31} & a_{32} & a_{33} \\
       \end{bmatrix} =
     \begin{bmatrix}
          l_{11} & 0 & 0 \\
          l_{12} & l_{22} & 0 \\
          l_{13} & l_{23} & l_{33} \\
       \end{bmatrix}
       \begin{bmatrix}
          u_{11} & u_{12} & u_{13} \\
          0 & u_{22} & u_{23} \\
          0 & 0 & u_{33} \\
       \end{bmatrix}

</math>

A PLU decomposition is a decomposition of the form

<math> A = PLU, \, </math>

where L and U are again lower and upper triangular matrices and P is a permutation matrix, i.e., a matrix of zeros and ones that has exactly one entry 1 in each row and column.

Finally, a PLUQ decomposition is a decomposition of the form

<math> A = PLUQ, \, </math>

where P and Q are permutation matrices and L and U are lower and upper triangular matrices.

Existence and uniqueness

First, suppose that A is invertible. Then A admits a PLU factorization. Furthermore, A admits an LU factorization if and only if all principal minors of A are non-zero. The factorization is unique if we require that the diagonal of L (or U) consist of ones.

Every square matrix A has a PLUQ factorization. Finally, A has an LU factorization if the first k principal minors are non-zero, where k denotes the rank of A.

Positive definite matrices

If the matrix A is Hermitian and positive definite, then we can arrange matters so that U is the conjugate transpose of L. In this case, we have written A as

<math> A = L L^{*}. \, </math>

This decomposition is called the Cholesky decomposition. The Cholesky decomposition always exists and is unique. Furthermore, computing the Cholesky decomposition is more efficient and numerically more stable than computing the LU decomposition.

Algorithms

The LU decomposition is basically a modified form of Gaussian elimination. We transform the matrix A into an upper triangular matrix U by eliminating the entries below the main diagonal. The Doolittle algorithm does the elimination column by column starting from the left, by multiplying A to the left with atomic lower triangular matrices. It results in a unit lower triangular matrix and an upper triangular matrix. The Crout algorithm is slightly different and constructs a lower triangular matrix and an unit upper triangular matrix.

Doolittle algorithm

Given an N × N matrix

<math>

A= (a_{n,n}) </math> we define

<math> A^{(0)} := A</math>

and then we iterate n = 1,...,N-1 as follows.

We eliminate the matrix elements below the main diagonal in the n-th column of A(n-1) by adding to i-th row of this matrix the n-th row multiplied by

<math>l_{i,n} := -\frac{a_{i,n}^{(n-1)}}{a_{n,n}^{(n-1)}}</math>

for <math>i = n+1,\ldots,N</math>. This can be done by multiplying A(n-1) to the left with the lower triangular matrix

<math>

L_n = \begin{pmatrix}

    1 &        &           &         &         & 0 \\
      & \ddots &           &         &         &   \\
      &        &         1 &         &         &   \\
      &        & l_{n+1,n} &  \ddots &         &   \\
      &        &    \vdots &         &  \ddots &   \\
    0 &        &   l_{N,n} &         &         & 1 \\

\end{pmatrix}. </math>

We set

<math> A^{(n)} := L_n A^{(n-1)}.</math>

After N-1 steps, we eliminated all the matrix elements below the main diagonal, so we obtain an upper triangular matrix A(N-1). We find the decomposition

<math>

A = L_{1}^{-1} L_{1} A^{(0)}

L_{1}^{-1} A^{(1)} = L_{1}^{-1} L_{2}^{-1} L_{2} A^{(1)}

L_{1}^{-1}L_{2}^{-1} A^{(2)} =\ldots = L_{1}^{-1} \ldots L_{N-1}^{-1} A^{(N-1)}. </math>

Denote the upper triangular matrix A(N-1) by U, and <math>L=L_{1}^{-1} \ldots L_{N-1}^{-1}</math>. Because the inverse of a lower triangular matrix Ln is again a lower triangular matrix, and the multiplication of two lower triangular matrices is again a lower triangular matrix, it follows that L is a lower triangular matrix. We obtain <math>A=LU</math>.

It is clear that in order for this algorithm to work, one needs to have <math>a_{n,n}^{(n-1)}\not=0</math> at each step (see the definition of <math>l_{i,n}</math>). If this assumption fails at some point, one needs to interchange n-th row with another row below it before continuing. This is why the LU decomposition in general looks like <math>P^{-1}A = L U </math>.

Crout algorithm

Main article Crout matrix decomposition

Applications

Solving linear equations

Given a matrix equation

<math>A x = L U x = b</math>

we want to solve the equation for a given A and b. In this case the solution is done in two logical steps:

  1. First, we solve the equation <math> Ly = b </math> for y
  2. Second, we solve the equation <math> Ux = y </math> for x.

Note that in both cases we have triangular matrices (lower and upper) which can be solved directly using forward and backward substitution without using the Gaussian elimination process (however we need this process or equivalent to compute the LU decomposition itself). Thus the LU decomposition is computationally efficient only when we have to solve a matrix equation multiple times for different b. It is faster to do a LU decomposition of the matrix A once and then solve the triangular matrices for the different b than to use Gaussian elimination each time.

Inverse matrix

The matrices L and U can be used to calculate the matrix inverse.

Computer implementations that invert matrices often use this approach.

See also

References

External links

es:Factorización LU fr:Décomposition LU is:LU-þáttun it:Decomposizione LU nl:LU-decompositie ja:LU分解 pl:Metoda LU