Find the Inverse of the Resulting Matrix [[1,0],[0,1]][[1,3],[-2,5]]
Problem
Solution
Multiply the matrices. Since the first matrix is the identity matrix
I the product is simply the second matrix.
Calculate the determinant of the resulting matrix
A=[[a,b],[c,d]] using the formuladet(A)=a*d−b*c
Apply the inverse formula for a
2×2 matrix, which isA(−1)=1/det(A)*[[d,−b],[−c,a]]
Distribute the scalar factor into the matrix to find the final form.
Final Answer
Want more problems? Check here!