Differences between revisions 1 and 4 (spanning 3 versions)
Revision 1 as of 2024-01-30 16:02:13
Size: 1274
Comment: Initial commit
Revision 4 as of 2026-02-02 05:36:30
Size: 2431
Comment: Cleanup
Deletions are marked like this. Additions are marked like this.
Line 11: Line 11:
== Introduction == == Description ==
Line 13: Line 13:
A [[LinearAlgebra/SpecialMatrices#Diagonal_Matrices|diagonal matrix]] has many useful properties. A [[LinearAlgebra/MatrixProperties#Diagonalizability|diagonalizable matrix]] is a ''square'' matrix that can be factored into one. A square matrix that cannot be factored like this is called '''defective'''. A '''diagonal matrix''' is a diagonal line of numbers in a square matrix of zeros.

Such a matrix has many useful properties.
 * Its columns are its [[LinearAlgebra/EigenvaluesAndEigenvectors|eigenvectors]]
 * The numbers in the diagonal are the [[LinearAlgebra/EigenvaluesAndEigenvectors|eigenvalues]]
 * The [[LinearAlgebra/Determinant|determinant]] is the project of the numbers in the diagonal

'''Diagonalization''' is a decomposition that turns a matrix into a diagonal matrix, with some change of basis matrices to the left and right of it. The idea follows from eigenvectors:
 * Recall that '''''A'''x = λx''.
 * It follows that '''''AS''' = '''SΛ''''' where...
   * '''''S''''' is the eigenbasis composed of all eigenvectors ''x''.
   * '''''Λ''''' is the diagonal matrix where the numbers in the diagonal are the eigenvalues.

Recall that only square matrices have eigenvectors, and that a matrix of size ''n x n'' either has ''n'' unique eigenpairs or is '''defective'''. These restrictions apply to diagonalization; a matrix that cannot be diagonalized is defective.
Line 19: Line 32:
== Definition == == Procedure ==
Line 21: Line 34:
Given a matrix '''''A''''', notate the matrix of its [[LinearAlgebra/EigenvaluesAndEigenvectors|eigenvectors]] as '''''S'''''. A diagonalizable matrix can be factored as '''''A''' = '''SΛS'''^-1^''. The procedure for diagonalizing '''''A''''' is:
 * solving for [[LinearAlgebra/EigenvaluesAndEigenvectors|eigenvalues and eigenvectors]]
 * constructing '''''S''''' and '''''Λ''''' as described above
   * Note that order of eigenpairs does not matter, as long as the orders in '''''S''''' and '''''Λ''''' match.
 * [[LinearAlgebra/Invertibility|inverting]] '''''S'''''
Line 23: Line 40:
'''''Λ''''' will be a diagonal matrix with the [[LinearAlgebra/EigenvaluesAndEigenvectors|eigenvalues]] of '''''A''''' in the diagonal. In the case of a [[LinearAlgebra/SpecialMatrices#Symmetric_Matrices|symmetric]] matrix '''''A''''', the eigenbasis can be [[LinearAlgebra/Transposition|transposed]] instead of calculating the inverse. To indicate this, the eigenbasis is generally notated as '''''Q''''' instead, as in '''''A''' = '''QΛQ'''^T^''.
Line 25: Line 42:
In other words, '''''A''''' can be rewritten as a eigennormalized (i.e. transformed by '''''S''''') then un-eigennormalized (i.e. transformed by '''''S'''^-1^'') diagonal matrix '''''Λ'''''. ----
Line 29: Line 46:
=== Properties === == Usage ==
Line 31: Line 48:
Diagonalization is useful primarily for repeated multiplication by a matrix. '''''A'''^2^ = '''SΛ'''^2^'''S'''^-1^'', and more generally '''''A'''^K^ = '''SΛ'''^K^'''S'''^-1^''. Diagonalization offers clean solutions to mathematical models.

'''''A'''^2^ = '''SΛ'''^2^'''S'''^-1^'', and more generally '''''A'''^K^ = '''SΛ'''^K^'''S'''^-1^''.

Similarly, ''e'''^A^''' = '''S'''e'''^Λ^S'''^-1^''. Note that ''e'''^Λ^''''' is a diagonal matrix with ''e'' to the power of the [[LinearAlgebra/EigenvaluesAndEigenvectors|eigenvalues]] of '''''A''''' in the diagonal.

Diagonalization

Diagonalization is an alternative decomposition of square matrices.


Description

A diagonal matrix is a diagonal line of numbers in a square matrix of zeros.

Such a matrix has many useful properties.

Diagonalization is a decomposition that turns a matrix into a diagonal matrix, with some change of basis matrices to the left and right of it. The idea follows from eigenvectors:

  • Recall that Ax = λx.

  • It follows that AS = where...

    • S is the eigenbasis composed of all eigenvectors x.

    • Λ is the diagonal matrix where the numbers in the diagonal are the eigenvalues.

Recall that only square matrices have eigenvectors, and that a matrix of size n x n either has n unique eigenpairs or is defective. These restrictions apply to diagonalization; a matrix that cannot be diagonalized is defective.


Procedure

The procedure for diagonalizing A is:

In the case of a symmetric matrix A, the eigenbasis can be transposed instead of calculating the inverse. To indicate this, the eigenbasis is generally notated as Q instead, as in A = QΛQT.


Usage

Diagonalization offers clean solutions to mathematical models.

A2 = 2S-1, and more generally AK = KS-1.

Similarly, eA = SeΛS-1. Note that eΛ is a diagonal matrix with e to the power of the eigenvalues of A in the diagonal.


CategoryRicottone

LinearAlgebra/Diagonalization (last edited 2026-02-02 05:36:30 by DominicRicottone)