Find Reduced Row Echelon Form [[-6,7],[2,6],[-4,1]]
Problem
Solution
Swap rows to place a smaller, more manageable number in the first row's pivot position. Swap
(R_1) and(R_2)
Normalize the first row by multiplying
(R_1) by1/2 to create a leading 1.
Eliminate entries below the first pivot by performing the row operations
(R_2)→(R_2)+6*(R_1) and(R_3)→(R_3)+4*(R_1)
Normalize the second row by multiplying
(R_2) by1/25 to create the second leading 1.
Eliminate entries above and below the second pivot by performing the row operations
(R_1)→(R_1)−3*(R_2) and(R_3)→(R_3)−13*(R_2)
Final Answer
Want more problems? Check here!