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