Skip to main content

Subsection 5.3.3 LU factorization with partial pivoting

fit width

Having introduced our notation for permutation matrices, we can now define the LU factorization with partial pivoting: Given an m×n matrix A, we wish to compute

  • vector p of n integers that indicates how rows are pivoting as the algorithm proceeds,

  • a unit lower trapezoidal matrix L, and

  • an upper triangular matrix U

so that ˜P(p)A=LU. We represent this operation by

[A,p]:=LUpivA,

where upon completion A has been overwritten by {LU}, which indicates that U overwrites the upper triangular part of A and L is stored in the strictly lower triangular part of A.

Let us start with revisiting the derivation of the right-looking LU factorization in Subsection 5.2.2. The first step is to find a first permutation matrix ˜P(π1) such that the element on the diagonal in the first column is maximal in value. (Mathematically, any nonzero value works. We will see that ensuring that the multiplier is less than one in magnitude reduces the potential for accumulation of error.) For this, we will introduce the function

maxi(x)

which, given a vector x, returns the index of the element in x with maximal magnitude (absolute value). The algorithm then proceeds as follows:

  • Partition A, L as follows:

    A(α11aT12a21A22),andL(10l21L22)
  • Compute π1=maxi(α11a21).

  • Permute the rows: (α11aT12a21A22):=˜P(π1)(α11aT12a21A22).

  • Compute l21:=a21/α11.

  • Update A22:=A22l21aT12.

This completes the introduction of zeroes below the diagonal of the first column.

Now, more generally, assume that the computation has proceeded to the point where matrix A has been overwritten by

(A00a01A020α11aT120a21A22)

where A00 is upper triangular. If no pivoting was added one would compute l21:=a21/α11 followed by the update

(A00a01A020α11aT120a21A22):=(I000100l21I)(A00a01A020α11aT120a21A22)=(A00a01A020α11aT1200A22l21aT12).

Now, instead one performs the steps

  • Compute

    π1:=maxi(α11a21).
  • Permute the rows:

    (A00a01A020α11aT120a21A22):=(I00˜P(π1))(A00a01A020α11aT120a21A22)
  • Update

    l21:=a21/α11.
  • Update

    (A00a01A020α11aT120a21A22):=(I000100l21I)(A00a01A020α11aT120a21A22)     =(A00a01A020α11aT1200A22l21aT12).

This algorithm is summarized in Figure 5.3.3.1. In that algorithm, the lower triangular matrix L is accumulated below the diagonal.

[A,p]=LUpiv-right-looking(A)A(ATLATRABLABR),p(pTpB)   ATL is 0×0,pT has 0 elementswhile n(ATL)<n(A)   (ATLATRABLABR)(A00a01A02aT10α11aT12A20a21A22),(pTpB)(p0π1p2)   π1:=maxi(α11a21)(A00a01A02aT10α11aT12A20a21A22):=(I00P(π1))(A00a01A02aT10α11aT12A20a21A22)a21:=a21/α11A22:=A22a21aT12   (ATLATRABLABR)(A00a01A02aT10α11aT12A20a21A22),(pTpB)(p0π1p2)endwhile
Figure 5.3.3.1. Right-looking LU factorization algorithm with partial pivoting.

fit width

What this algorithm computes is a sequence of Gauss transforms L0,,Ln1 and permutations P0,,Pn1 such that

Ln1Pn1L0P0A=U

or, equivalently,

A=PT0L10PTn1L1n1U.

Actually, since Pk=(Ik×k00˜P(π)) for some π , we know that PTk=Pk and hence

A=P0L10Pn1L1n1U.

What we will finally show is that there are Gauss transforms L0,Ln1 such that

A=P0Pn1L0Ln1LU

or, equivalently,

˜P(p)A=Pn1P0A=L0Ln1LU,

which is what we set out to compute.

Here is the insight. If only we know how to order the rows of A and right-hand side b correctly, then we would not have to pivot. But we only know how to pivot as the computation unfolds. Recall that the multipliers can overwrite the elements they zero in Gaussian elimination and do so when we formulate it as an LU factorization. By not only pivoting the elements of

(α11aT12a21A22)

but also all of

(aT10α11aT12A20a21A22),

we are moving the computed multipliers with the rows that are being swapped. It is for this reason that we end up computing the LU factorization of the permuted matrix: ˜P(p)A.

Homework 5.3.3.1.

Implement the algorithm given in Figure 5.3.3.1 as

function [ A_out ] = LUpiv_right_looking( A )

by completing the code in Assignments/Week05/matlab/LUpiv_right_looking.m. Input is an m×n matrix A. Output is the matrix A that has been overwritten by the LU factorization and pivot vector p. You may want to use Assignments/Week05/matlab/test_LUpiv_right_looking.m to check your implementation.

The following utility functions may come in handy:

which we hope are self explanatory.

Solution

See Assignments/Week05/answers/LUpiv_right_looking.m. (Assignments/Week05/answers/LUpiv_right_looking.m)