1. Find the rank of a matrix requiring row reduction
Problem
Start with the given matrix and perform row reduction to identify pivot columns.
Eliminate below the first pivot using .
Swap rows to put a non-zero entry in position (2,2) using .
The matrix is now in row echelon form with pivot entries in positions (1,1) and (2,2).
Count the pivots: 2 pivot columns.
Answer:
Row reduction reveals that only two columns have pivot positions, corresponding to two linearly independent rows. The third row becomes zero, indicating linear dependence. Thus the rank is 2.