Question: If D = [[4, 2], [1, 3]], find the inverse of D. (2022)
Options:
Correct Answer: [[3, -2], [-1, 4]]
Exam Year: 2022
Solution:
The inverse of D is given by (1/det(D)) * adj(D). Here, det(D) = (4*3) - (2*1) = 10, and adj(D) = [[3, -2], [-1, 4]]. Thus, D^(-1) = (1/10) * [[3, -2], [-1, 4]].