Question:medium

If \[ A = \begin{bmatrix} -1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1 \end{bmatrix}, \text{ then } A^{-1} \text{ is:} \]

Show Hint

For diagonal matrices, the inverse is simply the matrix with reciprocal diagonal elements.
Updated On: Feb 25, 2026
  • \( \begin{bmatrix} -1 & 0 & 0 \\ 0 & -1 & 0 \\ 0 & 0 & -1 \end{bmatrix} \)
  • \( \begin{bmatrix} 1 & 0 & 0 \\ 0 & -1 & 0 \\ 0 & 0 & -1 \end{bmatrix} \)
  • \( \begin{bmatrix} -1 & 0 & 0 \\ 0 & -1 & 0 \\ 0 & 0 & 1 \end{bmatrix} \)
  • \( \begin{bmatrix} -1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1 \end{bmatrix} \)
Show Solution

The Correct Option is D

Solution and Explanation

The inverse of a diagonal matrix is obtained by taking the reciprocal of each diagonal element. Given: \[ A = \begin{bmatrix} -1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1 \end{bmatrix} \] To compute \( A^{-1} \), we find the reciprocal of the diagonal entries. Therefore, \[ A^{-1} = \begin{bmatrix} \frac{1}{-1} & 0 & 0 \\ 0 & \frac{1}{1} & 0 \\ 0 & 0 & \frac{1}{1} \end{bmatrix} = \begin{bmatrix} -1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1 \end{bmatrix} \]
Was this answer helpful?
0