Question:

Let
\[ A = \begin{bmatrix} 0 & 0 & -1 \\ 0 & -1 & 0 \\ -1 & 0 & 0 \end{bmatrix}. \]
Which of the following is true?

Show Hint

When verifying properties of matrices, compute powers or transposes explicitly to check conditions.
Updated On: Jan 10, 2025
  • \( A \) is a null matrix
  • \( A \) is skew-symmetric
  • \( A^{-1} \) does not exist
  • \( A^2 = I \)
Hide Solution
collegedunia
Verified By Collegedunia

The Correct Option is D

Solution and Explanation

1. Compute \( A^2 \):

\[ A^2 = A \cdot A = \begin{bmatrix} 0 & 0 & -1 \\ 0 & -1 & 0 \\ -1 & 0 & 0 \end{bmatrix} \cdot \begin{bmatrix} 0 & 0 & -1 \\ 0 & -1 & 0 \\ -1 & 0 & 0 \end{bmatrix}. \]

2. Perform matrix multiplication:

\[ A^2 = \begin{bmatrix} 1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1 \end{bmatrix} = I, \]

where \( I \) is the identity matrix.

3. Since \( A^2 = I \), this confirms the property \( A^2 = I \). The other options are incorrect:

  • \( A \) is not null.
  • \( A \) is not skew-symmetric (it does not satisfy \( A = -A^T \)).
  • \( A^{-1} \) exists because \( A^2 = I \implies A^{-1} = A \).
Was this answer helpful?
0
0