Here is the system that ``broke" LU factorization for us.
A = [ 2 0 4 3; -2 0 2 -13 ; 1 15 2 -4.5 ; -4 5 -7 -10 ];
b = [ 4; 40; 29; 9 ];
When we use the built-in lu function with three outputs, we get the elements of the PLU factorization.
[L,U,P] = lu(A)
L =
1.0000e+00 0 0 0 -2.5000e-01 1.0000e+00 0 0 5.0000e-01 -1.5385e-01 1.0000e+00 0 -5.0000e-01 1.5385e-01 8.3333e-02 1.0000e+00
U =
-4.0000e+00 5.0000e+00 -7.0000e+00 -1.0000e+01 0 1.6250e+01 2.5000e-01 -7.0000e+00 0 0 5.5385e+00 -9.0769e+00 0 0 0 -1.6667e-01
P =
0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0
We can solve this as before by incorporating the permutation.
x = backsub( U, forwardsub(L,P*b) )
x =
-3.0000e+00 1.0000e+00 4.0000e+00 -2.0000e+00
However, if we use just two outputs with lu, we get as the first result.
[PtL,U] = lu(A)
PtL =
-5.0000e-01 1.5385e-01 8.3333e-02 1.0000e+00 5.0000e-01 -1.5385e-01 1.0000e+00 0 -2.5000e-01 1.0000e+00 0 0 1.0000e+00 0 0 0
U =
-4.0000e+00 5.0000e+00 -7.0000e+00 -1.0000e+01 0 1.6250e+01 2.5000e-01 -7.0000e+00 0 0 5.5385e+00 -9.0769e+00 0 0 0 -1.6667e-01
MATLAB has engineered the backslash so that systems with triangular or permuted triangular structure are solved with the appropriate style of triangular substitution.
x = U \ (PtL\b)
x =
-3.0000e+00 1.0000e+00 4.0000e+00 -2.0000e+00
The pivoted factorization and triangular substitutions are done silently and automatically when backslash is called on the original matrix.
x = A\b
x =
-3.0000e+00 1.0000e+00 4.0000e+00 -2.0000e+00