logo

Transpose Matrix 📂Matrix Algebra

Transpose Matrix

Definition1

Let’s consider a matrix of size $m\times n$ as $A$. The matrix obtained by swapping the rows and columns of $A$ is called the transpose of $A$ and is denoted by $A^{T}$ or $A^{t}$.

Description

Following the definition, if $A$ is a $m \times n$ matrix then $A^{T}$ will be a $n \times m$ matrix. Also, the $i$th row of $A$ is the same as the $i$th column of $A^{T}$ and vice versa.

$$ A=\begin{bmatrix} 10 & 0 & 3 \\ 0 & 8 & 22 \end{bmatrix} ,\quad A^{T} = \begin{bmatrix} 10 & 0 \\ 0 & 8 \\ 3 & 22 \end{bmatrix} $$

It can be considered as being symmetric with respect to the main diagonal.

Properties

Let’s assume $r,s\in \mathbb{R}$ and $A,B$ are sizes that make the matrix operations well-defined in each case. Then, the following hold:

(a) Linearity: $$\left( rA + sB\right)^{T}=r A^{T} + s B^{T}$$

(b) The transpose of a product is equal to the product of the transposes in reverse order.

$$ (AB)^{T}=B^{T}A^{T} $$

(b’) The transpose of the product of several matrices is equal to the product of the transposes of those matrices in reverse order.

$$ \left( A_{1} A_{2}\cdots A_{n} \right)^{T} = A_{n}^{T} \cdots A_{2}^{T} A_{1}^{T} $$

Proof

(b)

For the $m\times n$ matrix $A$ and the $n\times k$ matrix $C$

$$ \begin{align*} \left[ { \left( AC \right) }^{ T } \right] _{ km } &= \sum _{ i=1 }^{ n }{ [A] _{ m i } { [C] } _{ i k } } \\ &= \sum _{ i=1 }^{ n }{ { \left[ { A }^{ T } \right] } _{ i m } { \left[ { C }^{ T } \right] } _{ k i } } \\ &= \sum _{ i=1 }^{ n }{ { \left[ { C }^{ T } \right] } _{ k i }{ \left[ { A }^{ T } \right] } _{ i m } } \\ &= { \left[ { C }^{ T } { A }^{ T } \right] } _{ km } \end{align*} $$

Therefore, if each element is the same, then the matrices are equal and thus the following equation holds.

$$ \left( AC \right) ^{ T } = { C }^{ T } { A }^{ T } $$

(b')

This is a corollary to (b).


  1. Jim Hefferon, Linear Algebra(4th Edition). 2020, p138 ↩︎