Let’s consider a matrix of size m×n as A. The matrix obtained by swapping the rows and columns of A is called the transpose of A and is denoted by AT or At.
Description
Following the definition, if A is a m×n matrix then AT will be a n×m matrix. Also, the ith row of A is the same as the ith column of AT and vice versa.
A=[10008322],AT=10030822
It can be considered as being symmetric with respect to the main diagonal.
Properties
Let’s assume r,s∈R and A,B are sizes that make the matrix operations well-defined in each case. Then, the following hold:
(a) Linearity:(rA+sB)T=rAT+sBT
(b) The transpose of a product is equal to the product of the transposes in reverse order.
(AB)T=BTAT
(b’) The transpose of the product of several matrices is equal to the product of the transposes of those matrices in reverse order.