Turning Matrix Rows into Columns
A matrix transpose is formed by swapping rows and columns. If entry is in row and column of , the same entry is in row and column of .
The transpose of is written as or . If has dimensions , then has dimensions and satisfies .
How to Determine the Matrix Transpose
To obtain the matrix transpose, follow these steps:
- Write the first row of the original matrix as the first column of the transpose matrix.
- Write the second row of the original matrix as the second column of the transpose matrix.
- Continue this process for all rows in the original matrix.
General Matrix
Suppose we have matrix :
Then, the transpose of matrix is:
The first row becomes the first column:
The second row becomes the second column:
Matrix with Different Order
Given matrix with order :
The transpose of matrix , denoted , will have order :
- The first row of () becomes the first column of .
- The second row of () becomes the second column of .
Column Matrix to Row Matrix
If is a column matrix:
Then its transpose, , is a row matrix:
Transpose of a Square Matrix
Given a square matrix :
Then its transpose, , is also a square matrix:
Properties of Matrix Transpose
The transpose satisfies the following identities:
- (The transpose of a transpose matrix is the matrix itself)
- (Transpose of the sum of two matrices)
- (Transpose of the subtraction of two matrices)
- , where is a scalar
- (Transpose of the product of two matrices, note the reversed order)
Exercises
Determine the transpose of the following matrices and state the type of the resulting matrix (e.g., row matrix, column matrix, square matrix).
-
Matrix :
-
Matrix :
-
Matrix :
Worked Solutions
-
The transpose of is:
The single row of becomes a single column. Thus, has order and is a column matrix.
-
The transpose of is:
Each row of becomes a column of . The dimensions change from to , so the result is a rectangular matrix.
-
The transpose of is:
Reading the columns of as the rows of gives the matrix above. Its order remains , so it is still a square matrix.