LINEAR-ALGEBRA Β· Unit 3 Β· Video 3 Β· Interactive Practice
| Formula | Name | Description |
|---|---|---|
| Gauss-Jordan Method | Append identity, row-reduce, read off inverse | |
| Elementary Matrices | Each row operation equals left-multiplication by an elementary matrix | |
| Inverse as Product | The inverse accumulates all row operations applied to | |
| Verification | Multiply to confirm the result is correct |
As the left block reduces to , every row operation is mirrored on the right block β which records them and becomes .
augmented matrix [A | I]
How does behave as the determinant shrinks toward zero?
π‘ When one row is a scalar multiple of the other, the rows are linearly dependent, forcing β and no inverse exists.
Each entry of is a row of dotted with a column of : the diagonal gives , off-diagonal gives .
Question 1
You are performing Gauss-Jordan elimination on where .
After the Gauss phase (forward elimination), the augmented matrix is:
What row operation completes the Jordan phase (backward elimination)?
β Correct! We subtract 3 times Row 2 from Row 1 to eliminate the 3 above the second pivot.
β Not quite. The Jordan phase creates zeros above pivots. The entry to eliminate is the 3 in position (1,2). Which operation zeros it out?
Solution:
The Jordan phase eliminates entries above each pivot. The second pivot is at position with value . The entry above it at position is .
To eliminate it:
Check each entry of the new Row 1:
Result:
The answer is R1 β R1 β 3Β·R2.
Question 2
True or False: If you encounter a zero in the pivot position during Gauss-Jordan elimination, the matrix must be singular (non-invertible).
β Correct! A zero pivot can often be fixed by swapping rows. The method fails only when no nonzero entry exists below the pivot in that column.
β Not quite. Think about what happens when you swap rows β can you sometimes fix a zero pivot?
Solution: False.
A zero in the pivot position does not mean the matrix is singular. You can swap rows to bring a nonzero entry into the pivot position β row swapping is a valid elementary row operation.
The matrix is singular only when no nonzero entry exists at or below the current pivot position in that column.
Example: has a zero at position , but swapping rows gives . This matrix is invertible β it is its own inverse!
Question 3
Find the inverse of using Gauss-Jordan elimination. What is ?
β Correct! . You can verify by multiplying .
β Not quite. Try setting up and carefully performing each row operation. Watch the signs closely!
Solution:
Set up :
Swap rows for a leading 1 pivot:
Gauss phase β :
Scale β :
Jordan phase β :
So .
Verify: β
Question 4
In Gauss-Jordan elimination on , suppose you stop after completing only the Gauss phase (forward elimination), leaving the left half in upper-triangular form. What does the right half represent at this point?
β Correct! The right half records all operations applied so far. After only forward elimination, it holds β not the full inverse.
β Not quite. The right half starts as and accumulates every row operation. After only the Gauss phase, the left half is upper-triangular, not β so the process isn't complete yet.
Solution:
After the Gauss phase, we have applied elementary matrices (the forward elimination steps) to both sides:
This is not the full inverse. The Jordan phase applies additional elementary matrices to finish reducing to . Only when the left half equals does the right half equal .
The correct answer is the product of the forward-elimination elementary matrices.
Solved: 0 / 4