Find the Cofactor Matrix [[5,2],[4,3]]
Problem
Solution
Identify the matrix
A and its elements(a_i*j)
Calculate the minor
(M_11) by removing the first row and first column, then find the cofactor(C_11)=(−1)(1+1)*(M_11)
Calculate the minor
(M_12) by removing the first row and second column, then find the cofactor(C_12)=(−1)(1+2)*(M_12)
Calculate the minor
(M_21) by removing the second row and first column, then find the cofactor(C_21)=(−1)(2+1)*(M_21)
Calculate the minor
(M_22) by removing the second row and second column, then find the cofactor(C_22)=(−1)(2+2)*(M_22)
Assemble the cofactor matrix
C using the calculated values(C_i*j)
Final Answer
Want more problems? Check here!