
In
linear algebra
Linear algebra is the branch of mathematics concerning linear equations such as:
:a_1x_1+\cdots +a_nx_n=b,
linear maps such as:
:(x_1, \ldots, x_n) \mapsto a_1x_1+\cdots +a_nx_n,
and their representations in vector spaces and through matric ...
, the transpose of a
matrix
Matrix most commonly refers to:
* ''The Matrix'' (franchise), an American media franchise
** '' The Matrix'', a 1999 science-fiction action film
** "The Matrix", a fictional setting, a virtual reality environment, within ''The Matrix'' (franchi ...
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 (among other notations).
The transpose of a matrix was introduced in 1858 by the British mathematician
Arthur Cayley. In the case of a
logical matrix representing a
binary relation
In mathematics, a binary relation associates elements of one set, called the ''domain'', with elements of another set, called the ''codomain''. A binary relation over Set (mathematics), sets and is a new set of ordered pairs consisting of ele ...
R, the transpose corresponds to the
converse relation R
T.
Transpose of a matrix
Definition
The transpose of a matrix , denoted by ,
, ,
, , , or , may be constructed by any one of the following methods:
#
Reflect over its
main diagonal (which runs from top-left to bottom-right) to obtain
#Write the rows of as the columns of
#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.
In the case of square matrices, may also denote the th power of the matrix . For avoiding a possible confusion, many authors use left upperscripts, that is, they denote the transpose as . An advantage of this notation is that no parentheses are needed when exponents are involved: as , notation is not ambiguous.
In this article this confusion is avoided by never using the symbol as a
variable name.
Matrix definitions involving transposition
A square matrix whose transpose is equal to itself is called a ''
symmetric matrix
In linear algebra, a symmetric matrix is a square matrix that is equal to its transpose. Formally,
Because equal matrices have equal dimensions, only square matrices can be symmetric.
The entries of a symmetric matrix are symmetric with ...
''; 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
In mathematics, the complex conjugate of a complex number is the number with an equal real part and an imaginary part equal in magnitude but opposite in sign. That is, (if a and b are real, then) the complex conjugate of a + bi is equal to a - ...
(denoted here with an overline) is called a ''
Hermitian matrix'' (equivalent to the matrix being equal to its
conjugate transpose
In mathematics, the conjugate transpose, also known as the Hermitian transpose, of an m \times n complex matrix \boldsymbol is an n \times m matrix obtained by transposing \boldsymbol and applying complex conjugate on each entry (the complex c ...
); 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
Inverse or invert may refer to:
Science and mathematics
* Inverse (logic), a type of conditional sentence which is an immediate inference made from another conditional sentence
* Additive inverse (negation), the inverse of a number that, when ad ...
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
*
*
*
Properties
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
Memory is the faculty of the mind by which data or information is encoded, stored, and retrieved when needed. It is the retention of information over time for the purpose of influencing future action. If past events could not be remembered ...
by simply accessing the same data in a different order. For example,
software libraries
In computer science, a library is a collection of non-volatile resources used by computer programs, often for software development. These may include configuration data, documentation, help data, message templates, pre-written code and subro ...
for
linear algebra
Linear algebra is the branch of mathematics concerning linear equations such as:
:a_1x_1+\cdots +a_nx_n=b,
linear maps such as:
:(x_1, \ldots, x_n) \mapsto a_1x_1+\cdots +a_nx_n,
and their representations in vector spaces and through matric ...
, 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
In computing, row-major order and column-major order are methods for storing multidimensional arrays in linear storage such as random access memory.
The difference between the orders lies in which elements of an array are contiguous in memory. In ...
, 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
A fast Fourier transform (FFT) is an algorithm that computes the discrete Fourier transform (DFT) of a sequence, or its inverse (IDFT). Fourier analysis converts a signal from its original domain (often time or space) to a representation in t ...
algorithm, transposing the matrix in memory (to make the columns contiguous) 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(1)
Big ''O'' notation is a mathematical notation that describes the limiting behavior of a function when the argument tends towards a particular value or infinity. Big O is a member of a family of notations invented by Paul Bachmann, Edmund Land ...
additional storage or at most storage much less than ''mn''. For ''n'' ≠ ''m'', this involves a complicated
permutation
In mathematics, a permutation of a set is, loosely speaking, an arrangement of its members into a sequence or linear order, or if the set is already ordered, a rearrangement of its elements. The word "permutation" also refers to the act or p ...
of the data elements that is non-trivial to implement in-place. Therefore, efficient
in-place matrix transposition In-place matrix transposition, also called in-situ matrix transposition, is the problem of transposing an ''N''×''M'' matrix in-place in computer memory, ideally with ''O''(1) (bounded) additional storage, or at most with additional storage muc ...
has been the subject of numerous research publications in
computer science
Computer science is the study of computation, automation, and information. Computer science spans theoretical disciplines (such as algorithms, theory of computation, information theory, and automation) to practical disciplines (includin ...
, starting in the late 1950s, and several algorithms have been developed.
Transposes of linear maps and bilinear forms
As the main use of matrices is to represent linear maps between
finite-dimensional vector spaces, the transpose is an operation on matrices that may be seen as the representation of some operation on linear maps.
This leads to a much more general definition of the transpose that works on every linear map, even when linear maps cannot be represented by matrices (such as in the case of infinite dimensional vector spaces). In the finite dimensional case, the matrix representing the transpose of a linear map is the transpose of the matrix representing the linear map, independently of the
basis choice.
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
: for all and
where is the
natural pairing (i.e. defined by ).
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 (
below
Below may refer to:
*Earth
* Ground (disambiguation)
* Soil
* Floor
* Bottom (disambiguation)
* Less than
*Temperatures below freezing
* Hell or underworld
People with the surname
* Ernst von Below (1863–1955), German World War I general
* Fr ...
).
The
continuous dual space
In mathematics, any vector space ''V'' has a corresponding dual vector space (or just dual space for short) consisting of all linear forms on ''V'', together with the vector space structure of pointwise addition and scalar multiplication by con ...
of a
topological vector space (TVS) 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
In algebra, a homomorphism is a structure-preserving map between two algebraic structures of the same type (such as two groups, two rings, or two vector spaces). The word ''homomorphism'' comes from the Ancient Greek language: () meaning "sa ...
into the
double dual.
Adjoint
If the vector spaces and have respectively
nondegenerate bilinear form
In mathematics, a bilinear form is a bilinear map on a vector space (the elements of which are called '' vectors'') over a field ''K'' (the elements of which are called '' scalars''). In other words, a bilinear form is a function that is lin ...
s and , a concept known as the adjoint, which is closely related to the transpose, may be defined:
If is a
linear map between
vector space
In mathematics and physics, a vector space (also called a linear space) is a set whose elements, often called '' vectors'', may be added together and multiplied ("scaled") by numbers called '' scalars''. Scalars are often real numbers, but ...
s and , we define as the adjoint of if satisfies
:
for all and .
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 however, 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
In mathematics, the orthogonal group in dimension , denoted , is the group of distance-preserving transformations of a Euclidean space of dimension that preserve a fixed point, where the group operation is given by composing transformations. ...
over a vector space with a quadratic form to be defined without reference to matrices (nor the components thereof) 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 (conjugate-linear in one argument) 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.
See also
*
Adjugate matrix, the transpose of the
cofactor matrix
*
Conjugate transpose
In mathematics, the conjugate transpose, also known as the Hermitian transpose, of an m \times n complex matrix \boldsymbol is an n \times m matrix obtained by transposing \boldsymbol and applying complex conjugate on each entry (the complex c ...
*
Moore–Penrose pseudoinverse
*
Projection (linear algebra)
In linear algebra and functional analysis, a projection is a linear transformation P from a vector space to itself (an endomorphism) such that P\circ P=P. That is, whenever P is applied twice to any vector, it gives the same result as if i ...
References
Further reading
*
* .
*
*
*
*
External links
* Gilbert Strang (Spring 2010
Linear Algebrafrom MIT Open Courseware
{{Tensors
Matrices
Abstract algebra
Linear algebra