2.5. Transpose#
Definition - Transpose of a Matrix
The transpose of a matrix is a new matrix that is obtained by swapping the rows and columns of the original matrix. The transpose of a matrix can be thought of as flipping the matrix over its main diagonal, which is the line that goes from the top left corner to the bottom right corner of the matrix. We denote the transpose of a matrix \(A\) by \(A^T\).
The transpose of a matrix is a new matrix that is obtained by swapping the rows and columns of the original matrix. The transpose of a matrix can be thought of as flipping the matrix over its main diagonal, which is the line that goes from the top left corner to the bottom right corner of the matrix. We denote the transpose of a matrix \(A\) by \(A^T\). For example, if
then
Lemma: Properties of the Transpose of a Matrix
Some of the properties of the tTranspose of a matrix [Kuttler and Farah, 2020, Nicholson, 2018]:
The transpose of the transpose of a matrix is the original matrix. That is, $\((A^T)^T = A.\)$
The transpose of the product of two matrices is the product of the transposes of the matrices in reverse order. That is,\((AB)^T = B^TA^T\).
The transpose of the linear combination of two matrices is the linear combination of the transposes of the matrices with the same coefficients. That is, \((rA + sB)^T = rA^T + sB^T.\)
Example: The transpose of matrix \(A=\begin{bmatrix} 1 & 2 & 3 \\ 4 & 5 & 6 \end{bmatrix}\) can be found as follows
Example: Find the \(A\) if
Solution: We have,