Find the Inverse [[1,0,-2],[-3,1,4],[2,-3,4]]
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)+3*(R_1) and(R_3)←(R_3)−2*(R_1)
Eliminate the entry in the second column below the pivot by performing the row operation
(R_3)←(R_3)+3*(R_2)
Normalize the third row to create a pivot of 1 by performing the row operation
(R_3)←1/2*(R_3)
Eliminate the entries in the third column above the pivot by performing row operations
(R_1)←(R_1)+2*(R_3) and(R_2)←(R_2)+2*(R_3)
Identify the resulting matrix on the right side as the inverse
A(−1)
Final Answer
Want more problems? Check here!