Results for transpose
On this page:
 
Dictionary:

transpose

  (trăns-pōz') pronunciation

v., -posed, -pos·ing, -pos·es.

v.tr.
  1. To reverse or transfer the order or place of; interchange.
  2. To put into a different place or order: transpose the words of a sentence. See synonyms at reverse.
  3. Mathematics. To move (a term) from one side of an algebraic equation to the other side, reversing its sign to maintain equality.
  4. Music. To write or perform (a composition) in a key other than the original or given key.
  5. To render into another language.
  6. To alter in form or nature; transform.
v.intr.
  1. Music. To write or perform music in a different key.
  2. To admit of being transposed.
n. Mathematics. (trăns'pōz')

A matrix formed by interchanging the rows and columns of a given matrix.

[Middle English transposen, to transform, from Old French transposer, alteration (influenced by poser, to put, place) of Latin trānspōnere, to transfer : trāns-, trans- + pōnere, to place.]

transposable trans·pos'a·ble adj.
 
 

Typesetting error in which the positions of two characters are reversed-for example, "tranpsose," where the "p" and the "s" are reversed.

 
Thesaurus: transpose

verb

  1. To change to the opposite position, direction, or course: invert, reverse, turn (about, around, over. or round). See change/persist.
  2. To change into a different form, substance, or state: convert, metamorphose, mutate, transfigure, transform, translate, transmogrify, transmute, transubstantiate. See change/persist.

 
Antonyms: transpose

v

Definition: swap, switch
Antonyms: leave alone


 
Word Tutor: transpose
pronunciation

IN BRIEF: Cause to change places.

pronunciation Things base and vile, holding no quantity, love can transpose to form and dignity. — William Shakespeare (1564-1616)

 
Wikipedia: transpose


In linear algebra, the transpose of a matrix A is another matrix AT (also written Atr, tA, or A′) created by any one of the following equivalent actions:

  • write the rows of A as the columns of AT
  • write the columns of A as the rows of AT
  • reflect A by its main diagonal (which starts from the top left) to obtain AT

Formally, the transpose of an m × n matrix A is the n × m matrix

A^\mathrm{T}_{ij} = A_{ji} for 1 \le i \le n, 1 \le j \le m.

Examples

  • \begin{bmatrix} 1 & 2  \\ 3 & 4 \end{bmatrix}^{\mathrm{T}} \!\! \;\! = \, \begin{bmatrix} 1 & 3  \\ 2 & 4 \end{bmatrix}
  • \begin{bmatrix} 1 & 2 \\ 3 & 4 \\ 5 & 6 \end{bmatrix}^{\mathrm{T}}  \!\! \;\! = \, \begin{bmatrix} 1 & 3 & 5\\ 2 & 4 & 6 \end{bmatrix} \;

Properties

For matrices A, B and scalar c we have the following properties of transpose:

  1. \left( A^\mathrm{T} \right) ^\mathrm{T} = A \quad \,
    Taking the transpose is an involution (self inverse).
  2. (A+B) ^\mathrm{T} = A^\mathrm{T} + B^\mathrm{T} \,
    The transpose is a linear map from the space of m × n matrices to the space of all n × m matrices.
  3. \left( A B \right) ^\mathrm{T} = B^\mathrm{T} A^\mathrm{T} \,
    Note that the order of the factors reverses. From this one can deduce that a square matrix A is invertible if and only if AT is invertible, and in this case we have (A−1)T = (AT)−1. It is relatively easy to extend this result to the general case of multiple matrices, where we find that (ABC...XYZ)T = ZTYTXT...CTBTAT.
  4. (c A)^\mathrm{T} = c A^\mathrm{T} \,
    The transpose of a scalar is the same scalar.
  5. \det(A^\mathrm{T}) = \det(A) \,
    The determinant of a matrix is the same as that of its transpose.
  6. The dot product of two column vectors a and b can be computed as
    \mathbf{a} \cdot \mathbf{b} = \mathbf{a}^{\mathrm{T}} \mathbf{b},
    which is written as ai bi in Einstein notation.
  7. If A has only real entries, then ATA is a positive-semidefinite matrix.
  8. If A is over some field, then A is similar to AT.
  9. (A^\mathrm{T})^{-1} = (A^{-1})^\mathrm{T} \,
    For an invertible matrix A, the transpose of the inverse is the inverse of the transpose.
  10. If A is a square matrix, then its eigenvalues are equal to the eigenvalues of its transpose.

Special transpose matrices

A square matrix whose transpose is equal to itself is called a symmetric matrix; that is, A is symmetric if

A^{\mathrm{T}} = A.\,

A square matrix whose transpose is also its inverse is called an orthogonal matrix; that is, G is orthogonal if

G G^\mathrm{T} = G^\mathrm{T} G = I_n , \,   the identity matrix. ie :G^\mathrm{T} = G^\mathrm{-1}, \,

A square matrix whose transpose is equal to its negative is called skew-symmetric matrix; that is, A is skew-symmetric if

A^{\mathrm{T}} = -A.\,

The conjugate transpose of the complex matrix A, written as A*, is obtained by taking the transpose of A and the complex conjugate of each entry:

A^* = (\overline{A})^{\mathrm{T}} = \overline{(A^{\mathrm{T}})}.

Transpose of linear maps

If f: VW is a linear map between vector spaces V and W with nondegenerate bilinear forms, we define the transpose of f to be the linear map tf : WV, determined by

B_V(v,{}^tf(w))=B_W(f(v),w) \quad \forall\ v \in V, w \in W.

Here, BV and BW are the bilinear forms on V and W respectively. The matrix of the transpose of a map is the transposed matrix only if the bases are orthonormal with respect to their bilinear forms.

Over a complex vector space, one often works with sesquilinear forms instead of bilinear (conjugate-linear in one argument). The transpose of a map between such spaces is defined similarly, and the matrix of the transpose map is given by the conjugate transpose matrix if the bases are orthonormal. In this case, the transpose is also called the Hermitian adjoint.

If V and W do not have bilinear forms, then the transpose of a linear map f: VW is only defined as a linear map tf : W*V* between the dual spaces of W and V.

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 the 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 (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) 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.

External links


 
Translations: Translations for: Transpose

Dansk (Danish)
v. tr. - transponere, omsætte, flytte
v. intr. - omsøtte, transponere, omflytte
n. - transponer, omsæt, flyt

Nederlands (Dutch)
verplaatsen, omzetten

Français (French)
v. tr. - intervertir, (Math, Mus) transposer
v. intr. - (Mus) transposer, admettre une transposition
n. - interversion, (Math, Mus) transposition

Deutsch (German)
v. - umstellen, transponieren, vertauschen
n. - transponierte Matrix

Ελληνική (Greek)
v. - (αντι)μεταθέτω, μετατοπίζω, μετατάσσω
n. - (μαθ.) ανάστροφος πίνακας

Italiano (Italian)
trasposizione, trasporre

Português (Portuguese)
v. - transpor, inverter a ordem de, trocar a posição de
n. - alterar em forma ou natureza

Русский (Russian)
перемещать, переставлять, (муз.) транспонировать

Español (Spanish)
v. tr. - transponer, transportar
v. intr. - transponer
n. - transposición

Svenska (Swedish)
v. - flytta om, kasta om, låta byta plats, transponera (mus.)
n. - transponering

中文(简体) (Chinese (Simplified))
调换, 变调, 移项, 移位, 进行变换, 转置阵

中文(繁體) (Chinese (Traditional))
v. tr. - 調換, 變調, 移項, 移位
v. intr. - 進行變換
n. - 轉置陣

한국어 (Korean)
v. tr. - 바꾸어 놓다, 교차 시키다, 고쳐 표현하다
v. intr. - 이조하다, 바꾸어 넣을 수 있다
n. - 전치행렬

日本語 (Japanese)
v. - 位置を変える, 置き換える, 言い換える
n. - 転置行列

العربيه (Arabic)
‏(فعل) ينقل, يترجم, يحول (الاسم) نقل, ترجمه, تحويل‏

עברית (Hebrew)
v. tr. - ‮שינה סדר, החליף מקומות, הפך, העביר איבר לצד השני של המשוואה (מתמטיקה)‬
v. intr. - ‮ביצע קטע מוסיקלי במפתח שונה מזה שנכתב בו‬
n. - ‮מטריצה שנוצרה ממטריצה אחרת ע"י חילופי מקומות (מתמטיקה)‬


 
Best of the Web: transpose

Some good "transpose" pages on the web:


Math
mathworld.wolfram.com
 
 
 

Join the WikiAnswers Q&A community. Post a question or answer questions about "transpose" at WikiAnswers.

 

Copyrights:

Dictionary. The American Heritage® Dictionary of the English Language, Fourth Edition Copyright © 2007, 2000 by Houghton Mifflin Company. Updated in 2007. Published by Houghton Mifflin Company. All rights reserved.  Read more
Marketing Dictionary. Dictionary of Marketing Terms. Copyright © 2000 by Barron's Educational Series, Inc. All rights reserved.  Read more
Thesaurus. Roget's II: The New Thesaurus, Third Edition by the Editors of the American Heritage® Dictionary Copyright © 1995 by Houghton Mifflin Company. Published by Houghton Mifflin Company. All rights reserved.  Read more
Answers Corporation Antonyms. © 1999-2008 by Answers Corporation. All rights reserved.  Read more
Word Tutor. Copyright © 2004-present by eSpindle Learning, a 501(c) nonprofit organization. All rights reserved.
eSpindle provides personalized spelling and vocabulary tutoring online; free trial Read more
Wikipedia. This article is licensed under the GNU Free Documentation License. It uses material from the Wikipedia article "Transpose" Read more
Translations. Copyright © 2007, WizCom Technologies Ltd. All rights reserved.  Read more

Search for answers directly from your browser with the FREE Answers.com Toolbar!  
Click here to download now. 

Get Answers your way! Check out all our free tools and products.

On this page:   E-mail   print Print  Link  

 

Keep Reading

Mentioned In: