Simplify the Matrix [[0,3,-1,1],[1,5,-1,-4],[-3,6,2,11]]
Problem
Solution
Swap rows to place a leading
1 in the first row by moving the second row to the top.
Eliminate the entry in the first column of the third row by adding
3 times the first row to the third row ((R_3)←(R_3)+3*(R_1) .
Normalize the second row by dividing it by
3 to create a leading1 ((R_2)←1/3*(R_2) .
Eliminate the entry in the second column of the third row by subtracting
21 times the second row from the third row ((R_3)←(R_3)−21*(R_2) .
Normalize the third row by dividing it by
6 ((R_3)←1/6*(R_3) .
Eliminate the entries above the leading
1 in the third column by adding1/3*(R_3) to(R_2) and adding(R_3) to(R_1)
Eliminate the entry above the leading
1 in the second column by subtracting5 times the second row from the first row ((R_1)←(R_1)−5*(R_2) .
Final Answer
Want more problems? Check here!