Question

Difficulty: MediumMatrices and Determinants

Which of the following is the inverse of the matrix M=(5273)M = \begin{pmatrix} 5 & 2 \\ 7 & 3 \end{pmatrix}?

  1. (3275)\begin{pmatrix} 3 & -2 \\ -7 & 5 \end{pmatrix}Answer
  2. B
    (3275)\begin{pmatrix} 3 & 2 \\ 7 & 5 \end{pmatrix}
  3. C
    (5273)\begin{pmatrix} -5 & 2 \\ 7 & -3 \end{pmatrix}
  4. D
    (5723)\begin{pmatrix} 5 & 7 \\ 2 & 3 \end{pmatrix}

Answer

(3275)\begin{pmatrix} 3 & -2 \\ -7 & 5 \end{pmatrix}
For any non-singular 2x2 matrix (abcd)\begin{pmatrix} a & b \\ c & d \end{pmatrix}, the inverse is 1adbc(dbca)\frac{1}{ad - bc}\begin{pmatrix} d & -b \\ -c & a \end{pmatrix}. Here, adbc=(5)(3)(2)(7)=1ad - bc = (5)(3) - (2)(7) = 1, so the inverse matrix is (3275)\begin{pmatrix} 3 & -2 \\ -7 & 5 \end{pmatrix}.

Step-by-Step Solution

1
Calculate the determinant of matrix M
\det(M) = (5)(3) - (2)(7) = 15 - 14 = 1
For a 2x2 matrix M=(abcd)M = \begin{pmatrix} a & b \\ c & d \end{pmatrix}, the determinant is given by det(M)=adbc\det(M) = ad - bc.
2
Find the adjugate matrix of M
\text{adj}(M) = \begin{pmatrix} 3 & -2 \\ -7 & 5 \end{pmatrix}
The adjugate of a 2x2 matrix is obtained by swapping the main diagonal elements (aa and dd) and negating the off-diagonal elements (bb and cc).
3
Apply the matrix inverse formula
M^{-1} = \frac{1}{\det(M)} \text{adj}(M) = \frac{1}{1}\begin{pmatrix} 3 & -2 \\ -7 & 5 \end{pmatrix} = \begin{pmatrix} 3 & -2 \\ -7 & 5 \end{pmatrix}
Multiplying the adjugate matrix by the reciprocal of the determinant gives the exact inverse matrix.

Key Concept

Inverse of a 2x2 Matrix
Rate this question