3 Matrices

3.3 Transpose

Definition 3.3.1.

Let A=(aij) be a m×n matrix. The transpose of A, written AT, is the n×m matrix whose i,j entry is aji.

You can think of the transpose as being obtained by reflecting A in the south east diagonal starting in the top left hand corner, or as the matrix whose columns are the rows of A, or the matrix whose rows are the columns of A.

Example 3.3.1.
  • If A=(123456) then AT=(142536).

  • If A=(1234) then AT=(1324).

  • If A=(123) then AT=(123).

It’s common to use transposes when we want to think geometrically, because if 𝐱n then 𝐱T𝐱 is equal to

x12+x22++xn2

which is the square of the length of 𝐱. (As usual, we have identified the 1×1 matrix 𝐱T𝐱 with a number here).

When 𝐳 is a complex column vector, that is, an element of n for some n, this doesn’t quite work. If 𝐳=(1i) for example, then 𝐳T𝐳=0, which is not a good measure of the length of 𝐳. For this reason, when people work with complex vectors they often use the conjugate transpose AH defined to be the matrix whose entries are the complex conjugates of the entries of AT. With this definition, for a complex vector 𝐳=(z1zn) we get

𝐳H𝐳=|z1|2++|zn|2.