Solveeit Logo

Question

Question: If M and N are two 3x3 diagonal matrices, then which of the following is/are true?...

If M and N are two 3x3 diagonal matrices, then which of the following is/are true?

A

MN is diagonal matrix

B

MN = NM

C

M² + N² is a diagonal matrix

D

MN+NM=0

Answer

A, B, C

Explanation

Solution

Let M and N be two 3x3 diagonal matrices. This means they can be represented as:

M=(m11000m22000m33)M = \begin{pmatrix} m_{11} & 0 & 0 \\ 0 & m_{22} & 0 \\ 0 & 0 & m_{33} \end{pmatrix}

N=(n11000n22000n33)N = \begin{pmatrix} n_{11} & 0 & 0 \\ 0 & n_{22} & 0 \\ 0 & 0 & n_{33} \end{pmatrix}

Let's evaluate each option:

(A) MN is a diagonal matrix

Let's compute the product MN:

MN=(m11000m22000m33)(n11000n22000n33)MN = \begin{pmatrix} m_{11} & 0 & 0 \\ 0 & m_{22} & 0 \\ 0 & 0 & m_{33} \end{pmatrix} \begin{pmatrix} n_{11} & 0 & 0 \\ 0 & n_{22} & 0 \\ 0 & 0 & n_{33} \end{pmatrix}

MN=(m11n11000m22n22000m33n33)MN = \begin{pmatrix} m_{11}n_{11} & 0 & 0 \\ 0 & m_{22}n_{22} & 0 \\ 0 & 0 & m_{33}n_{33} \end{pmatrix}

The resulting matrix has non-zero elements only on its main diagonal. Therefore, MN is a diagonal matrix. Statement (A) is true.

(B) MN = NM

From (A), we have MN=(m11n11000m22n22000m33n33)MN = \begin{pmatrix} m_{11}n_{11} & 0 & 0 \\ 0 & m_{22}n_{22} & 0 \\ 0 & 0 & m_{33}n_{33} \end{pmatrix}.

Now, let's compute NM:

NM=(n11000n22000n33)(m11000m22000m33)NM = \begin{pmatrix} n_{11} & 0 & 0 \\ 0 & n_{22} & 0 \\ 0 & 0 & n_{33} \end{pmatrix} \begin{pmatrix} m_{11} & 0 & 0 \\ 0 & m_{22} & 0 \\ 0 & 0 & m_{33} \end{pmatrix}

NM=(n11m11000n22m22000n33m33)NM = \begin{pmatrix} n_{11}m_{11} & 0 & 0 \\ 0 & n_{22}m_{22} & 0 \\ 0 & 0 & n_{33}m_{33} \end{pmatrix}

Since the multiplication of real numbers is commutative (miinii=niimiim_{ii}n_{ii} = n_{ii}m_{ii}), we can see that MN=NMMN = NM. Statement (B) is true.

(C) M² + N² is a diagonal matrix

First, let's find M²:

M2=MM=(m11000m22000m33)(m11000m22000m33)=(m112000m222000m332)M^2 = M \cdot M = \begin{pmatrix} m_{11} & 0 & 0 \\ 0 & m_{22} & 0 \\ 0 & 0 & m_{33} \end{pmatrix} \begin{pmatrix} m_{11} & 0 & 0 \\ 0 & m_{22} & 0 \\ 0 & 0 & m_{33} \end{pmatrix} = \begin{pmatrix} m_{11}^2 & 0 & 0 \\ 0 & m_{22}^2 & 0 \\ 0 & 0 & m_{33}^2 \end{pmatrix}

M² is a diagonal matrix.

Similarly, N² will be:

N2=NN=(n112000n222000n332)N^2 = N \cdot N = \begin{pmatrix} n_{11}^2 & 0 & 0 \\ 0 & n_{22}^2 & 0 \\ 0 & 0 & n_{33}^2 \end{pmatrix}

N² is a diagonal matrix.

Now, let's compute M² + N²:

M2+N2=(m112000m222000m332)+(n112000n222000n332)=(m112+n112000m222+n222000m332+n332)M^2 + N^2 = \begin{pmatrix} m_{11}^2 & 0 & 0 \\ 0 & m_{22}^2 & 0 \\ 0 & 0 & m_{33}^2 \end{pmatrix} + \begin{pmatrix} n_{11}^2 & 0 & 0 \\ 0 & n_{22}^2 & 0 \\ 0 & 0 & n_{33}^2 \end{pmatrix} = \begin{pmatrix} m_{11}^2 + n_{11}^2 & 0 & 0 \\ 0 & m_{22}^2 + n_{22}^2 & 0 \\ 0 & 0 & m_{33}^2 + n_{33}^2 \end{pmatrix}

The resulting matrix has non-zero elements only on its main diagonal. Therefore, M² + N² is a diagonal matrix. Statement (C) is true.

(D) MN + NM = 0

From (B), we know that MN = NM.

So, MN + NM = MN + MN = 2MN.

We found in (A) that MN=(m11n11000m22n22000m33n33)MN = \begin{pmatrix} m_{11}n_{11} & 0 & 0 \\ 0 & m_{22}n_{22} & 0 \\ 0 & 0 & m_{33}n_{33} \end{pmatrix}.

For 2MN to be the zero matrix (0), all its elements must be zero. This means 2miinii=02m_{ii}n_{ii} = 0 for i=1,2,3. This implies miinii=0m_{ii}n_{ii} = 0 for all i. This is not generally true for any two diagonal matrices M and N (e.g., if M and N are identity matrices, MN is not zero).

Therefore, MN + NM = 0 is not generally true. Statement (D) is false.

The true statements are (A), (B), and (C).

Explanation:

  1. Diagonal Matrix Definition: A diagonal matrix has all non-diagonal elements equal to zero.
  2. Product of Diagonal Matrices (MN): When two diagonal matrices are multiplied, the resulting matrix is also a diagonal matrix. The diagonal elements of the product are the products of the corresponding diagonal elements of the original matrices. (MN)ii=miinii(MN)_{ii} = m_{ii}n_{ii}, and (MN)ij=0(MN)_{ij} = 0 for iji \neq j. This proves (A).
  3. Commutativity of Diagonal Matrices (MN = NM): Since the diagonal elements are scalar products (miinii=niimiim_{ii}n_{ii} = n_{ii}m_{ii}), and all off-diagonal elements are zero for both MN and NM, it follows that MN = NM. This proves (B).
  4. Square of a Diagonal Matrix (M², N²): The square of a diagonal matrix is also a diagonal matrix, with diagonal elements being the squares of the original diagonal elements. (M2)ii=mii2(M^2)_{ii} = m_{ii}^2, and (M2)ij=0(M^2)_{ij} = 0 for iji \neq j. Similarly for N².
  5. Sum of Diagonal Matrices (M² + N²): The sum of two diagonal matrices is a diagonal matrix. The diagonal elements of the sum are the sums of the corresponding diagonal elements of the matrices being added. (M2+N2)ii=mii2+nii2(M^2 + N^2)_{ii} = m_{ii}^2 + n_{ii}^2, and (M2+N2)ij=0(M^2 + N^2)_{ij} = 0 for iji \neq j. This proves (C).
  6. MN + NM = 0: Since MN = NM, this expression simplifies to 2MN. For 2MN to be the zero matrix, MN must be the zero matrix. This is not generally true for arbitrary diagonal matrices M and N (e.g., if M and N are non-zero identity matrices). This disproves (D).