

InterviewSolution
Saved Bookmarks
1. |
Find the co-factors of the elements of matrices :\( \begin{bmatrix}-1&2 \\[0.3em]-3 & 4 \\[0.3em]\end{bmatrix}\)[-1,2,-3,4] |
Answer» Let A = [-1,2,-3,4] \( \begin{bmatrix} -1&2 \\[0.3em] -3 & 4 \\[0.3em] \end{bmatrix} \) Here, a11 = -11,M11 = 4 ∴ A11 = (-1)1+1(4) = 4 a12 = 2, M12 = -3 ∴ A12 = (-1)1+2(- 3) = 3 a21 = – 3, M21 = -2 ∴ A21 = (- 1)2+1(2) = -2 a22 = 4, M22 = -1 ∴ A22 = (-1)2+2(-1) = -1. |
|