Find the Inverse [[1,3,-1],[0,1,-4],[0,0,1]]
Problem
Solution
Set up the augmented matrix by placing the identity matrix
I to the right of the given matrixA
Eliminate the entry in the second row, third column by performing the row operation
(R_2)→(R_2)+4*(R_3)
Eliminate the entry in the first row, third column by performing the row operation
(R_1)→(R_1)+(R_3)
Eliminate the entry in the first row, second column by performing the row operation
(R_1)→(R_1)−3*(R_2)
Identify the inverse matrix from the right side of the augmented matrix.
Final Answer
Want more problems? Check here!