Matrix Transposition
Transposition of a matrix means to pivot the matrix. If an mxn matrix is given, the transposed matrix has the order nxm. For example:
A=⎣⎡1041269⎦⎤→AT=[1024619]
The transposition of a matrix is notated using the T superscript:
A→AT
Positional notation for a transpose is:
aijT=aji
Properties of the transpose
- (AT)T=A
- (λA)T=λAT, where λ is a scalar
- (A+B)T=AT+BT
- (A+B+C)T=AT+BT+CT
- (AB)T=BTAT
- (ABC)T=CTBTAT