- Published on
Notes on Strang Lecture - 4
LU Transformation
A matrix as the product of a lower triangular matrix and an upper triangular matrix :
Basic example
Consider the matrix:
We can factorize this as:
Where:
- is the lower triangular matrix
- is the upper triangular matrix
Key property: multipliers in L
Important observation: If no row exchange is required during Gaussian elimination, the multipliers used in the elimination process go directly into the lower triangular matrix .
In the example above:
- To eliminate the entry , we use the multiplier
- This multiplier appears directly in position of matrix
- The diagonal entries of are always 1
General form
For an matrix , the LU decomposition has the form:
- is lower triangular with ones on the diagonal (the inverse of the elimination matrix)
- is upper triangular (the result from Gaussian elimination)