Simplify the Matrix
Problem
Solution
Swap rows to place a leading 1 in the first column of the first row. Swap
(R_1) and(R_4)
Eliminate the entry in the second row, first column by performing
(R_2)−(R_1)→(R_2)
Eliminate the entry in the third row, second column by performing
(R_3)−(R_2)→(R_3)
Eliminate the entry in the fourth row, second column by performing
(R_4)−(R_2)→(R_4)
Eliminate the entry in the fourth row, third column by performing
(R_4)−2*(R_3)→(R_4)
Eliminate the entry in the third row, fourth column by performing
(R_3)−(R_4)→(R_3) to reach Reduced Row Echelon Form.
Final Answer
Want more problems? Check here!