Find the Inverse [[1,-4,2],[-2,8,-9],[-1,7,0]]
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 first pivot by performing row operations
(R_2)←(R_2)+2*(R_1) and(R_3)←(R_3)+(R_1)
Swap
(R_2) and(R_3) to bring a non-zero value into the second pivot position.
Normalize the second and third rows by dividing
(R_2) by3 and(R_3) by−5
Eliminate the entries above the third pivot by performing
(R_2)←(R_2)−2/3*(R_3) and(R_1)←(R_1)−2*(R_3)
Eliminate the entry above the second pivot by performing
(R_1)←(R_1)+4*(R_2)
Final Answer
Want more problems? Check here!