Find the Inverse [[1,0,0],[2,4,0],[1,-1,1]]
Problem
Solution
Set up the augmented matrix by placing the identity matrix
I to the right of the given matrixA
Eliminate the entries below the first pivot in the first column by performing row operations
(R_2)←(R_2)−2*(R_1) and(R_3)←(R_3)−(R_1)
Normalize the second row by dividing
(R_2) by4 to create a pivot of1
Eliminate the entry below the second pivot by performing the row operation
(R_3)←(R_3)+(R_2)
Identify the inverse matrix from the right side of the augmented matrix now that the left side is the identity matrix.
Final Answer
Want more problems? Check here!