In matrix theory, the transpose is one of the most fundamental operations. It rearranges a matrix by converting its rows into columns and columns into rows.
The transpose is widely used in:
The transpose of a matrix is obtained by interchanging its rows and columns.
If A is a matrix, then its transpose is denoted by:
Aᵀ
or sometimes A'.
If:
A = [aij]
then:
Aᵀ = [aji]
To find the transpose:
Let:
A = | 1 2 |
| 3 4 |
Transpose:
Aᵀ = | 1 3 |
| 2 4 |
Let:
A = | 1 2 3 |
| 4 5 6 |
| 7 8 9 |
Transpose:
Aᵀ = | 1 4 7 |
| 2 5 8 |
| 3 6 9 |
Transpose works for non-square matrices as well.
Let:
A = | 1 2 3 |
| 4 5 6 |
Transpose:
Aᵀ = | 1 4 |
| 2 5 |
| 3 6 |
(Aᵀ)ᵀ = A
(A + B)ᵀ = Aᵀ + Bᵀ
(AB)ᵀ = Bᵀ Aᵀ
⚠ Order is reversed
(kA)ᵀ = kAᵀ
Aᵀ = A
Aᵀ = -A
Transpose is obtained by swapping rows and columns
Represented as Aᵀ
If A = [aij], then Aᵀ = [aji]
Important properties include:
(Aᵀ)ᵀ = A(AB)ᵀ = BᵀAᵀ