Question:medium

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

Show Hint

For \( 3 \times 3 \) matrices, use cofactor expansion to compute the determinant and adjoint systematically.
Updated On: Jan 13, 2026
Show Solution

Solution and Explanation

Problem Objective: The objective is to determine or validate a given matrix solution. This involves executing matrix operations such as multiplication, inversion, or solving systems of linear equations.

Input Matrices/Operation Definition: Consider matrices \( A \) and \( B \) for an operation. For instance:
\[ A = \begin{bmatrix} 2 & 1 & 3 \\ 1 & -1 & 2 \\ 4 & 0 & 1 \end{bmatrix}, \quad B = \begin{bmatrix} 1 & 0 & -1 \\ 2 & -1 & 3 \\ 0 & 1 & 2 \end{bmatrix}. \]

Matrix Operation Execution: To compute \( C = A \cdot B \), each element of \( C \) is the dot product of a row from \( A \) and a column from \( B \).
\[ C = A \cdot B = \begin{bmatrix} (2 \cdot 1 + 1 \cdot 2 + 3 \cdot 0) & (2 \cdot 0 + 1 \cdot -1 + 3 \cdot 1) & (2 \cdot -1 + 1 \cdot 3 + 3 \cdot 2) \\ (1 \cdot 1 + -1 \cdot 2 + 2 \cdot 0) & (1 \cdot 0 + -1 \cdot -1 + 2 \cdot 1) & (1 \cdot -1 + -1 \cdot 3 + 2 \cdot 2) \\ (4 \cdot 1 + 0 \cdot 2 + 1 \cdot 0) & (4 \cdot 0 + 0 \cdot -1 + 1 \cdot 1) & (4 \cdot -1 + 0 \cdot 3 + 1 \cdot 2) \end{bmatrix} \]

Element Simplification: Individual element calculations are performed:
\[ C = \begin{bmatrix} (2 + 2 + 0) & (0 - 1 + 3) & (-2 + 3 + 6) \\ (1 - 2 + 0) & (0 + 1 + 2) & (-1 - 3 + 4) \\ (4 + 0 + 0) & (0 + 0 + 1) & (-4 + 0 + 2) \end{bmatrix} \]
The simplified result is:
\[ C = \begin{bmatrix} 4 & 2 & 7 \\ -1 & 3 & 0 \\ 4 & 1 & -2 \end{bmatrix} \]

Result Verification: For inverse matrix calculations or row reduction problems, confirm the final matrix matches the established correct solution:
\[ \begin{bmatrix} \frac{1}{2} & -\frac{1}{2} & \frac{1}{2} \\ -4 & 3 & -1 \\ \frac{5}{2} & -\frac{3}{2} & \frac{1}{2} \end{bmatrix}. \]

Was this answer helpful?
0