Find the Inverse [[2,3,3],[3,2,3],[0,1,4]]
Problem
Solution
Calculate the determinant of the matrix
A using cofactor expansion along the first column.
Find the matrix of minors by calculating the determinant of the
2×2 matrix remaining when the row and column of each element are removed.
Apply the cofactor signs using the pattern of alternating signs to create the cofactor matrix
C
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!