Simplify the Matrix
Problem
Solution
Swap rows to place a 1 in the top-left position for easier calculations. Swap
(R_1) and(R_3)
Eliminate the first column entries below the pivot. Perform
(R_2)−4*(R_1)⇒(R_2) (R_3)−3*(R_1)⇒(R_3) and(R_4)−2*(R_1)⇒(R_4)
Normalize the second row by dividing
(R_2) by 3.
Eliminate the second column entries below the pivot. Perform
(R_3)−2*(R_2)⇒(R_3) and(R_4)−7*(R_2)⇒(R_4)
Swap rows to move the zero row to the bottom. Swap
(R_3) and(R_4)
Normalize the third row by dividing
(R_3) by -35.
Eliminate the third column entries above the pivot. Perform
(R_2)−7*(R_3)⇒(R_2) and(R_1)+4*(R_3)⇒(R_1)
Eliminate the second column entry above the pivot. Perform
(R_1)−(R_2)⇒(R_1)
Final Answer
Want more problems? Check here!