Question: Find the inverse of the matrix D = [[4, 7], [2, 6]]. (2023)
Options:
Correct Answer: [[3/2, -7/4], [-1/2, 2/4]]
Exam Year: 2023
Solution:
The inverse of D is (1/det(D)) * adj(D) = (1/(4*6 - 7*2)) * [[6, -7], [-2, 4]] = [[3/2, -7/4], [-1/2, 2/4]].