Find the Inverse [[1,2,3],[2,5,3],[1,0,8]]
Problem
Solution
Set up the augmented matrix by placing the identity matrix
I to the right of the given matrixA
Eliminate the entries in the first column below the pivot by performing row operations
(R_2)←(R_2)−2*(R_1) and(R_3)←(R_3)−(R_1)
Eliminate the entry in the second column below the second pivot by performing
(R_3)←(R_3)+2*(R_2)
Normalize the third row by multiplying by
−1 performing(R_3)←−(R_3)
Eliminate the entries in the third column above the third pivot by performing
(R_2)←(R_2)+3*(R_3) and(R_1)←(R_1)−3*(R_3)
Eliminate the entry in the second column above the first pivot by performing
(R_1)←(R_1)−2*(R_2)
Final Answer
Want more problems? Check here!