Jump to content

LU factorization

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by 81.241.41.135 (talk) at 19:35, 18 February 2004. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

LU factorization is a method for decomposing an matrix into the product of a lower triangular matrix and an upper triangular matrix ,

For a matrix, this becomes:

This gives three types of equations

This gives equations for unknowns (the decomposition is not unique), and can be solved using Crout's method. To solve the matrix equation

first solve for . This can be done by forward substitution

for i=2,...,N. Then solve for . This can be done by back substitution

for i=N-1,...,1