Subsection 5.3.3 LU factorization with partial pivoting
¶fit widthHaving 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 computevector 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
[A,p]:=LUpivA,
where upon completion A has been overwritten by {L∖U}, 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:=A22−l21aT12.
(A00a01A020α11aT120a21A22)
where A00 is upper triangular. If no pivoting was added one would compute l21:=a21/α11 followed by the update
(A00a01A020α11aT120a21A22):=(I000100−l21I)(A00a01A020α11aT120a21A22)=(A00a01A020α11aT1200A22−l21aT12).
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):=(I000100−l21I)(A00a01A020α11aT120a21A22) =(A00a01A020α11aT1200A22−l21aT12).
[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:=A22−a21aT12 (ATLATRABLABR)←(A00a01A02aT10α11aT12A20a21A22),(pTpB)←(p0π1p2)endwhile
Ln−1Pn−1⋯L0P0A=U
or, equivalently,
A=PT0L−10⋯PTn−1L−1n−1U.
Actually, since Pk=(Ik×k00˜P(π)) for some π , we know that PTk=Pk and hence
A=P0L−10⋯Pn−1L−1n−1U.
What we will finally show is that there are Gauss transforms L⋆0,…L⋆n−1 such that
A=P0⋯Pn−1L⋆0⋯L⋆n−1⏟LU
or, equivalently,
˜P(p)A=Pn−1⋯P0A=L⋆0⋯L⋆n−1⏟LU,
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)