Question: Find the inverse of the matrix F = [[4, 7], [2, 6]]. (2021)
Options:
Correct Answer: [[3, -7], [-1, 4]]
Exam Year: 2021
Solution:
The inverse of F is given by (1/det(F)) * adj(F). Here, det(F) = 4*6 - 7*2 = 10, and adj(F) = [[6, -7], [-2, 4]]. Thus, F^(-1) = (1/10) * [[6, -7], [-2, 4]] = [[3/5, -7/10], [-1/5, 2/5]].