Eigen Decomposition
Eigen Decomposition is extremely useful for square symmetric matrices.
The physical interpretation can be given as: "Every real matrix can be thought of as a combination of rotation and stretching."
Eigen Vectors
Eigen Vectors of a matrix are those special vectors that only stretch under the action of a matrix.
Eigen Values
Eigen Values are the factor by which eigen vectors stretch.
Eigen Decomposition Derivation
Eigen Decomposition is that set of vectors which only stretch under the action of matrix A. Let's say, A(Rn×n) has n linearly independent eigenvectors:
Concatenate all the vectors (as columns) and make a eigen vector matrix V.
Then, we concatenate the corresponding eigen values into a diagonal matrix:
Eigen Decomposition (Factorisation) of A is given by the following equation:
For real symmetric matrices, we have real eigen vectors and values:
Thus, Q is orthogonal. This also means Q is a rotation matrix. So, for the following action:
QTv rotates the vector v in the direction of the eigen vector. Then, Λ(QTv) stretches the vector v. Finally, Q(ΛQTv) rotates v back to its original direction.
Note: Eigen Decomposition may not be unique.
Last updated
