Transposed Matrix
   HOME

TheInfoList



OR:

In linear algebra, the transpose of a Matrix (mathematics), 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 (among other notations). 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 , , , A^, , , or , may be constructed by any one of the following methods: #Reflection (mathematics), 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 : :\left[\mathbf^\operatorname\right]_ = \left[\mathbf\right]_. 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 (mathematics), variable name.


Matrix definitions involving transposition

A square matrix whose transpose is equal to itself is called a ''symmetric matrix''; that is, is symmetric if :\mathbf^ = \mathbf. A square matrix whose transpose is equal to its negative is called a ''skew-symmetric matrix''; that is, is skew-symmetric if :\mathbf^ = -\mathbf. A square complex number, complex matrix whose transpose is equal to the matrix with every entry replaced by its complex conjugate (denoted here with an overline) is called a ''Hermitian matrix'' (equivalent to the matrix being equal to its conjugate transpose); that is, is Hermitian if :\mathbf^ = \overline. A square complex number, 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 :\mathbf^ = -\overline. A square matrix whose transpose is equal to its Inverse matrix, inverse is called an ''orthogonal matrix''; that is, is orthogonal if :\mathbf^ = \mathbf^. A square complex matrix whose transpose is equal to its conjugate inverse is called a ''unitary matrix''; that is, is unitary if :\mathbf^ = \overline.


Examples

*\begin 1 & 2 \end^ = \, \begin 1 \\ 2 \end * \begin 1 & 2 \\ 3 & 4 \end^ = \begin 1 & 3 \\ 2 & 4 \end * \begin 1 & 2 \\ 3 & 4 \\ 5 & 6 \end^ = \begin 1 & 3 & 5\\ 2 & 4 & 6 \end


Properties

Let and be matrices and be a Scalar (mathematics), scalar. * \left(\mathbf^\operatorname \right)^\operatorname = \mathbf. *:The operation of taking the transpose is an Involution (mathematics), involution (self-Inverse matrix, inverse). *\left(\mathbf + \mathbf\right)^\operatorname = \mathbf^\operatorname + \mathbf^\operatorname. *:The transpose respects Matrix addition, addition. *\left(c \mathbf\right)^\operatorname = c (\mathbf^\operatorname). *:The transpose of a scalar is the same scalar. Together with the preceding property, this implies that the transpose is a linear map from the Vector space, space of matrices to the space of the matrices. *\left(\mathbf\right)^\operatorname = \mathbf^\operatorname \mathbf^\operatorname. *:The order of the factors reverses. By induction, this result extends to the general case of multiple matrices, so *::. *\det \left(\mathbf^\operatorname\right) = \det(\mathbf). *:The determinant of a square matrix is the same as the determinant of its transpose. *The dot product of two column vectors and can be computed as the single entry of the matrix product\mathbf \cdot \mathbf = \mathbf^ \mathbf. *If has only real entries, then is a positive-semidefinite matrix. * \left(\mathbf^\operatorname \right)^ = \left(\mathbf^ \right)^\operatorname. *: The transpose of an invertible matrix is also invertible, and its inverse is the transpose of the inverse of the original matrix.
The notation is sometimes used to represent either of these equivalent expressions. *If is a square matrix, then its Eigenvalue, eigenvector and eigenspace, eigenvalues are equal to the eigenvalues of its transpose, since they share the same characteristic polynomial. * \left(\mathbf A\mathbf a\right) \cdot \mathbf b =\mathbf a \cdot \mathbf \left(A^T\mathbf b\right) for two column vectors \mathbf a, \mathbf b and the standard dot product. *Over any field k, a square matrix \mathbf is matrix similarity, similar to \mathbf^\operatorname. *:This implies that \mathbf and \mathbf^\operatorname have the same invariant factors, which implies they share the same minimal polynomial, characteristic polynomial, and eigenvalues, among other properties. *:A proof of this property uses the following two observations. *:* Let \mathbf and \mathbf be n\times n matrices over some base field k and let L be a field extension of k. If \mathbf and \mathbf are similar as matrices over L, then they are similar over k. In particular this applies when L is the algebraic closure of k. *:*If \mathbf is a matrix over an algebraically closed field in Jordan normal form with respect to some basis, then \mathbf is similar to \mathbf^\operatorname. This further reduces to proving the same fact when \mathbf is a single Jordan block, which is a straightforward exercise.


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: :\left(\mathbf \mathbf^\operatorname\right)^\operatorname = \left(\mathbf^\operatorname\right)^\operatorname \mathbf^\operatorname= \mathbf \mathbf^\operatorname .


Implementation of matrix transposition on computers

On a computer, one can often avoid explicitly transposing a matrix in Random access memory, 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- and column-major order, 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 (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 Big O notation, O(1) additional storage or at most storage much less than ''mn''. For ''n'' ≠ ''m'', 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

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 (linear algebra), basis choice.


Transpose of a linear map

Let denote the algebraic dual space of an -Module (mathematics), 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 (differential geometry), pullback of by . The following Relation (math), 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 (#Adjoint, below). The continuous dual space 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 basis (linear algebra), bases of and , then the matrix describes the transpose of that linear map with respect to the Dual basis, 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 form, 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 :B_X\big(x, g(y)\big) = B_Y\big(u(x), y\big) 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 basis (linear algebra), bases are Orthonormality, 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 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 * Converse relation * Moore–Penrose pseudoinverse * Projection (linear algebra)


References


Further reading

* * . * * * *


External links

* Gilbert Strang (Spring 2010
Linear Algebra
from MIT Open Courseware {{Tensors Matrices (mathematics) Abstract algebra Linear algebra