Differences between revisions 2 and 13 (spanning 11 versions)
Revision 2 as of 2022-03-16 04:04:20
Size: 1032
Comment:
Revision 13 as of 2025-10-16 13:38:57
Size: 1440
Comment: Two notes
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
= Matrix Transposition = = Transposition =

'''Transposition''' is the process of 'flipping' a matrix.

<<TableOfContents>>

-----
Line 5: Line 11:
== Introduction == == Description ==
Line 7: Line 13:
The transpose of a matrix is a flipped version. A transposed matrix is commonly notated with a ''T'' superscript, as in '''''A'''^T^''. In many programming languages however, the notation '''''A' ''''' is preferred.

Cell (''i'',''j'') of '''''A'''^T^'' is equal to cell (''j'',''i'') of '''''A'''''.
Line 10: Line 18:
┌ ┐ ┌ ┐
│ 1 2│ │ 1 3│
│ 3 4│ -> │ 2 4│
└ ┘ └ ┘
julia> A = [1 2; 3 4]
2×2 Matrix{Int64}:
 1 2
 3 4

julia> A'
2×2 adjoint(::Matrix{Int64}) with eltype Int64:
 1 3
 2 4
Line 15: Line 28:

The transpose of A is denoted A^T^.
Line 20: Line 31:
== Multiplication of Transposed Matrices == === Properties ===
Line 22: Line 33:
The transpose of a product is the same as the reversed product of the transposed multiples. (A B)^T^ = B^T^ A^T^. The transpose of a product is the same as the reversed product of the transposed multiples. ''('''AB''')^T^ = '''B'''^T^ '''A'''^T^''.
Line 24: Line 35:
[[LinearAlgebra/Invertibility|Inversion]] and transposition can be done in any order: ''('''A'''^-1^)^T^ = ('''A'''^T^)^-1^''.
Line 25: Line 37:
For [[LinearAlgebra/Orthogonality|orthogonal matrices]] (such as [[LinearAlgebra/SpecialMatrices#Permutation_Matrices|permutation matrices]]), the transpose and inverse are equivalent: '''''Q'''^T^ = '''Q'''^-1^''.
Line 26: Line 39:
== Inverses of Transposed Matrices == A [[LinearAlgebra/SpecialMatrices#Symmetric_Matrices|symmetric matrix]] is equal to its transpose: '''''A''' = '''A'''^T^''. Only square matrices can be symmetric.
Line 28: Line 41:
A simple proof based on the definition of inverse matrices and the above multiplicative property:

{{{
      -1 -1
   A A = I = A A

(leave the left side off for now)

      -1
   A A = I

       T
     -1 T
  A A = I

       T
     -1
  A A = I

   T
 -1 T
A A = I

(bring back the left side)

   T
 -1 T -1
A A = I = A A

(and it should now be clear that)

   T -1
 -1 T
A = A
}}}

Inverses and transposes can be done in any order.
Transposition does not change the [[LinearAlgebra/Determinant|determinant]] or the [[LinearAlgebra/Trace|trace]]:
 * ''|'''A'''| = |'''A'''^T^|''
 * ''tr('''A''') = tr('''A'''^T^)''

Transposition

Transposition is the process of 'flipping' a matrix.


Description

A transposed matrix is commonly notated with a T superscript, as in AT. In many programming languages however, the notation A' is preferred.

Cell (i,j) of AT is equal to cell (j,i) of A.

julia> A = [1 2; 3 4]
2×2 Matrix{Int64}:
 1  2
 3  4

julia> A'
2×2 adjoint(::Matrix{Int64}) with eltype Int64:
 1  3
 2  4

Properties

The transpose of a product is the same as the reversed product of the transposed multiples. (AB)T = BT AT.

Inversion and transposition can be done in any order: (A-1)T = (AT)-1.

For orthogonal matrices (such as permutation matrices), the transpose and inverse are equivalent: QT = Q-1.

A symmetric matrix is equal to its transpose: A = AT. Only square matrices can be symmetric.

Transposition does not change the determinant or the trace:

  • |A| = |AT|

  • tr(A) = tr(AT)


CategoryRicottone

LinearAlgebra/Transposition (last edited 2026-02-06 23:30:46 by DominicRicottone)