Discover

LU DECOMPOSITION

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
Existence and uniqueness
Positive definite matrices
Algorithms
Doolittle algorithm
LUP algorithm
Small Example
Applications
Solving linear equations
Inverse matrix
See also
References
External links

Definitions


Let ''A'' be a square matrix. An ''LU decomposition'' is a decomposition of the form
: A = LU, ,
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 3 imes 3 matrix, this becomes:
:
egin{bmatrix}
a_{11} & a_{12} & a_{13} \
a_{21} & a_{22} & a_{23} \
a_{31} & a_{32} & a_{33} \
end{bmatrix} =
egin{bmatrix}
l_{11} & 0 & 0 \
l_{21} & l_{22} & 0 \
l_{31} & l_{32} & l_{33} \
end{bmatrix}
egin{bmatrix}
u_{11} & u_{12} & u_{13} \
0 & u_{22} & u_{23} \
0 & 0 & u_{33} \
end{bmatrix}.

An ''LDU decomposition'' is a decomposition of the form
: A = LDU, ,
where ''D'' is a diagonal matrix and ''L'' and ''U'' are ''unit'' triangular matrices, meaning that all the entries on the diagonals of ''L'' and ''U'' are one.
A ''LUP decomposition'' is a decomposition of the form
: A = LUP, ,
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.

Existence and uniqueness


An invertible matrix admits an ''LU'' factorization if and only if all its principal minors are non-zero. The factorization is unique if we require that the diagonal of ''L'' (or ''U'') consist of ones. The matrix has a unique ''LDU'' factorization under the same conditions.
If the matrix is singular, then an ''LU'' factorization may still exist. In fact, a square matrix of rank ''k'' has an ''LU'' factorization if the first ''k'' principal minors are non-zero.
The exact necessary and sufficient conditions under which a not necessarily invertible matrix over any field has an LU factorization are known. The conditions are expressed in terms of the ranks of certain submatrices. The Gaussian elimination algorithm for obtaining LU decomposition has also been extended to this most general case .
Every matrix A --square or not-- admits a ''LUP'' factorization. The matrices L and P are square matrices, but
U has the same shape as A. ''Upper triangular'' should be interpreted as having only zero entries below the main diagonal, which starts at the upper left corner. The ''LUP'' factorization can be done in such a way that
U has only ones on its main diagonal.

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
: A = L L^{
★ }. ,
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 a ''unit upper triangular'' matrix.
Computing the LU decomposition using either of these algorithms requires 2''n''3 / 3 floating point operations, ignoring lower order terms. Partial pivoting adds only a quadratic term and can thus be neglected; this is not the case for full pivoting .
Doolittle algorithm

Given an ''N'' × ''N'' matrix
:
A= (a_{n,n})

we define
: A^{(0)} := A
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 the ''i''-th row of this matrix the ''n''-th row multiplied
by
:l_{i,n} := - rac{a_{i,n}^{(n-1)}}{a_{n,n}^{(n-1)}}
for i = n+1,ldots,N. This can be done by
multiplying ''A''(''n-1'') to the left with the
lower triangular matrix
:
L_n =
egin{pmatrix}
1 & & & & & 0 \
& ddots & & & & \
& & 1 & & & \
& & l_{n+1,n} & ddots & & \
& & dots & & ddots & \
0 & & l_{N,n} & & & 1 \
end{pmatrix}.

We set
: A^{(n)} := L_n A^{(n-1)}.
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
:
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)}.

