Definition
Lower–Upper (LU) Factorization is a matrix decomposition technique where a square matrix is expressed as the product of two matrices:

where:

  • is a lower triangular matrix (with ones on its diagonal),
  • is an upper triangular matrix.

For certain matrices, permutation is required, and the factorization becomes:

where is a Permutation Matrix.

Intuition
LU factorization transforms a complex system into a simpler triangular form, facilitating efficient computation of solutions to linear systems via forward and backward substitution.

Key Properties

  1. Existence:

    • Not every matrix has an LU decomposition without permutation.
    • A sufficient condition for existence is that all leading principal minors of are nonzero.
  2. Uniqueness:

    • If can be factored as with having unit diagonal entries, the factorization is unique.
  3. Complexity:

    • LU decomposition has a computational complexity of for an matrix.
  4. Efficiency:

    • Once decomposed, solving reduces to solving two triangular systems:
      • Solve (forward substitution),
      • Solve (backward substitution).

Applications

  1. Solving Linear Systems:

    • LU factorization allows solving efficiently for multiple right-hand sides .
  2. Matrix Inversion:

    • The inverse of can be computed using by solving systems for columns of the identity matrix.
  3. Determinant Calculation:

    • The determinant of is the product of the diagonal entries of : (for , ).
  4. Numerical Analysis:

    • LU is a core method in numerical linear algebra, particularly in Gaussian elimination.

Examples

  1. For :

    • ,
    • .
    • Verify: .
  2. For :

    • Pivoting required, ,
    • , with computed and .