2.5: The Transpose
( \newcommand{\kernel}{\mathrm{null}\,}\)
Another important operation on matrices is that of taking the transpose. For a matrix A, we denote the transpose of A by AT. Before formally defining the transpose, we explore this operation on the following matrix.
[143126]T= [132416]
What happened? The first column became the first row and the second column became the second row. Thus the 3×2 matrix became a 2×3 matrix. The number 4 was in the first row and the second column and it ended up in the second row and first column.
The definition of the transpose is as follows.
Let A be an m×n matrix. Then AT, the transpose of A, denotes the n×m matrix given by
AT=[aij]T=[aji]
The (i,j)-entry of A becomes the (j,i)-entry of AT.
Consider the following example.
Calculate AT for the following matrix
A=[12−6354]
Solution
By Definition 2.5.1, we know that for A=[aij], AT=[aji]. In other words, we switch the row and column location of each entry. The (1,2)-entry becomes the (2,1)-entry.
Thus, AT=[1325−64]
Notice that A is a 2×3 matrix, while AT is a 3×2 matrix.
The transpose of a matrix has the following important properties.
Let A be an m×n matrix, B an n×p matrix, and r and s scalars. Then
- (AT)T=A
- (AB)T=BTAT
- (rA+sB)T=rAT+sBT
- Proof
-
First we prove 2. From Definition 2.5.1,
(AB)T=[(AB)ij]T=[(AB)ji]=∑kajkbki=∑kbkiajk=∑k[bik]T[akj]T=[bij]T[aij]T=BTAT
The proof of Formula 3 is left as an exercise.
The transpose of a matrix is related to other important topics. Consider the following definition.
An n×n matrix A is said to be symmetric if A=AT. It is said to be skew symmetric if A=−AT.
We will explore these definitions in the following examples.
Let
A=[21315−33−37]
Use Definition 2.5.2 to show that A is symmetric.
Solution
By Definition 2.5.2, we need to show that A=AT. Now, using Definition 2.5.1,
AT=[21315−33−37]
Hence, A=AT, so A is symmetric.
Let
A=[013−102−3−20]
Show that A is skew symmetric.
Solution
By Definition 2.5.2,
AT=[0−1−310−2320]
You can see that each entry of AT is equal to −1 times the same entry of A. Hence, AT=−A and so by Definition 2.5.2, A is skew symmetric.