Find Reduced Row Echelon Form [[2,0,6],[-3,5,-19],[4,1,10],[1,-2,7]]
Problem
Solution
Swap the first and fourth rows to get a
1 in the pivot position of the first row.
Eliminate the entries below the first pivot by performing
(R_2)+3*(R_1)→(R_2) (R_3)−4*(R_1)→(R_3) and(R_4)−2*(R_1)→(R_4)
Normalize the second row by multiplying by
−1 to create a leading1
Eliminate the entries above and below the second pivot by performing
(R_1)+2*(R_2)→(R_1) (R_3)−9*(R_2)→(R_3) and(R_4)−4*(R_2)→(R_4)
Final Answer
Want more problems? Check here!