LU decomposition
In linear algebra, LU decomposition (also called LU factorization) factorizes a matrix as the product of a lower triangular matrix and an upper triangular matrix. The product sometimes includes a permutation matrix as well. LU decomposition is a key step in several fundamental numerical algorithms in linear algebra such as solving a system of linear equations, inverting a matrix, or computing the determinant of a matrix. It can be viewed as the matrix form of Gaussian elimination. LU decomposition was introduced by mathematician Alan Turing [1].
Contents |
[edit] Definitions
Let A be a square matrix. An LU decomposition is a decomposition of the form
where L is a lower triangular matrix and U is an upper triangular matrix. This means that L has only zeros above the diagonal and U has only zeros below the diagonal. For example, for a 3-by-3 matrix A, its LU decomposition looks like this:
However, not all "well behaved" matrices can be factorized into this form. For example, it is easy to verify (by expanding the matrix multiplication) that
. Therefore, if
, then at least one of
and
has to be zero. However, in either case the product LU becomes singular, while A is not necessarily singular. This means such matrices cannot be LU decomposed. To overcome this limitation, LUP decomposition is commonly used.
An LUP decomposition (also called a LU decomposition with partial pivoting) is a decomposition of the form
where L and U are again lower and upper triangular matrices, and P is a permutation matrix which, when left-multiplied to A, reorders the rows of A. It turns out that all square matrices can be factorized in this form[citation needed], and the factorization is numerically stable[citation needed]. This makes LUP decomposition a useful technique in practice.
An LU decomposition with full pivoting (Trefethen and Bau) takes the form
where L, U and P are defined same as before, and Q is a permutation matrix that reorders the columns of A.
An LDU decomposition is a decomposition of the form
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.
Above we required that A be a square matrix, but these decompositions can all be generalized to rectangular matrices as well. In that case, L and P are square matrices which each have the same number of rows as A, while U is exactly 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.
[edit] Example
Let's factorize the following 2-by-2 matrix.
One way to find the LU decomposition of this simple matrix would be to simply solve the linear equations by inspection. Expanding the matrix multiplication gives
This 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 necessary to put some restriction on L and U matrices. For example, we can conveniently require the lower triangular matrix L 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:
Substituting these values into the LU decomposition above yields
[edit] Existence and uniqueness
[edit] Square matrices
If a square matrix A is invertible, then
- A always admits an LUP factorization.
- A admits an LU (or LDU) factorization if and only if all its leading principal minors are non-zero.
- The LU, LDU, or LUP factorization is unique if we require that the diagonal of L (or U) consist of ones.
If a square matrix A is singular (i.e. is not invertible), then
- LU factorization may exist. In fact, a square matrix of rank k has an LU factorization if the first k leading principal minors are non-zero, although the converse is not true.
[edit] Symmetric positive definite matrices
If A is a symmetric (or Hermitian, if A is complex) positive definite matrix, we can arrange matters so that U is the conjugate transpose of L. That is, we can write A as
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 some other LU decompositions.
[edit] General matrices
For a (not necessarily invertible) matrix over any field, the exact necessary and sufficient conditions under which it 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 (Okunev & Johnson 1997).
[edit] 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 2n3 / 3 floating point operations, ignoring lower order terms. Partial pivoting adds only a quadratic term; this is not the case for full pivoting.[2]
[edit] Closed formula
When an LDU factorization exists and is unique there is a closed (explicit) formula for the elements of L, D, and U in terms of ratios of determinants of certain submatrices of the original matrix A (Householder 1975). In particular,
and for
,
is the ratio of the
principal submatrix to the
principal submatrix.
[edit] Doolittle algorithm
Given an N × N matrix
we define
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
for
. This can be done by multiplying A(n-1) to the left with the lower triangular matrix
We set
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
Denote the upper triangular matrix A(N-1) by U, and
. 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. Moreover, it can be seen that
We obtain
.
It is clear that in order for this algorithm to work, one needs to have
at each step (see the definition of
). 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
.
[edit] Crout and LUP algorithms
The LUP decomposition algorithm by Cormen et al. generalizes Crout matrix decomposition. It can be described as follows.
- If
has a nonzero entry in its first row, then take a permutation matrix
such that
has a nonzero entry in its upper left corner. Otherwise, take for
the identity matrix. Let
. - Let
be the matrix that one gets from
by deleting both the first row and the first column. Decompose
recursively. Make
from
by first adding a zero row above and then adding the first column of
at the left. - Make
from
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
from
in a similar manner and define
. Let
be the inverse of
. - At this point,
is the same as
, except (possibly) at the first row. If the first row of
is zero, then
, since both have first row zero, and
follows, as desired. Otherwise,
and
have the same nonzero entry in the upper left corner, and
for some upper triangular square matrix
with ones on the diagonal (
clears entries of
and adds entries of
by way of the upper left corner). Now
is a decomposition of the desired form.
[edit] Theoretical complexity
If two matrices of order n can be multiplied in time M(n), where M(n)≥na for some a>2, then the LU decomposition can be computed in time O(M(n)).[3] This means, for example, that an O(n2.376) algorithm exists based on the Coppersmith–Winograd algorithm.
[edit] Sparse matrix decomposition
Special algorithms have been developed for factorizing large sparse matrices. These algorithms attempt to find sparse factors L and U. Ideally, the cost of computation is determined by the number of nonzero entries, rather than by the size of the matrix.
These algorithms use the freedom to exchange rows and columns to minimize fill-in (entries which change from an initial zero to a non-zero value during the execution of an algorithm).
General treatment of orderings that minimize fill-in can be addressed using graph theory.
[edit] Applications
[edit] Solving linear equations
Given a system of linear equations in matrix form
we want to solve the equation for x given A and b. Suppose we have already obtained the LUP decomposition of A such that
, (or the LU composition if one exists, in which case
) we can rewrite the equation equivalently as
In this case the solution is done in two logical steps:
- First, we solve the equation
for y; - Second, we solve the equation
for x.
Note that in both cases we have dealing with triangular matrices (L and U) which can be solved directly by forward and backward substitution without using the Gaussian elimination process (however we do need this process or equivalent to compute the LU decomposition itself).
The above procedure can be repeatedly applied to solve the equation multiple times for different b. In this case it is faster (and more convenient) to do an LU decomposition of the matrix A once and then solve the triangular matrices for the different b, rather than using Gaussian elimination each time. The matrices L and U could be thought to have "encoded" the Gaussian elimination process.
[edit] Inverting a matrix
When solving systems of equations, b is usually treated as a vector with a length equal to the height of matrix A. Instead of vector b, we have matrix B, where B is an n-by-p matrix, so that we are trying to find a matrix X (also a n-by-p matrix):
We can use the same algorithm presented earlier to solve for each column of matrix X. Now suppose that B is the identity matrix of size n. It would follow that the result X must be the inverse of A.[4]
[edit] Computing the determinant
Given the LUP decomposition
of a square matrix A, the determinant of A can be computed straightforwardly as
The second equation follows from the fact that the determinant of a triangular matrix is simply the product of its diagonal entries, and that the determinant of a permutation matrix is equal to (−1)S where S is the number of row exchanges in the decomposition.
The same method readily applies to LU decomposition by setting P to the identity matrix.
[edit] See also
[edit] References
- ^ Poole, David (2006), Linear Algebra: A Modern Introduction (2nd ed.), Canada: Thomson Brooks/Cole, ISBN 0-534-99845-3.
- ^ Golub, Gene H.; Van Loan, Charles F. (1996), Matrix Computations (3rd ed.), Baltimore: Johns Hopkins, ISBN 978-0-8018-5414-9.
- ^ J.R. Bunch and J.E. Hopcroft, Triangular factorization and inversion by fast matrix multiplication, Mathematics of Computation, 28 (1974) 231–236.
- ^ Matrix Computations. 3rd Edition, 1996. p121.
- Bau III, David; Trefethen, Lloyd N. (1997), Numerical linear algebra, Philadelphia: Society for Industrial and Applied Mathematics, ISBN 978-0-89871-361-9
- Cormen, Thomas H.; Leiserson, Charles E.; Rivest, Ronald L.; Stein, Clifford (2001), Introduction to Algorithms, MIT Press and McGraw-Hill, ISBN 978-0-262-03293-3
- Horn, Roger A.; Johnson, Charles R. (1985), Matrix Analysis, Cambridge University Press, ISBN 0-521-38632-2. See Section 3.5.
- Householder, Alston (1975), The Theory of Matrices in Numerical Analysis.
- Okunev, Pavel; Johnson, Charles (1997), Necessary And Sufficient Conditions For Existence of the LU Factorization of an Arbitrary Matrix, arXiv:math.NA/0506382.
- Press, WH; Teukolsky, SA; Vetterling, WT; Flannery, BP (2007), "Section 2.3", Numerical Recipes: The Art of Scientific Computing (3rd ed.), New York: Cambridge University Press, ISBN 978-0-521-88068-8, http://apps.nrbook.com/empanel/index.html?pg=48
[edit] External links
References
- LU decomposition on MathWorld.
- LU decomposition on Math-Linux.
- Module for LU Factorization with Pivoting, Prof. J. H. Mathews, California State University, Fullerton
- LU decomposition at Holistic Numerical Methods Institute
- LU matrix factorization. MATLAB reference.
Computer code
- 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.
- C++ code, Prof. J. Loomis, University of Dayton
- C code, Mathematics Source Library
- LU in X10
Online resources
- WebApp descriptively solving systems of linear equations with LU Decomposition
- Matrix Calculator, bluebit.gr
- LU Decomposition Tool, uni-bonn.de
- LU Decomposition by Ed Pegg, Jr., The Wolfram Demonstrations Project, 2007.
|
||||||||||||||























has a nonzero entry in its first row, then take a permutation matrix
such that
has a nonzero entry in its upper left corner. Otherwise, take for
.
be the matrix that one gets from
by deleting both the first row and the first column. Decompose
recursively. Make
from
by first adding a zero row above and then adding the first column of
from
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
from
in a similar manner and define
. Let
be the inverse of
.
is the same as
, except (possibly) at the first row. If the first row of
, since both have first row zero, and
follows, as desired. Otherwise,
for some upper triangular square matrix
with ones on the diagonal (
is a decomposition of the desired form.

for y;
for x.
