What is the inverse of the matrix A = [[1, 2], [3, 4]]?

Practice Questions

1 question
Q1
What is the inverse of the matrix A = [[1, 2], [3, 4]]?
  1. [[4, -2], [-3, 1]]
  2. [[-2, 1], [1.5, -0.5]]
  3. [[-2, 1], [1.5, -0.5]]
  4. [[2, -1], [-1.5, 0.5]]

Questions & Step-by-step Solutions

1 item
Q
Q: What is the inverse of the matrix A = [[1, 2], [3, 4]]?
Solution: The inverse of A is (1/det(A)) * adj(A) = (1/-2) * [[4, -2], [-3, 1]] = [[-2, 1], [1.5, -0.5]].
Steps: 6

Related Questions