Learn the concept of transpose and matrix similarity easily and completely. Find example questions and complete discussions to help you master class 11 mathematics material

A matrix is ​​an arrangement of numbers arranged in rows and columns. Operations on matrices, such as addition, subtraction, multiplication, etc., have special rules.

Previously we learned about matrix concepts and types↝ . This time we will discuss transpose and similarity matrices.

1. Transpose Matrix (Transpose Matrix)

The transpose of a matrix AA of order mΓ—nm \times n is a new matrix of order nΓ—mn \times m which is obtained by swapping row elements into column elements and vice versa.

The transpose of a matrix AA is denoted by 𝐴T𝐴^T

For more clarity, look at the image below: Transpose Matrix Example:

If A=[123456]A = \begin{bmatrix} 1 & 2 \\ 3 & 4 \\ 5 & 6 \end{bmatrix}, then AT=[135246]A^T = \begin{bmatrix} 1 & 3 & 5 \\ 2 & 4 & 6 \end{bmatrix}.

Properties of Matrix Transpose:

  • (AT)T=A(A^T)^T = A
  • (A+B)T=AT+BT(A + B)^T = A^T + B^T
  • (kA)T=kAT(kA)^T = kA^T, where kk is a constant
  • (AB)T=BTAT(AB)^T = B^TA^T

2. Similarity of Two Matrices

Definition

Two matrices AA and BB are said to be equal if and only if:

  1. The orders of matrices AA and BB are the same.
  2. The elements in the matrices AA and BB are the same.

Example:

Matrix A=[1234]A = \begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix} and B=[1234]B = \begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix} are the same matrix.

Sample Question

  1. Given the matrix P=[2βˆ’134]P = \begin{bmatrix} 2 & -1 \\ 3 & 4 \end{bmatrix} and Q=[12βˆ’34]Q = \begin{bmatrix} 1 & 2 \\ -3 & 4 \end{bmatrix}. Determine:

    1. PTP^T
    2. QTQ^T
    3. (P+Q)T(P + Q)^T
    4. Is PP the same as QQ?
  2. If AA is a matrix of order 3Γ—23 \times 2, determine the order of ATA^T.

Problem Solving

  1. Known matrix:

    • P=[2βˆ’134]P = \begin{bmatrix} 2 & -1 \\ 3 & 4 \end{bmatrix}
    • Q=[12βˆ’34]Q = \begin{bmatrix} 1 & 2 \\ -3 & 4 \end{bmatrix}

    Asked:

    1. PTP^T
    2. QTQ^T
    3. (P+Q)T(P + Q)^T
    4. Is PP the same as QQ?

    Solution ✍️

    1. Finding PTP^T and QTQ^T

      To find the transpose, we convert rows into columns and vice versa.

      • PT=[23βˆ’14]P^T = \begin{bmatrix} 2 & 3 \\ -1 & 4 \end{bmatrix}
      • QT=[1βˆ’324]Q^T = \begin{bmatrix} 1 & -3 \\ 2 & 4 \end{bmatrix}
    2. Finding (P+Q)T(P + Q)^T

      First, we add the matrices PP and QQ:

      P+Q=[2+1βˆ’1+23βˆ’34+4]=[3108]P + Q = \begin{bmatrix} 2+1 & -1+2 \\ 3-3 & 4+4\end{bmatrix} = \begin{bmatrix} 3 & 1 \\ 0 & 8 \end{bmatrix}

      Then, we find the transpose of the addition result:

      (P+Q)T=[3018](P + Q)^T = \begin{bmatrix} 3 & 0 \\ 1 & 8 \end{bmatrix}

    3. Checking if PP is equal to QQ

      Two matrices are said to be the same if their order and elements are the same. We see that the matrices PP and QQ have the same order, namely 2Γ—22 \times 2. However, the elements are not all the same. So, PP is not the same as QQ.

  2. If AA is a matrix of order 3Γ—23 \times 2, determine the order of ATA^T.

    Solution ✍️

    If the matrix AA has 3 rows and 2 columns, then when it is transposed, the rows and columns will swap. So, the matrix ATA^T will have 2 rows and 3 columns.

    So, the order of ATA^T is 2Γ—32 \times 3.

Extra Practice Questions

  1. Given the matrix:

    • $A = \begin{bmatrix} 1 & -2 & 3 \\
      4 & 0 & -5 \end{bmatrix}$
    • $B = \begin{bmatrix} 2 & 1 \\
      -1 & 3 \\
      0 & 2 \end{bmatrix}$

    Determine:

    • ATA^T
    • BTB^T
    • (A+B)T(A + B)^T (note: the addition operation A + B cannot be performed because the order of the matrices is different)
    • (AB)T(AB)^T (if AB matrix multiplication can be performed)
  2. Given the matrix C=[x23y]C = \begin{bmatrix} x & 2 \\ 3 & y \end{bmatrix} and D=[4231]D = \begin{bmatrix}4 & 2 \\3 & 1 \end{bmatrix}. If C=DTC = D^T, determine the values ​​of xx and yy.

  3. Prove that for every square matrix AA, (AT)T=A(A^T)^T = A holds.

  4. Given the matrix E=[abcd]E = \begin{bmatrix} a & b \\ c & d \end{bmatrix}. If ET=EE^T = E, what kind of matrix is ​​called a symmetric matrix? Give an example of a symmetric matrix of order 3Γ—33 \times 3.

  5. Given the matrix F=[abβˆ’ba]F = \begin{bmatrix}a & b \\-b & a\end{bmatrix}. If FT=βˆ’FF^T = -F, what kind of matrix is ​​called a skew-symmetric matrix? Give an example of a skew-symmetric matrix of order 2Γ—22 \times 2.