LU Decomposition: A Step-by-Step Guide

15 min read
Mathematics
Linear Algebra
Matrix Decomposition

The LU decomposition, also known as the lower-upper decomposition, factorizes a matrix into the product of a lower triangular matrix (with elements only on or below the diagonal) and an upper triangular matrix (with elements only on or above the diagonal). This decomposition allows us to express a matrix AA as the product of two matrices, LL and UU, such that LU=AL \cdot U = A. The matrix L is lower triangular, and the matrix U is upper triangular.

(l0000l10l110l20l21l22)(u00u01u020u11u1200u22)=(a00a01a02a10a11a12a20a21a22)\begin{pmatrix} l_{00} & 0 & 0 \\ l_{10} & l_{11} & 0 \\ l_{20} & l_{21} & l_{22} \end{pmatrix} \begin{pmatrix} u_{00} & u_{01} & u_{02} \\ 0 & u_{11} & u_{12} \\ 0 & 0 & u_{22} \end{pmatrix} = \begin{pmatrix} a_{00} & a_{01} & a_{02} \\ a_{10} & a_{11} & a_{12} \\ a_{20} & a_{21} & a_{22} \end{pmatrix}

Let's work out a few steps for our 4×44\times 4 example:

For i=0i = 0 and j=0j = 0 you have l00=1l_{00} = 1, this is of course, the same for i,j=1,2,3i, j = 1, 2, 3.

u00=a00u_{00} = a_{00} u01=a01u_{01} = a_{01} u02=a02u_{02} = a_{02} u03=a03u_{03} = a_{03}

Something similar apply to get the first column of LL, the first element is l00=1l_{00} = 1 and then for j=1,2,3j = 1, 2, 3 you will have:

l10=a10a00l_{10} = \frac{a_{10}}{a_{00}} l20=a20a00l_{20} = \frac{a_{20}}{a_{00}} l30=a30a00l_{30} = \frac{a_{30}}{a_{00}}

The next elements you can calculate are u11u_{11}, l21l_{21} and l31l_{31} and they are:

u11=a11l10u01u_{11} = a_{11} - l_{10}u_{01} l21=a21l20u01u11l_{21} = \frac{a_{21} - l_{20} u_{01}}{u_{11}} l31=a31l30u01u11l_{31} = \frac{a_{31} - l_{30} u_{01}}{u_{11}}

Notice that by the time you need the values in the right side of the equations you already know them, so everything is in place so to speak, and you can go in a similar fashion for the rest of the unknowns variables.

If you follow the previous steps you know that is possible to write any matrix as product of two other matrices, but why is that useful? The point is actually to solve equations like the next one:

Ax=bA \cdot x = b

In this equation, AA is m×nm\times n matrix, xx is an n×1n\times 1 vector and bb a m×1m\times 1 vector. I'm going to use the operator (\cdot) indistinctly for the product between vectors and matrices or numbers. With the substitution A=LUA = L\cdot U, I can have the following equations:

Ax=(LU)x=L(Ux)=bA \cdot x = (L \cdot U) \cdot x = L \cdot (U \cdot x) = b Ly=bL \cdot y = b Ux=yU \cdot x = y

Now you have two sets of equations instead of one, but the advantage is that the solution of a triangular set of equations is much easier. Here is the general procedure to solve the previous equations and in the next section, I'll show you an example.

  • If i=ji = j; for i=0,1,2,n1i = 0, 1, 2, \dots n-1 and j=0,1,...,n1j = 0, 1, ..., n-1, set lij=1l_{ij} = 1
  • For j=0,1,2,n1j = 0, 1, 2, \dots n-1 do these two procedures:
    • first, for i=0,1,ji = 0, 1, \dots j and solve for uiju_{ij},
    • second, for i=j+1,j+2,n1i = j + 1, j + 2, \dots n-1 solve for lijl_{ij}.

The general solution for uiju_{ij} is:

uij=aijk=0i1likukju_{ij} = a_{ij} - \sum_{k = 0}^{i-1} l_{ik}\cdot u_{kj}

Similarly we can solve for lijl_{ij}:

lij=1ujj(aijk=0j1likukj)l_{ij} = \frac{1}{u_{jj}}\left(a_{ij} - \sum\limits_{k=0}^{j-1} l_{ik}\cdot u_{kj}\right)

The equation Ly=bL \cdot y = b can be solved by forward substitution as follows:

y0=b0l00y_{0} = \frac{b_0}{l_{00}}

yi=1lii(bij=0i1lijyj)i=1,2,,n1y_{i} = \frac{1}{l_{ii}}\left(b_{i} - \sum_{j = 0}^{i-1}l_{ij}\cdot y_{j} \right) \quad i = 1, 2,\dots, n-1

while Ux=yU \cdot x = y can then be solved by backsubstitution:

xn1=yn1un1,n1x_{n-1} = \frac{y_{n-1}}{u_{n-1, n-1}} xi=1uii(yij=i+1n1uijxj)i=n2,n3,,0x_{i} = \frac{1}{u_{ii}}\left(y_{i} - \sum_{j = i + 1}^{n-1} u_{ij}x_{j} \right) \quad i = n - 2, n - 3,\dots, 0

The previous xix_{i} were the solutions that we really wanted, but let's see an example that will illustrate everything better.

Example

Here is a system of equations, and your goal is to find the values of x0x_{0}, x1x_{1} and x2x_{2}.

(421314115)(x0x1x2)=(123)\begin{pmatrix} 4 & -2 & 1 \\ -3 & -1 & 4 \\ 1 & -1 & 5 \end{pmatrix} \begin{pmatrix} x_{0} \\ x_{1} \\ x_{2} \end{pmatrix} = \begin{pmatrix} 1 \\ 2 \\ 3 \end{pmatrix}

