Find Reduced Row Echelon Form [[1,5,-6],[1,6,5],[2,8,7]]
Problem
Solution
Identify the first pivot in the first column, which is already
1 at(R_1) Eliminate the entries below the first pivot by performing row operations
(R_2)→(R_2)−(R_1) and(R_3)→(R_3)−2*(R_1)
Identify the second pivot in the second column, which is
1 at(R_2) Eliminate the entries above and below the second pivot by performing
(R_1)→(R_1)−5*(R_2) and(R_3)→(R_3)+2*(R_2)
Normalize the third row to create the third pivot by performing
(R_3)→1/41*(R_3)
Eliminate the entries above the third pivot by performing
(R_1)→(R_1)+61*(R_3) and(R_2)→(R_2)−11*(R_3)
Final Answer
Want more problems? Check here!