Question:medium

If \( A = \begin{bmatrix} 0 & 1 & 2 \\ 1 & 2 & 3 \\ 3 & 1 & 1 \end{bmatrix} \), then \( A^{-1} \) is:

Show Hint

To find the inverse of a matrix, first compute its determinant, then find the adjoint, and use the formula \( A^{-1} = \frac{1}{\text{det}(A)} \cdot \text{adj}(A) \).
Updated On: Mar 28, 2026
  • \[ \frac{1}{2} \begin{bmatrix} -1 & -1 & -1 \\ -8 & 6 & -1 \\ 5 & -3 & 1 \end{bmatrix} \]
  • \[ \begin{bmatrix} 1 & -1 & -1 \\ 2 & -3 & 2 \\ -4 & -3 & -1 \end{bmatrix} \]
  • \[ \frac{1}{2} \begin{bmatrix} 1 & -1 & 5 \\ -6 & 3 & -1 \\ 1 & 2 & -1 \end{bmatrix} \]
  • \[ \begin{bmatrix} -1 & -1 & -2 \\ 1 & -6 & 3 \\ 5 & -3 & 1 \end{bmatrix} \]
Show Solution

The Correct Option is A

Solution and Explanation

The inverse of a 3x3 matrix \( A \) is computed using the formula: \[ A^{-1} = \frac{1}{\text{det}(A)} \cdot \text{adj}(A) \] Step 1: Determinant Calculation For matrix \[ A = \begin{bmatrix} 0 & 1 & 2 \\ 1 & 2 & 3 \\ 3 & 1 & 1 \end{bmatrix}, \] its determinant is: \[ \text{det}(A) = 0 \times \begin{vmatrix} 2 & 3 \\ 1 & 1 \end{vmatrix} - 1 \times \begin{vmatrix} 1 & 3 \\ 3 & 1 \end{vmatrix} + 2 \times \begin{vmatrix} 1 & 2 \\ 3 & 1 \end{vmatrix} \] \[ \text{det}(A) = 0 - 1 \times (-8) + 2 \times (-5) = 8 - 10 = -2 \] Step 2: Adjoint Calculation The adjoint \( \text{adj}(A) \) is the transpose of the cofactor matrix. The calculated adjoint is: \[ \text{adj}(A) = \begin{bmatrix} -1 & -1 & -1 \\ -8 & 6 & -1 \\ 5 & -3 & 1 \end{bmatrix} \] Step 3: Inverse Computation Applying the inverse formula yields: \[ A^{-1} = \frac{1}{-2} \times \begin{bmatrix} -1 & -1 & -1 \\ -8 & 6 & -1 \\ 5 & -3 & 1 \end{bmatrix} = \frac{1}{2} \begin{bmatrix} -1 & -1 & -1 \\ -8 & 6 & -1 \\ 5 & -3 & 1 \end{bmatrix} \] Result: The inverse matrix is: \[ A^{-1} = \frac{1}{2} \begin{bmatrix} -1 & -1 & -1 \\ -8 & 6 & -1 \\ 5 & -3 & 1 \end{bmatrix} \]
Was this answer helpful?
0