First, you can write the matrix, let's call it AA, as a product of the other two matrices LL and UU.

(l0000l10l110l20l21l22)(u00u01u020u11u1200u22)=(421314115)\begin{pmatrix} l_{00} & 0 & 0 \\ l_{10} & l_{11} & 0 \\ l_{20} & l_{21} & l_{22} \end{pmatrix} \begin{pmatrix} u_{00} & u_{01} & u_{02} \\ 0 & u_{11} & u_{12} \\ 0 & 0 & u_{22} \end{pmatrix} = \begin{pmatrix} 4 & -2 & 1 \\ -3 & -1 & 4 \\ 1 & -1 & 5 \end{pmatrix}

For the matrix LL, the elements lijl_{ij} are equal 1, if i=ji = j.

(100l1010l20l211)(u00u01u020u11u1200u22)=(421314115)\begin{pmatrix} 1 & 0 & 0 \\ l_{10} & 1 & 0 \\ l_{20} & l_{21} & 1 \end{pmatrix} \begin{pmatrix} u_{00} & u_{01} & u_{02} \\ 0 & u_{11} & u_{12} \\ 0 & 0 & u_{22} \end{pmatrix} = \begin{pmatrix} 4 & -2 & 1 \\ -3 & -1 & 4 \\ 1 & -1 & 5 \end{pmatrix}

At this point you already know the values u00u_{00}, u01u_{01} and u02u_{02}, they are:

I'm going to multiply the first row of LL with the first column of UU.

1u00+00+00=41\cdot u_{00} + 0\cdot 0 + 0\cdot 0 = 4

u00=4u_{00} = 4

The first row of LL with the second column of UU.

1u01+0u11+00=21\cdot u_{01} + 0\cdot u_{11} + 0\cdot 0 = -2 u01=2u_{01} = -2

And the first row of LL with the third column of UU.

1u02+0u12+0u22=11\cdot u_{02} + 0\cdot u_{12} + 0\cdot u_{22} = 1

u02=1u_{02} = 1

Now you can find the values of l10l_{10} and l20l_{20}. First, to find l10l_{10} you're going to multiply the second row of LL with the first column of UU,

l10u00+10+00=3l_{10} \cdot u_{00} + 1\cdot 0 + 0\cdot 0 = -3

4l10=34\cdot l_{10} = -3

l10=3/4l_{10} = -3/4

and to find l20l_{20}, you have to multiply the third row of LL and the first column of UU.

l20u00+l210+10=1l_{20} \cdot u_{00} + l_{21} \cdot 0 + 1\cdot 0 = 1

4l20=14\cdot l_{20} = 1

l20=1/4l_{20} = 1/4

You can go now for u11u_{11}, to do that, multiply the first row of LL and the second column of UU:

l10u01+1u11+00=1l_{10}\cdot u_{01} + 1\cdot u_{11} + 0 \cdot 0 = -1

u11=1l10u01u_{11} = -1 - l_{10}\cdot u_{01}

u11=5/2u_{11} = -5/2

You can find l21l_{21} now.

l20u01+l21u11=1l_{20}\cdot u_{01} + l_{21} \cdot u_{11} = -1

l21=(1l20u01)/u11l_{21} = (-1 - l_{20}\cdot u_{01})/u_{11}

l21=1/5l_{21} = 1/5

And finally for u12u_{12} and u22u_{22}.

l10u02+u12=4l_{10}\cdot u_{02} + u_{12} = 4

u12=4l10u02u_{12} = 4 - l_{10}\cdot u_{02}

u12=19/4u_{12} = 19/4

For u22u_{22}:

l20u02+l21u12+u22=5l_{20}\cdot u_{02} + l_{21} \cdot u_{12} + u_{22} = 5

u22=5l20u02l21u12u_{22} = 5 - l_{20}\cdot u_{02} - l_{21}\cdot u_{12}

u22=19/5u_{22} = 19/5

You can solve now Ly=bL\cdot y = b:

(1003/4101/41/51)(y0y1y2)=(123)\begin{pmatrix} 1 & 0 & 0 \\ -3/4 & 1 & 0 \\ 1/4 & 1/5 & 1 \end{pmatrix} \begin{pmatrix} y_{0} \\ y_{1} \\ y_{2} \end{pmatrix} = \begin{pmatrix} 1 \\ 2 \\ 3 \end{pmatrix}

Using forward substitution:

(y0y1y2)=(111/411/5)\begin{pmatrix} y_{0} \\ y_{1} \\ y_{2} \end{pmatrix} = \begin{pmatrix} 1 \\ 11/4 \\ 11/5 \end{pmatrix}

And now, with this y0y_{0}, y1y_{1}, y2y_{2} values, you can finally find the values x0x_{0}, x1x_{1} and x2x_{2} for Ux=yU\cdot x = y using backsubstitution.

(42105/219/40019/5)(x0x1x2)=(111/411/5)\begin{pmatrix} 4 & -2 & 1 \\ 0 & -5/2 & 19/4 \\ 0 & 0 & 19/5 \end{pmatrix} \begin{pmatrix} x_{0} \\ x_{1} \\ x_{2} \end{pmatrix} = \begin{pmatrix} 1 \\ 11/4 \\ 11/5 \end{pmatrix} (x0x1x2)=(2/19011/19)\begin{pmatrix} x_{0} \\ x_{1} \\ x_{2} \end{pmatrix} = \begin{pmatrix} 2/19 \\ 0 \\ 11/19 \end{pmatrix}