Eigen Decomposition
Last updated
Last updated
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 of a matrix are those special vectors that only stretch under the action of a matrix.
Eigen Values are the factor by which eigen vectors stretch.
Eigen Decomposition is that set of vectors which only stretch under the action of matrix . Let's say, has linearly independent eigenvectors:
Then, we concatenate the corresponding eigen values into a diagonal matrix:
For real symmetric matrices, we have real eigen vectors and values:
Note: Eigen Decomposition may not be unique.
Concatenate all the vectors (as columns) and make a eigen vector matrix .
Eigen Decomposition (Factorisation) of is given by the following equation:
Thus, is orthogonal. This also means is a rotation matrix. So, for the following action:
rotates the vector in the direction of the eigen vector. Then, stretches the vector . Finally, rotates back to its original direction.