LINEAR-ALGEBRA ยท Unit 4 ยท Video 2 ยท Interactive Practice
| Formula | Name | Description |
|---|---|---|
| LU Factorization | Lower triangular times upper triangular | |
| Multiplier | Entry to eliminate divided by the pivot | |
| : ones on diagonal, multipliers below | Structure of | comes free from elimination |
| LDU form | holds pivots; both and have ones on diagonal |
Each elimination step hollows out below the diagonal, and the multiplier it uses drops straight into .
๐ก Because stores exactly the row operations, replays them and rebuilds โ the factorization is elimination run backward.
Multiplying the 's forward breeds a cross-term at ; multiplying their inverses back gives a clean .
Pull the pivots out of into a diagonal , leaving and both with ones on the diagonal.
๐ก When is symmetric, and the factorization collapses to the elegant .
Question 1
Given the matrix , what is the elimination multiplier ?
โ Correct! The multiplier is .
โ Not quite. Remember: the multiplier is the entry to eliminate divided by the pivot above it: .
Solution:
The multiplier is the entry to eliminate divided by the pivot:
The multiplier is 2. We subtract 2 times row 1 from row 2 to produce a zero below the pivot.
Question 2
In the LU factorization , the diagonal entries of are always:
โ Correct! always has ones on its diagonal โ the multipliers sit below the diagonal, and the pivots live in .
โ Not quite. Think about the structure of : it's the product of inverse elimination matrices, each of which has ones on its diagonal.
Solution:
is lower triangular with ones on the diagonal and the elimination multipliers below:
Question 3
True or False: When multiplying elimination matrices , a parasitic cross-term can appear in position . But multiplying their inverses in reverse order avoids this cross-term and produces a clean matrix.
โ Correct! The inverse product avoids cross-terms โ that's exactly why we define as the product of inverse elimination matrices, and why the multipliers slot directly into .
โ Not quite. Try Visualization 2 above with non-zero multipliers and compare the (3,1) entry in both products.
Solution: True
When computing , the entry in multiplies the entry in , creating a cross-term in position :
But multiplying the inverses in the correct order avoids this entirely:
No cross-term โ each multiplier sits cleanly in its natural position. This is because each inverse only modifies a row that later inverses don't touch.
Question 4
Given and , what is ?
โ Correct! Row 2 of : .
โ Not quite. Remember: each entry of is a dot product of a row of with a column of . Check position :
Solution:
Multiply row by row:
Row 1:
Row 2:
Common mistakes:
Solved: 0 / 4