Find the Inverse [[1,0,-3],[2,-2,1],[0,-1,3]]
Problem
Solution
Set up the augmented matrix by placing the identity matrix
I to the right of the given matrixA
Eliminate the first entry in the second row by performing the row operation
(R_2)←(R_2)−2*(R_1)
Swap the second and third rows to make the calculations easier, then multiply the new second row by
−1 to get a leading 1.
Eliminate the entry in the third row, second column by performing
(R_3)←(R_3)+2*(R_2)
Eliminate the entries in the third column of the first and second rows by performing
(R_1)←(R_1)+3*(R_3) and(R_2)←(R_2)+3*(R_3)
Identify the resulting matrix on the right side as the inverse.
Final Answer
Want more problems? Check here!