Find Reduced Row Echelon Form [[1,0,1],[3,0,3],[0,1,-1],[3,1,2]]
Problem
Solution
Identify the first pivot in the first column, which is the
1 at(R_1) Eliminate the entries below the first pivot by performing row operations
(R_2)−3*(R_1)→(R_2) and(R_4)−3*(R_1)→(R_4)
Swap
(R_2) and(R_3) to move a non-zero row up and establish the second pivot in the second column.
Eliminate the entry below the second pivot by performing the row operation
(R_4)−(R_2)→(R_4)
Verify that the matrix is now in reduced row echelon form, as all pivots are
1 they are the only non-zero entries in their columns, and zero rows are at the bottom.
Final Answer
Want more problems? Check here!