Find Reduced Row Echelon Form [[1,2,7],[2,1,8]]
Problem
Solution
Identify the first pivot in the first row, which is already
1 in the first column.Eliminate the entry below the first pivot by performing the row operation
(R_2)−2*(R_1)⇒(R_2)
Normalize the second row to create the second pivot by performing the row operation
−1/3*(R_2)⇒(R_2)
Eliminate the entry above the second pivot to reach reduced row echelon form by performing the row operation
(R_1)−2*(R_2)⇒(R_1)
Final Answer
Want more problems? Check here!