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