Find the Inverse [[-2,3,5],[6,-1,0],[4,2,1]]
Problem
Solution
Calculate the determinant of the matrix
A using cofactor expansion along the second row.
Find the matrix of minors by calculating the determinant of the
2×2 matrix remaining after removing the row and column of each element.
Apply the cofactor signs using the pattern
+−+ −+− +−+ to create the matrix of cofactorsC
Transpose the cofactor matrix to find the adjugate matrix
adj(A)
Multiply by the reciprocal of the determinant to find the inverse matrix
A(−1)=1/det(A)*adj(A)
Final Answer
Want more problems? Check here!