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 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)