Transpose


In linear algebra, the transpose of a matrix is an operator which flips a matrix over its diagonal;
that is, it switches the row and column indices of the matrix by producing another matrix, often denoted by .
The transpose of a matrix was introduced in 1858 by the British mathematician Arthur Cayley.

Transpose of a matrix

Definition

The transpose of a matrix, denoted by,,, or, may be constructed by any one of the following methods:

  1. Reflect over its main diagonal to obtain ;
  2. Write the rows of as the columns of ;
  3. Write the columns of as the rows of.
Formally, the -th row, -th column element of is the -th row, -th column element of :
If is an matrix, then is an matrix.
To avoid confusing the reader between the transpose operation and a matrix raised to the power, the symbol denotes the transpose operation.

Matrix definitions involving transposition

A square matrix whose transpose is equal to itself is called a symmetric matrix; that is, is symmetric if
A square matrix whose transpose is equal to its negative is called a skew-symmetric matrix; that is, is skew-symmetric if
A square complex matrix whose transpose is equal to the matrix with every entry replaced by its complex conjugate is called a Hermitian matrix ; that is, is Hermitian if
A square complex matrix whose transpose is equal to the negation of its complex conjugate is called a skew-Hermitian matrix; that is, is skew-Hermitian if
A square matrix whose transpose is equal to its inverse is called an orthogonal matrix; that is, is orthogonal if
A square complex matrix whose transpose is equal to its conjugate inverse is called a unitary matrix; that is, is unitary if

Examples

Let and be matrices and be a scalar.

Products

If is an matrix and is its transpose, then the result of matrix multiplication with these two matrices gives two square matrices: is and is. Furthermore, these products are symmetric matrices. Indeed, the matrix product has entries that are the inner product of a row of with a column of. But the columns of are the rows of, so the entry corresponds to the inner product of two rows of. If is the entry of the product, it is obtained from rows and in. The entry is also obtained from these rows, thus, and the product matrix is symmetric. Similarly, the product is a symmetric matrix.
A quick proof of the symmetry of results from the fact that it is its own transpose:

Implementation of matrix transposition on computers

On a computer, one can often avoid explicitly transposing a matrix in memory by simply accessing the same data in a different order. For example, software libraries for linear algebra, such as BLAS, typically provide options to specify that certain matrices are to be interpreted in transposed order to avoid the necessity of data movement.
However, there remain a number of circumstances in which it is necessary or desirable to physically reorder a matrix in memory to its transposed ordering. For example, with a matrix stored in row-major order, the rows of the matrix are contiguous in memory and the columns are discontiguous. If repeated operations need to be performed on the columns, for example in a fast Fourier transform algorithm, transposing the matrix in memory may improve performance by increasing memory locality.
Ideally, one might hope to transpose a matrix with minimal additional storage. This leads to the problem of transposing an n × m matrix in-place, with O additional storage or at most storage much less than mn. For nm, this involves a complicated permutation of the data elements that is non-trivial to implement in-place. Therefore, efficient in-place matrix transposition has been the subject of numerous research publications in computer science, starting in the late 1950s, and several algorithms have been developed.

Transposes of linear maps and bilinear forms

Recall that matrices can be placed into a one-to-one correspondence with linear operators.
The transpose of a linear operator can be defined without any need to consider a matrix representation of it.
This leads to a much more general definition of the transpose that can be applied to linear operators that cannot be represented by matrices.

Transpose of a linear map

Let denote the algebraic dual space of an -module.
Let and be -modules.
If is a linear map, then its algebraic adjoint or dual, is the map defined by.
The resulting functional is called the pullback of by.
The following relation characterizes the algebraic adjoint of
where is the natural pairing.
This definition also applies unchanged to left modules and to vector spaces.
The definition of the transpose may be seen to be independent of any bilinear form on the modules, unlike the adjoint.
The continuous dual space of a topological vector space is denoted by.
If and are TVSs then a linear map is weakly continuous if and only if, in which case we let denote the restriction of to.
The map is called the transpose of.
If the matrix describes a linear map with respect to bases of and, then the matrix describes the transpose of that linear map with respect to the dual bases.

Transpose of a bilinear form

Every linear map to the dual space defines a bilinear form, with the relation.
By defining the transpose of this bilinear form as the bilinear form defined by the transpose i.e., we find that.
Here, is the natural homomorphism into the double dual.

Adjoint

If the vector spaces and have respectively nondegenerate bilinear forms and, a concept known as the adjoint, which is closely related to the transpose, may be defined:
If is a linear map between vector spaces and, we define as the adjoint of if satisfies
These bilinear forms define an isomorphism between and, and between and, resulting in an isomorphism between the transpose and adjoint of.
The matrix of the adjoint of a map is the transposed matrix only if the bases are orthonormal with respect to their bilinear forms.
In this context, many authors use the term transpose to refer to the adjoint as defined here.
The adjoint allows us to consider whether is equal to.
In particular, this allows the orthogonal group over a vector space with a quadratic form to be defined without reference to matrices as the set of all linear maps for which the adjoint equals the inverse.
Over a complex vector space, one often works with sesquilinear forms instead of bilinear forms.
The Hermitian adjoint of a map between such spaces is defined similarly, and the matrix of the Hermitian adjoint is given by the conjugate transpose matrix if the bases are orthonormal.