Find Reduced Row Echelon Form [[1,2],[2,-2]]
Problem
Solution
Identify the first pivot in the first row, which is already
1 at position(1,1) Eliminate the entry below the first pivot by performing the row operation
(R_2)⇒(R_2)−2*(R_1)
Normalize the second row to create a pivot of
1 at position(2,2) by performing(R_2)⇒−1/6*(R_2)
Eliminate the entry above the second pivot by performing the row operation
(R_1)⇒(R_1)−2*(R_2)
Final Answer
Want more problems? Check here!