Find the Inverse [[1,2,3],[0,1,-1],[2,2,2]]
Problem
Solution
Set up the augmented matrix by placing the identity matrix
I to the right of the given matrixA
Eliminate the first element of the third row by performing the row operation
(R_3)→(R_3)−2*(R_1)
Eliminate the second element of the third row by performing the row operation
(R_3)→(R_3)+2*(R_2)
Normalize the third row by dividing by
−6 using the operation(R_3)→−1/6*(R_3)
Eliminate the elements above the pivot in the third column using
(R_2)→(R_2)+(R_3) and(R_1)→(R_1)−3*(R_3)
Eliminate the element above the pivot in the second column using
(R_1)→(R_1)−2*(R_2)
Final Answer
Want more problems? Check here!