Denote the upper triangular matrix
''A''(''N-1'') by ''U'', and L=L_{1}^{-1} ldots L_{N-1}^{-1}. Because the inverse of a lower triangular matrix ''L''''n'' 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 A=LU.
It is clear that in order for this algorithm to work, one needs to have a_{n,n}^{(n-1)}
ot=0
at each step (see the definition of l_{i,n}). 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 P^{-1}A = L U .
LUP algorithm

The LUP decomposition algorithm by Cormen et al. generalizes Crout matrix decomposition. It can be described as follows.
# If A has a nonzero entry in its first row, then take a permutation matrix P_1 such that A P_1 has a nonzero entry in its upper left corner. Otherwise, take for P_1 the identity matrix. Let A_1 = A P_1.
# Let A_2 be the matrix that one gets from A_1 by deleting both the first row and the first column. Decompose A_2 = L_2 U_2 P_2 recursively. Make L from L_2 by first adding a zero row above and then adding the first column of A_1 at the left.
# Make U_3 from U_2 by first adding a zero row above and a zero column at the left and then replacing the upper left entry (which is 0 at this point) by 1. Make P_3 from P_2 in a similar manner and define A_3 = A_1 / P_3 = A P_1 / P_3. Let P be the inverse of P_1 / P_3.
# At this point, A_3 is the same as L U_3, except (possibly) at the first row. If the first row of A is zero, then A_3 = L U_3, since both have first row zero, and A = L U_3 P follows, as desired. Otherwise, A_3 and L U_3 have the same nonzero entry in the upper left corner, and A_3 = L U_3 U_1 for some upper triangular square matrix U_1 with ones on the diagonal (U_1 clears entries of L U_3 and adds entries of A_3 by way of the upper left corner). Now A = L U_3 U_1 P is a decomposition of the desired form.

Small Example


:
egin{bmatrix}
4 & 3 \
6 & 3 \
end{bmatrix} =
egin{bmatrix}
l_{11} & 0 \
l_{21} & l_{22} \
end{bmatrix}
egin{bmatrix}
u_{11} & u_{12} \
0 & u_{22} \
end{bmatrix}

One way of finding the LU decomposition of this simple matrix would be to simply solve the linear equations by inspection. You know that:
:l_{11}
★ u_{11} + 0
★ 0 = 4
:l_{11}
★ u_{12} + 0
★ u_{22} = 3
:l_{21}
★ u_{11} + l_{22}
★ 0 = 6
:l_{21}
★ u_{12} + l_{22}
★ u_{22} = 3
Such a system of equations is underdetermined. In this case any two non-zero elements of ''L'' and ''U'' matrices are parameters of the solution and can be set arbitrarily to any non-zero value. Therefore to find the unique LU decomposition, it is needed to put some restriction on ''L'' and ''U'' matrices. For example, we can require the upper triangular matrix ''U'' to be a unit one (i.e. set all the entries of its main diagonal to ones). Then the system of equations has the following solution:
:l_{11} = 4
:u_{12} = 0.75
:l_{21} = 6
:l_{22} = -1.5
Substituting these values into the LU decomposition above:
:
egin{bmatrix}
4 & 3 \
6 & 3 \
end{bmatrix} =
egin{bmatrix}
4 & 0 \
6 & -1.5 \
end{bmatrix}
egin{bmatrix}
1 & 0.75 \
0 & 1 \
end{bmatrix}

Applications


Solving linear equations

Given a matrix equation
:A x = L U x = b
we want to solve the equation for a given ''A'' and ''b''. In this case the solution is done in two logical steps:
# First, we solve the equation Ly = b for ''y''
# Second, we solve the equation Ux = y 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 by:
:
A^{-1} = U^{-1}L^{-1}

Computer implementations that invert matrices often use this approach.

See also



Block LU decomposition

Cholesky decomposition

References





★ .

★ . See Section 3.5.

★ .

LU decomposition on ''MathWorld''.

LU decomposition on ''Math-Linux''.

External links



LAPACK is a collection of FORTRAN subroutines for solving dense linear algebra problems

ALGLIB includes a partial port of the LAPACK to C++, C#, Delphi, etc.

Online Matrix Calculator performs LU decomposition

LU decomposition at ''Holistic Numerical Methods Institute''

Module for LU Factorization with Pivoting

LU Decomposition at the Wolfram Demonstrations Project

This article provided by Wikipedia. To edit the contents of this article, click here for original source.

psst.. try this: add to faves