Find the Inverse [[0,1,2],[1,0,3],[4,-3,8]]
Problem
Solution
Set up the augmented matrix by placing the identity matrix
I to the right of the given matrixA
Swap the first and second rows to get a leading
1 in the first column.
Eliminate the
4 in the third row by performing the row operation(R_3)−4*(R_1)⇒(R_3)
Eliminate the
−3 in the third row by performing the row operation(R_3)+3*(R_2)⇒(R_3)
Normalize the third row by dividing by
2 ((R_3)/2⇒(R_3) .
Eliminate the
2 in the second row by performing(R_2)−2*(R_3)⇒(R_2)
Eliminate the
3 in the first row by performing(R_1)−3*(R_3)⇒(R_1)
Final Answer
Want more problems? Check here!