• Nakafa

    Nakafa

    Learn free and with quality.
Subject
    • Grade 10
    • Grade 11
    • Grade 12
Exercises
Holy
  • Quran
Articles
  • Politics
  • Community
  • About

Command Palette

Search for a command to run...

Matrix

Matrix Transpose

What Is a Matrix Transpose?

A matrix transpose is a new matrix obtained by interchanging the rows and columns of the original matrix. The elements of the rows become the elements of the columns, and conversely, the elements of the columns become the elements of the rows.

If we have a matrix AAA, then the transpose of matrix AAA is usually denoted by ATA^TAT or A′A'A′.

Formally, if matrix AAA has an order of m×nm \times nm×n with elements aija_{ij}aij​ (element in the iii-th row and jjj-th column), then its transpose, ATA^TAT, will have an order of n×mn \times mn×m with elements ajiT=aija_{ji}^T = a_{ij}ajiT​=aij​.

This means that the element in the jjj-th row and iii-th column of ATA^TAT is the same as the element in the iii-th row and jjj-th column of AAA.

How to Determine the Matrix Transpose

To obtain the matrix transpose, follow these steps:

  1. Write the first row of the original matrix as the first column of the transpose matrix.
  2. Write the second row of the original matrix as the second column of the transpose matrix.
  3. Continue this process for all rows in the original matrix.

General Matrix

Suppose we have matrix AAA:

A=[abcd]A = \begin{bmatrix} a & b \\ c & d \end{bmatrix}A=[ac​bd​]

Then, the transpose of matrix AAA is:

AT=[acbd]A^T = \begin{bmatrix} a & c \\ b & d \end{bmatrix}AT=[ab​cd​]

Notice how the first row [ab]\begin{bmatrix} a & b \end{bmatrix}[a​b​] becomes the first column [ab]\begin{bmatrix} a \\ b \end{bmatrix}[ab​], and the second row [cd]\begin{bmatrix} c & d \end{bmatrix}[c​d​] becomes the second column [cd]\begin{bmatrix} c \\ d \end{bmatrix}[cd​].

Matrix with Different Order

Given matrix BBB with order 2×32 \times 32×3:

B=[123456]B = \begin{bmatrix} 1 & 2 & 3 \\ 4 & 5 & 6 \end{bmatrix}B=[14​25​36​]

The transpose of matrix BBB, denoted BTB^TBT, will have order 3×23 \times 23×2:

BT=[142536]B^T = \begin{bmatrix} 1 & 4 \\ 2 & 5 \\ 3 & 6 \end{bmatrix}BT=​123​456​​
  • The first row of BBB ([123]\begin{bmatrix} 1 & 2 & 3 \end{bmatrix}[1​2​3​]) becomes the first column of BTB^TBT.
  • The second row of BBB ([456]\begin{bmatrix} 4 & 5 & 6 \end{bmatrix}[4​5​6​]) becomes the second column of BTB^TBT.

Column Matrix to Row Matrix

If CCC is a column matrix:

C=[23]C = \begin{bmatrix} 2 \\ 3 \end{bmatrix}C=[23​]

Then its transpose, CTC^TCT, is a row matrix:

CT=[23]C^T = \begin{bmatrix} 2 & 3 \end{bmatrix}CT=[2​3​]

Transpose of a Square Matrix

Given a square matrix DDD:

D=[−7813597222131−601]D = \begin{bmatrix} -7 & 8 & 1 & 3 \\ 5 & 9 & 7 & 2 \\ 2 & 2 & 1 & 3 \\ 1 & -6 & 0 & 1 \end{bmatrix}D=​−7521​892−6​1710​3231​​

Then its transpose, DTD^TDT, is also a square matrix:

DT=[−7521892−617103231]D^T = \begin{bmatrix} -7 & 5 & 2 & 1 \\ 8 & 9 & 2 & -6 \\ 1 & 7 & 1 & 0 \\ 3 & 2 & 3 & 1 \end{bmatrix}DT=​−7813​5972​2213​1−601​​

Properties of Matrix Transpose

Some important properties of matrix transpose are:

  1. (AT)T=A(A^T)^T = A(AT)T=A (The transpose of a transpose matrix is the matrix itself)
  2. (A+B)T=AT+BT(A + B)^T = A^T + B^T(A+B)T=AT+BT (Transpose of the sum of two matrices)
  3. (A−B)T=AT−BT(A - B)^T = A^T - B^T(A−B)T=AT−BT (Transpose of the subtraction of two matrices)
  4. (kA)T=kAT(kA)^T = kA^T(kA)T=kAT, where kkk is a scalar
  5. (AB)T=BTAT(AB)^T = B^T A^T(AB)T=BTAT (Transpose of the product of two matrices, note the reversed order)

Exercises

Determine the transpose of the following matrices and state the type of the resulting matrix (e.g., row matrix, column matrix, square matrix).

  1. A=[13−5]A = \begin{bmatrix} 1 & 3 & -5 \end{bmatrix}A=[1​3​−5​]
  2. B=[9−13015]B = \begin{bmatrix} 9 & -1 \\ 3 & 0 \\ 1 & 5 \end{bmatrix}B=​931​−105​​
  3. C=[23116−245−7]C = \begin{bmatrix} 2 & 3 & 1 \\ 1 & 6 & -2 \\ 4 & 5 & -7 \end{bmatrix}C=​214​365​1−2−7​​

Answer Key

  1. AT=[13−5]A^T = \begin{bmatrix} 1 \\ 3 \\ -5 \end{bmatrix}AT=​13−5​​

    ATA^TAT is a column matrix.

  2. BT=[931−105]B^T = \begin{bmatrix} 9 & 3 & 1 \\ -1 & 0 & 5 \end{bmatrix}BT=[9−1​30​15​]

    BTB^TBT is a rectangular matrix (horizontal matrix).

  3. CT=[2143651−2−7]C^T = \begin{bmatrix} 2 & 1 & 4 \\ 3 & 6 & 5 \\ 1 & -2 & -7 \end{bmatrix}CT=​231​16−2​45−7​​

    CTC^TCT is a square matrix.

Previous

Matrix Types

Next

Matrix Equality

  • Matrix TransposeMaster matrix transpose by swapping rows and columns. Learn step-by-step methods, explore essential properties, and practice with detailed examples.
On this page
  • What Is a Matrix Transpose?
  • How to Determine the Matrix Transpose
    • General Matrix
    • Matrix with Different Order
    • Column Matrix to Row Matrix
    • Transpose of a Square Matrix
  • Properties of Matrix Transpose
  • Exercises
    • Answer Key
  • Comments
  • Report
  • Source code