e-Mathematics > Matrix Algebra

LU Factorization

Triangular Matrices. An matrix $ L$ is called a lower triangular matrix if all the “entries above the diagonal” are zeros, and an matrix $ U$ is called an upper triangular matrix if all the “entries below the diagonal” are zeros. For example,

$\displaystyle L = \begin{bmatrix}
1 & 0 & 0 & 0 \\
2 & -3 & 0 & 0 \\
1 & 4 & 2 & 0 \\
-1 & 1 & 3 & 1
\end{bmatrix}$    and $\displaystyle \quad
U = \begin{bmatrix}
4 & -1 & 3 & 2 \\
0 & 2 & 1 & -5 \\
0 & 0 & -1 & 9 \\
0 & 0 & 0 & 7
\end{bmatrix}
$

A lower and upper triangular matrix is called a diagonal matrix. The identity matrix $ I$ is a diagonal matrix.

When Elementary Matrices are triangular? Except for row operations of interchange, the elementary matrices of row operation are triangular.

  1. An elementary matrix $ E$ for adding a multiple of the $ i$-th row by $ k$ to the $ j$-th row is a lower triangular matrix if $ i < j$. It is an upper triangular matrix if $ i > j$.
  2. An elementary matrix $ E$ for multiplying the $ i$-th row by $ c$ is a diagonal matrix.

Properties of Triangular Matrices. Note that $ L$ and $ U$ are not necessarily square matrices. But if they are square, triangular matrices have the following properties:

  1. If both $ A$ and $ B$ are lower (or upper) triangular matrices, the product $ A B$ is also a lower (or an upper) triangular matrix.
  2. Let $ A$ be a lower (or an upper) triangular matrix. If all the diagonal entries $ a_{ii}$'s are nonzero, then (i) $ A$ is invertible and (ii) the inverse $ A^{-1}$ is also a lower (or an upper) triangular matrix.
EXAMPLE 1. Demonstrate each of the above properties using $ 3\times 3$ triangular matrices.

LU Factorization. If a matrix $ A$ (not necessarily square) is expressed as the product

$\displaystyle A = L U
$

of a lower triangular matrix $ L$ and an upper triangular matrix $ U$, it is called an LU factorization.


© TTU Mathematics