By transposing a matrix twice, you return to the starting matrix. That is
(AT)T=A.
Example
Here is a simple numerical example to ease understanding.
Let
A=โ135โ246โโ.
Then,
AT=[12โ34โ56โ].
One helpful trick to compute the transpose of a matrix manually
is to think of it in the following way:
The first column of A - which had the entries 1, 3, and 5 - became the first
row of AT. The second column of A - with the entries 2, 4, and 6 - became
the second row of AT.
By proceeding in this fashion, the process becomes rather trivial.
Properties of the Transpose of a Matrix
The following properties hold for the transposition of matrices:
Distributivity Over Matrix Addition
Let A and B be two matrices of the same shape. Then
(A+B)T=AT+BT.
Since the proof is very short, if youโre interested, here it is: