Differences between revisions 5 and 6
Revision 5 as of 2023-07-03 04:44:45
Size: 1122
Comment:
Revision 6 as of 2024-01-21 18:23:32
Size: 1315
Comment: Reorganized
Deletions are marked like this. Additions are marked like this.
Line 2: Line 2:

For any matrix '''''A''''', the transposition ('''''A'''^T^'') is a flipped version.

An alternative notation, found especially in programming languages like [[Stata]], [[Julia]], and [[MATLAB]], is '''''A' '''''.
Line 9: Line 13:
== Introduction == == Definition ==
Line 11: Line 15:
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''''. 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.

=== Properties ===

The transpose of a product is the same as the reversed product of the transposed multiples. ''('''AB''')^T^ = '''B'''^T^ '''A'''^T^''.

[[LinearAlgebra/MatrixInversion|Inversion]] and transposition can be done in any order: ''('''A'''^-1^)^T^ = ('''A'''^T^)^-1^''.
Line 31: Line 41:
== Notable Properties == == Symmetry ==
Line 33: Line 43:
The transpose of a product is the same as the reversed product of the transposed multiples. (A B)^T^ = B^T^ A^T^. A [[LinearAlgebra/MatrixProperties#Symmetry|symmetric]] matrix is equal to its transpose: '''''A''' = '''A'''^T^''. Only square matrices (''n'' by ''n'') can be symmetric.
Line 35: Line 45:
Inversion and transposition can be done in any order: (A^-1^)^T^ = (A^T^)^-1^.

----



== 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
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'''''.

Matrix Transposition

For any matrix A, the transposition (AT) is a flipped version.

An alternative notation, found especially in programming languages like Stata, Julia, and MATLAB, is A' .


Definition

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.


Symmetry

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

However, multiplying a rectangular matrix R by its transpose RT will always create a symmetric matrix. This can be proven with the above property: (RTR)T = RT(RT)T = RTR.


CategoryRicottone

LinearAlgebra/MatrixTransposition (last edited 2024-01-27 21:22:51 by DominicRicottone)