Question:medium

If \[ A = \begin{bmatrix} 2 & 0 & 0 \\ 0 & 3 & 0 \\ 0 & 0 & 4 \end{bmatrix} \quad \text{and} \quad B = \begin{bmatrix} 1 & 0 & 0 \\ 0 & -2 & 0 \\ 0 & 0 & -3 \end{bmatrix} \] then \( A^2 + B^2 = \underline{\hspace{2cm}} \)

Show Hint

Diagonal matrices are easiest — just operate element-wise!
Updated On: Apr 2, 2026
  • \( \begin{bmatrix} 5 & 0 & 0 \\ 0 & -1 & 0 \\ 0 & 0 & 7 \end{bmatrix} \)
  • \( \begin{bmatrix} 3 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1 \end{bmatrix} \)
  • \( \begin{bmatrix} 5 & 0 & 0 \\ 0 & 13 & 0 \\ 0 & 0 & 25 \end{bmatrix} \)
  • \( \begin{bmatrix} 3 & 0 & 0 \\ 0 & 5 & 0 \\ 0 & 0 & 7 \end{bmatrix} \)
Show Solution

The Correct Option is C

Solution and Explanation

Step 1: Understanding the Concept:
When dealing with diagonal matrices, the square of the matrix is simply the square of each diagonal element.
Step 2: Formula Application:
$A^2 = \text{diag}(2^2, 3^2, 4^2) = \text{diag}(4, 9, 16)$ $B^2 = \text{diag}(1^2, (-2)^2, (-3)^2) = \text{diag}(1, 4, 9)$
Step 3: Explanation:
Adding the corresponding elements: $A^2 + B^2 = \text{diag}(4+1, 9+4, 16+9) = \text{diag}(5, 13, 25)$.
Step 4: Final Answer:
The result is option (c).
Was this answer helpful?
0