LU decomposition
Definition 1
Let be an matrix. An LU decomposition (sometimes also called an LU factorization) of , if it exists, is an unit lower triangular matrix and an matrix U, in (upper) echelon form, such that
The LU factorization is closely related to the row reduction algorithm. In a very real sense, the factorization is a record of the steps taken in row reducing a matrix to echelon form. The matrix “encodes” the sequence of row replacement operations that row reduce the given matrix to echelon form .
Proposition 2
Suppose that is an LU factorization, and let denote the entries of . Then, the row reduction is accomplished by the following sequence of row replacement operations:
Note: the first steps clear out column , the next steps clear out column , etc.
Proposition 3
Not every matrix admits an LU factorization. Indeed, an LU factorization exists if and only if can be reduced to echelon without using row exchange operations. However, if an LU factorization exists, then it is unique.
In the most general case, one has to employ row exchange operations.
Proposition 4
Let be an matrix. Then, there exists an permutation matrix (indeed, many such) such that the matrix admits an LU factorization, i.e., there exist matrices such that
The key idea behind LU factorization is that one does not need to employ row scalings to do row reduction until the second half (the back-substitution phase) of the algorithm. This has significant implication for numerical stability of the algorithm.
The LU decomposition of a given matrix is useful for the solution of the systems of linear equations of the form . Indeed, it suffices to first solve the linear system , and second, to solve the system . This two-step procedure is easy to implement, because owing to the lower and upper-triangular nature of the matrices and , the required row operations are determined, more or less, directly from the entries of and . Indeed, the first step,
a sequence of row operations , and the second step
a sequence of row operations , are exactly the same row operations one has to perform to row reduce directly to reduced echelon form :
Note: is the particular solution of that sits in the rightmost colulmn of the augmented matrix at the termination of the row-reduction algorithm.
Title | LU decomposition |
---|---|
Canonical name | LUDecomposition |
Date of creation | 2013-03-22 12:06:37 |
Last modified on | 2013-03-22 12:06:37 |
Owner | rmilson (146) |
Last modified by | rmilson (146) |
Numerical id | 10 |
Author | rmilson (146) |
Entry type | Definition |
Classification | msc 65-00 |
Classification | msc 15-00 |
Synonym | LU factorization |
Synonym | LU-factorization |
Synonym | LU-decomposition |
Related topic | QRDecomposition |