Eigen Values and Eigen Vectors Eigen vector of a matrix A is a vector represented by a matrix X such that when X is multiplied with matrix A, then the direction of the resultant matrix remains same as vector X. Mathematically, above statement can be represented as: AX = λX where A is any arbitrary matrix, λ are eigen values and X is an eigen vector corresponding to each eigen value. Here, we can see that AX is parallel to X. So, X is an eigen vector. Method to find eigen vectors and eigen values of any square matrix A We know that, AX = λX => AX – λX = 0 => (A – λI) X = 0 …..(1) Above condition will be true only if (A – λI) is singular. That means, |A – λI| = 0 …..(2) (2) is known as characteristic equation of the matrix. The roots of the characteristic equation are the eigen values of the matrix A. Now, to find the eigen vectors, we simply put each eigen v...
Comments
Post a Comment