Matrix Transposition#
Definition: Matrix Transposition
The transpose of a matrix \(A \in F^{m\times n}\) is the matrix \(A^\mathsf{T} \in F^{n \times m}\) obtained by switching the rows and the columns of \(A\), i.e. the \(i\)-th row of \(A\) is the \(i\)-th column of \(A^\mathsf{T}\) and vice versa:
Tip
The entry in the \(i\)-th row and the \(j\)-th column of \(A\) is the entry in the \(j\)-th row and the \(i\)-th column of \(A^\mathsf{T}\).
Tip
The number of rows in \(A^\mathsf{T}\) is equal to the number columns in \(A\) and the number of columns in \(A^\mathsf{T}\) is equal to the number of rows in \(A\).
Theorem: Distributivity of Transposition
Matrix transposition is distributive over matrix addition and scalar multiplication:
Proof
TODO
Theorem: Antidistributivity of Transposition
Matrix transposition is antidistributive over matrix products:
Proof
TODO