Eigenvalues and Eigenvectors
Eigenvalue problem Let π© be an πΓπ matrix: π β π is an eigenvector of π© if there exists a scalar π such that π© π = π π where π is called an eigenvalue . If π is an eigenvector, then Ξ±π is also an eigenvector. Therefore, we will usually seek for normalized eigenvectors , so that π = 1 Note: When using Python, numpy.linalg.eig will normalize using p=2 norm.
How do we find eigenvalues? Linear algebra approach: π© π = π π π© β π π± π = π Therefore the matrix π© β π π± is singular βΉ πππ’ π© β π π± = 0 π π = πππ’ π© β π π± is the characteristic polynomial of degree π . In most cases, there is no analytical formula for the eigenvalues of a matrix (Abel proved in 1824 that there can be no formula for the roots of a polynomial of degree 5 or higher) βΉ Approximate the eigenvalues numerically !
Example π© = 2 1 πππ’ 2 β π 1 2 β π = 0 4 2 4
Diagonalizable Matrices A πΓπ matrix π© with π linearly independent eigenvectors π is said to be diagonalizable . π© π π = π " π π , π© π π = π $ π π , β¦ π© π π = π & π π ,
πππ’ 2 β π 1 π© = 2 1 Example 2 β π = 0 4 4 2 Solution of characteristic polynomial gives: π " = 4, π $ = 0 To get the eigenvectors, we solve: π© π = π π π¦ ! 2 β (4) 1 = 0 π = 1 π¦ " 4 2 β (4) 0 2 π¦ ! 2 β (0) 1 π = β1 = 0 π¦ " 2 4 2 β (0) 0
Example The eigenvalues of the matrix: π© = 3 β18 2 β9 are π " = π $ = β3 . Select the incorrect statement: A) Matrix π© is diagonalizable B) The matrix π© has only one eigenvalue with multiplicity 2 C) Matrix π© has only one linearly independent eigenvector D) Matrix π© is not singular
Letβs look back at diagonalizationβ¦ 1) If a πΓπ matrix π© has π linearly independent eigenvectors π then π© is diagonalizable, i.e., π© = π½π¬π½ 1π where the columns of π½ are the linearly independent normalized eigenvectors π of π© (which guarantees that π½ 1π exists) and π¬ is a diagonal matrix with the eigenvalues of π© . 2) If a πΓπ matrix π© has less then π linearly independent eigenvectors, the matrix is called defective (and therefore not diagonalizable). 3) If a πΓπ symmetric matrix π© has π distinct eigenvalues then π© is diagonalizable.
A πΓπ symmetric matrix π© with π distinct eigenvalues is diagonalizable. Suppose π , π and π, π are eigenpairs of π© π π = π©π π π = π©π
Some things to remember about eigenvalues: β’ Eigenvalues can have zero value β’ Eigenvalues can be negative β’ Eigenvalues can be real or complex numbers β’ A πΓπ real matrix can have complex eigenvalues β’ The eigenvalues of a πΓπ matrix are not necessarily unique. In fact, we can define the multiplicity of an eigenvalue. β’ If a πΓπ matrix has π linearly independent eigenvectors, then the matrix is diagonalizable
How can we get eigenvalues numerically? Assume that π© is diagonalizable (i.e., it has π linearly independent eigenvectors π ). We can propose a vector π which is a linear combination of these eigenvectors: π = π½ ! π ! + π½ " π " + β― + π½ # π #
Power Iteration Our goal is to find an eigenvector π $ of π©. We will use an iterative process, where we start with an initial vector, where here we assume that it can be written as a linear combination of the eigenvectors of π© . π % = π½ ! π ! + π½ " π " + β― + π½ # π #
Power Iteration 2 2 π $ π & π 2 = π " 2 π½ " π " + π½ $ π $ + β― + π½ & π & π " π " Assume that π½ " β 0 , the term π½ " π " dominates the others when π is very large. 2 Since |π " > |π $ , we have 3 ! βͺ 1 when π is large 3 " Hence, as π increases, π 2 converges to a multiple of the first eigenvector π " , i.e.,
Recommend
More recommend