Differences between revisions 4 and 13 (spanning 9 versions)
Revision 4 as of 2023-07-03 04:44:24
Size: 1110
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.
Line 9: Line 11:
== Introduction == == Description ==
Line 11: Line 13:
The transpose of a matrix is a flipped version. The transpose of A is usually denoted A^T^; some notations, especially programming languages, instead use A'. 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 25: Line 29:
More formally, cell (''i'',''j'') of A^T^ is equal to cell (''j'',''i'') of A.

----
Line 30: Line 31:
=== Properties ===
Line 31: Line 33:
== Notable Properties == The transpose of a product is the same as the reversed product of the transposed multiples. ''('''AB''')^T^ = '''B'''^T^ '''A'''^T^''.
Line 33: Line 35:
The transpose of a product is the same as the reversed product of the transposed multiples. (A B)^T^ = B^T^ A^T^. [[LinearAlgebra/Invertibility|Inversion]] and transposition can be done in any order: ''('''A'''^-1^)^T^ = ('''A'''^T^)^-1^''.
Line 35: Line 37:
Inversion and transposition can be done in any order: (A^-1^)^T^ = (A^T^)^-1^. For [[LinearAlgebra/Orthogonality|orthogonal matrices]] (such as [[LinearAlgebra/SpecialMatrices#Permutation_Matrices|permutation matrices]]), the transpose and inverse are equivalent: '''''Q'''^T^ = '''Q'''^-1^''.
Line 37: Line 39:
---- A [[LinearAlgebra/SpecialMatrices#Symmetric_Matrices|symmetric matrix]] is equal to its transpose: '''''A''' = '''A'''^T^''. Only square matrices can be symmetric.
Line 39: Line 41:


== Symmetric Matrices ==

A '''symmetric matrix''' is is any matrix that is equal to its transpose.

Only square matrices (''n'' by ''n'') can be symmetric. However, multiplying a rectangular matrix R by its transpose R^T^ will always create a symmetric matrix. This can be proven with the above property:

(R^T^ R)^T^ = R^T^ (R^T^)^T^ = R^T^ R
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)