← Back to all lessons
Class 12Algebra8:58Published 13 Jul 2024

Transpose of a Matrix

Learn what the transpose of a matrix is and how to use it to show that a matrix plus its transpose is symmetric, its difference is skew symmetric, and that the transpose of a product reverses the order.

This lesson introduces the transpose of a matrix, formed by swapping its rows and columns. It then works through two proofs: for a given two by two matrix, that the sum with its transpose is symmetric while the difference is skew symmetric, and for two matrices, that the transpose of their product equals the product of their transposes in reverse order. It closes with a summary of the main properties of the transpose.

What you'll learn

  • How to write the transpose of a matrix by swapping its rows and columns
  • Why a matrix added to its transpose is symmetric and the difference is skew symmetric
  • Why the transpose of a product equals the product of the transposes in reverse order
  • The key properties of the transpose of a matrix

Lesson chapters

0:00What the transpose of a matrix is
0:45Sum with the transpose is symmetric
2:26Difference is skew symmetric
3:39Transpose of a product reverses the order
6:47Properties of the transpose

Lesson notes

This lesson explains the transpose of a matrix and uses it to prove three things: that a matrix plus its transpose is symmetric, that a matrix minus its transpose is skew symmetric, and that the transpose of a product equals the product of the transposes taken in reverse order.

What the transpose is

The transpose of a matrix is obtained by interchanging its rows and columns. For a matrix AA, the transpose is written ATA^{\mathsf T}.

A=[1234]    AT=[1324]A = \begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix} \implies A^{\mathsf T} = \begin{bmatrix} 1 & 3 \\ 2 & 4 \end{bmatrix}

The first row [12]\begin{bmatrix} 1 & 2 \end{bmatrix} becomes the first column, and the second row becomes the second column.

Sum with the transpose is symmetric

Given the matrix

A=[0124],A = \begin{bmatrix} 0 & 1 \\ 2 & 4 \end{bmatrix},

we show that A+ATA + A^{\mathsf T} is symmetric.

First write the transpose by swapping rows and columns:

AT=[0214].A^{\mathsf T} = \begin{bmatrix} 0 & 2 \\ 1 & 4 \end{bmatrix}.

Then add:

A+AT=[0338].A + A^{\mathsf T} = \begin{bmatrix} 0 & 3 \\ 3 & 8 \end{bmatrix}.

A matrix is symmetric when it equals its own transpose. Taking the transpose of this result swaps the rows and columns, but the off diagonal entries are both 33, so nothing changes:

(A+AT)T=[0338]=A+AT.\left(A + A^{\mathsf T}\right)^{\mathsf T} = \begin{bmatrix} 0 & 3 \\ 3 & 8 \end{bmatrix} = A + A^{\mathsf T}.

Since (A+AT)T=A+AT\left(A + A^{\mathsf T}\right)^{\mathsf T} = A + A^{\mathsf T}, the sum is symmetric.

Difference is skew symmetric

Now subtract the transpose from AA:

AAT=[0124][0214]=[0110].A - A^{\mathsf T} = \begin{bmatrix} 0 & 1 \\ 2 & 4 \end{bmatrix} - \begin{bmatrix} 0 & 2 \\ 1 & 4 \end{bmatrix} = \begin{bmatrix} 0 & -1 \\ 1 & 0 \end{bmatrix}.

A matrix is skew symmetric when its transpose equals its negative. Taking the transpose swaps the off diagonal entries:

(AAT)T=[0110]=[0110]=(AAT).\left(A - A^{\mathsf T}\right)^{\mathsf T} = \begin{bmatrix} 0 & 1 \\ -1 & 0 \end{bmatrix} = -\begin{bmatrix} 0 & -1 \\ 1 & 0 \end{bmatrix} = -\left(A - A^{\mathsf T}\right).

Since the transpose equals the negative, AATA - A^{\mathsf T} is skew symmetric.

Transpose of a product reverses the order

Given

A=[0423],B=[1241],A = \begin{bmatrix} 0 & 4 \\ 2 & 3 \end{bmatrix}, \qquad B = \begin{bmatrix} 1 & 2 \\ 4 & 1 \end{bmatrix},

we prove that (AB)T=BTAT\left(AB\right)^{\mathsf T} = B^{\mathsf T} A^{\mathsf T}.

The transposes are

AT=[0243],BT=[1421].A^{\mathsf T} = \begin{bmatrix} 0 & 2 \\ 4 & 3 \end{bmatrix}, \qquad B^{\mathsf T} = \begin{bmatrix} 1 & 4 \\ 2 & 1 \end{bmatrix}.

Left side

Multiply AA by BB, taking each row of AA against each column of BB:

AB=[01+4402+4121+3422+31]=[164147].AB = \begin{bmatrix} 0\cdot 1 + 4\cdot 4 & 0\cdot 2 + 4\cdot 1 \\ 2\cdot 1 + 3\cdot 4 & 2\cdot 2 + 3\cdot 1 \end{bmatrix} = \begin{bmatrix} 16 & 4 \\ 14 & 7 \end{bmatrix}.

Now take the transpose by swapping rows and columns:

(AB)T=[161447].\left(AB\right)^{\mathsf T} = \begin{bmatrix} 16 & 14 \\ 4 & 7 \end{bmatrix}.

Right side

Multiply BTB^{\mathsf T} by ATA^{\mathsf T}:

BTAT=[10+4412+4320+1422+13]=[161447].B^{\mathsf T} A^{\mathsf T} = \begin{bmatrix} 1\cdot 0 + 4\cdot 4 & 1\cdot 2 + 4\cdot 3 \\ 2\cdot 0 + 1\cdot 4 & 2\cdot 2 + 1\cdot 3 \end{bmatrix} = \begin{bmatrix} 16 & 14 \\ 4 & 7 \end{bmatrix}.

Both sides give the same matrix, so (AB)T=BTAT\left(AB\right)^{\mathsf T} = B^{\mathsf T} A^{\mathsf T}.

Properties of the transpose

For a square matrix AA, the main properties are:

(AT)T=A\left(A^{\mathsf T}\right)^{\mathsf T} = A

(A+B)T=AT+BT\left(A + B\right)^{\mathsf T} = A^{\mathsf T} + B^{\mathsf T}

(AB)T=BTAT\left(AB\right)^{\mathsf T} = B^{\mathsf T} A^{\mathsf T}

If AA is symmetric then AT=AA^{\mathsf T} = A, and if AA is skew symmetric then AT=AA^{\mathsf T} = -A.

Key takeaways

  • The transpose swaps the rows and columns of a matrix, and transposing twice returns the original matrix.
  • For any square matrix, A+ATA + A^{\mathsf T} is symmetric and AATA - A^{\mathsf T} is skew symmetric.
  • The transpose of a product reverses the order of the factors: (AB)T=BTAT\left(AB\right)^{\mathsf T} = B^{\mathsf T} A^{\mathsf T}.