Find Reduced Row Echelon Form [[5,1,4],[1,0,5],[0,1,1]]
Problem
Solution
Swap rows to place a 1 in the top-left position by moving the second row to the first row.
Eliminate the first element of the second row by performing the row operation
(R_2)−5*(R_1)⇒(R_2)
Eliminate the second element of the third row by performing the row operation
(R_3)−(R_2)⇒(R_3)
Normalize the third row by dividing it by 22 to create a leading 1.
Eliminate the third element of the second row by performing the row operation
(R_2)+21*(R_3)⇒(R_2)
Eliminate the third element of the first row by performing the row operation
(R_1)−5*(R_3)⇒(R_1)
Final Answer
Want more problems? Check here!