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 A, the transpose is written AT.
A=[1324]⟹AT=[1234]
The first row [12] becomes the first column, and the second row becomes the second column.
Sum with the transpose is symmetric
Given the matrix
A=[0214],
we show that A+AT is symmetric.
First write the transpose by swapping rows and columns:
AT=[0124].
Then add:
A+AT=[0338].
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 3, so nothing changes:
(A+AT)T=[0338]=A+AT.
Since (A+AT)T=A+AT, the sum is symmetric.
Difference is skew symmetric
Now subtract the transpose from A:
A−AT=[0214]−[0124]=[01−10].
A matrix is skew symmetric when its transpose equals its negative. Taking the transpose swaps the off diagonal entries:
(A−AT)T=[0−110]=−[01−10]=−(A−AT).
Since the transpose equals the negative, A−AT is skew symmetric.
Transpose of a product reverses the order
Given
A=[0243],B=[1421],
we prove that (AB)T=BTAT.
The transposes are
AT=[0423],BT=[1241].
Left side
Multiply A by B, taking each row of A against each column of B:
AB=[0⋅1+4⋅42⋅1+3⋅40⋅2+4⋅12⋅2+3⋅1]=[161447].
Now take the transpose by swapping rows and columns:
(AB)T=[164147].
Right side
Multiply BT by AT:
BTAT=[1⋅0+4⋅42⋅0+1⋅41⋅2+4⋅32⋅2+1⋅3]=[164147].
Both sides give the same matrix, so (AB)T=BTAT.
Properties of the transpose
For a square matrix A, the main properties are:
(AT)T=A
(A+B)T=AT+BT
(AB)T=BTAT
If A is symmetric then AT=A, and if A is skew symmetric then AT=−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+AT is symmetric and A−AT is skew symmetric.
- The transpose of a product reverses the order of the factors: (AB)T=BTAT.