Differences between revisions 2 and 3
Revision 2 as of 2022-03-16 04:04:20
Size: 1032
Comment:
Revision 3 as of 2022-03-19 20:56:31
Size: 960
Comment:
Deletions are marked like this. Additions are marked like this.
Line 18: Line 18:
More formally, cell (''i'',''j'') of A^T^ is equal to cell (''j'',''i'') of A.
Line 20: Line 21:
== Multiplication of Transposed Matrices ==
== Notable Properties ==
Line 24: Line 26:
Inversion and transposition can be done in any order: (A^-1^)^T^ = (A^T^)^-1^.
Line 26: Line 29:
== Inverses of Transposed Matrices ==
Line 28: Line 30:
A simple proof based on the definition of inverse matrices and the above multiplicative property: == Symmetric Matrices ==
Line 30: Line 32:
{{{
      -1 -1
   A A = I = A A
A '''symmetric matrix''' is is any matrix that is equal to its transpose.
Line 34: Line 34:
(leave the left side off for now) 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:
Line 36: Line 36:
      -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.
(R^T^ R)^T^ = R^T^ (R^T^)^T^ = R^T^ R

Matrix Transposition

Introduction

The transpose of a matrix is a flipped version.

┌    ┐    ┌    ┐
│ 1 2│    │ 1 3│
│ 3 4│ -> │ 2 4│
└    ┘    └    ┘

The transpose of A is denoted AT.

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

Notable Properties

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

Inversion and transposition can be done in any order: (A-1)T = (AT)-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 RT will always create a symmetric matrix. This can be proven with the above property:

(RT R)T = RT (RT)T = RT R


CategoryRicottone

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