Eigendecomposition

Eigendecomposition is used to decompose a matrix to different parts.

Like any integer can be decomposed into prime factors and that would give us more information on the integer itself like is it divisible by any number or multiplier of any number.

In the same way, matrics decomposition will give us more information on the matrix itself and will make easier for many functions to work on it.

Now how to find eigendecomposition,

  1. We will first find the eigen value and vector using the formula of eigenvalue-eigenvector
  2. Lets say, for a matrix A, we have eigenvalues λ1, λ2 and the corresponding eigenvectors as v1, v2
  3. By formula we know that,
Av1=λ1v1Av2=λ2v2
  1. We will use these numbers in a matrix form by using the v1, v2 vectors in column
A|v11v21v12v22|=|v11v21v12v22||λ100λ2|
  1. If we simplify this by providing V as the column form matrix and the λ matrix as Λ, then
AV=VΛA=VΛV1

This is the eigendecomposition of matrix A

Warning

This can only be used for square matrices


References


Related Notes