SlideShare a Scribd company logo
6.1 Eigenvalues and Diagonalization
Definitions
A is n x n. λ is an eigenvalue of A if
AX = λX has non zero solutions X (called eigenvectors)
If λ is an eigenvalue of A, the set
Eλ = Eλ(A) = {X | X in ℜn
, AX = λX}
is a vector space called the eigenspace associated w/ λ
(i.e. Eλ is all eigenvectors corresponding to λ & 0 vector)
λ is eigenvalue if Eλ has at least one non-zero vector.
Can also write AX = λX as (λIn - A)X = 0
Example
Show that λ = -3 is an eigenvalue of A, and find the
eigenspace E-3.
A =
5 8 16
4 1 8
−4 −4 −11










Write out (λIn - A)X = 0 and solve.
Get:
X = s
−1
1
0










+ t
−2
0
1










So it is an eigenvalue since there is a
non-zero solution. Eigenspace is:
E−3 = span
−1
1
0










,
−2
0
1




















Discussion
Now we have (λIn - A)X = 0, and λ is an eigenvalue iff there
exists a nonzero solution X.
Recall that a matrix U is invertible iff UX = 0 implies X = 0.
So, since we are looking for a nonzero solution above,
(λIn-A) cannot be invertible for λ to be an eigenvalue.
So det (λIn-A) =0.
Definition
The characteristic polynomial of the n x n matrix A is:
cA(x) = det(xI - A)
Theorem 1
A (n x n). The eigenvalues of A are the real roots of the
characteristic polynomial of A --the real numbers λ satisfying:
cA(λ) = det(λIn - A) = 0
The eigenspace Eλ = {X | (λI - A)X = 0}
consists of all solutions to a system of n linear equations in n
variables.
The eigenvectors corresponding to λ are the nonzero vectors
in the eigenspace.
Summary
So there are two issues: finding eigenvalues, and finding
eigenspaces (and eigenvectors).
Finding the eigenvalues can be difficult - won’t do much here.
Spend more time dealing with eigenspaces.
Example
Find the characteristic polynomial, eigenvalues, and
eigenspaces of A:
A =
1 −2 3
2 6 −6
1 2 −1










Set up cA(x) = det (xI - A)
Eigenvalues will be the roots of the polynomial as those will
give us where det is 0.
Then use those λ to find eigenspace: X such that (λ I-A)X=0
Example
If A is a triangular matrix, show that the eigenvalues of A are
the entries on the main diagonal.
Proof: cA(x) = det (xI - A) = det ( a triangular matrix) =
product of entries on main diagonal of (xI - A).
The matrix showing entries on main diagonal is:
x − a11
x − a22
...
x − ann












det = (x-a11)(x-a22)…(x-ann)
So eigenvalues are{a11,a22,…,ann}
Example
Show that A and AT
have the same characteristic polynomial
and thus the same eigenvalues.
Proof: From chapter 3, we know that a matrix and its
transpose will have the same determinant.
cA
T (x) = det(xI − AT
) = det((xI)T
− A)T
= det(xI − A)T
= det(xI − A) = cA
(x)
Theorem 2
If A is a real symmetric matrix, each root of the characteristic
polynomial cA(x) is real. (to be proven later)
Show this is true for a (2 x 2):
A =
a b
b c






cA (x) = det
x − a −b
−b x − c





 = (x − a)(x − c) − b
2
= x2
− x(a + c) + (ac − b2
)
Recall that we can determine the nature of the roots from the
discriminant: (b2
-4ac) = (a+c)2
-4(ac+b2
) = a2
+c2
+2ac-4ac+4b2
=a2
-2ac+c2
+4b2
= (a-c)2
+ 4b2
which is always pos so real roots.
Similar Matrices
A, B (n x n) are similar (we say A~B) if B = P-1
AP
holds for some invertible matrix.
P is not unique.
Example
Find P-1
AP in the following case, then compute An
.
P =
1 5
1 2





, A =
6 −5
2 −1






We are able to find a similar matrix B.
Then P-1
AP=B.
So A = PBP-1
So A2
=(PBP-1
)(PBP-1
)=PB2
P-1
Generally An
=PBn
P-1
Life is made easy is B is diagonal since we just raise entries to n.
Interesting Fact
Similar Matrices will have the same determinant.
Proof:
P-1
AP = D
det(D) = det (P-1
AP) = (detP-1
)(detA)(detP) = (1/detP)(detA)
(det P) = det A.
Example
Show that A and B are not similar.
A =
1 2
2 1





,B =
1 1
−1 1






Just need to show that they do not have the same determinant.
Trace
The trace of a square matrix A (tr A) is the sum of the entries
on the main diagonal of A.
Theorem 3
A,B (n x n), k is a scalar:
1. tr(A + B) = tr A + tr B and tr(kA) = k tr A
2. tr (AB) = tr (BA)
Proof:
1. (homework)
2. AB =
a1j
bj1
j=1
n
∑
a2 jbj2
j=1
n
∑
...
anj
bjn
j=1
n
∑


















tr(AB) = aijbji
j=1
n
∑






i=1
n
∑ = bjiaij
i=1
n
∑


j=1
n
∑ = tr(BA)
Theorem 4
If A~B, they have the same determinant, the same rank, the same
trace, the same characteristic polynomial, and the same
eigenvalues. (similarity invariants)
Proof: Already shown that they have the same determinant.
Rank: Have B = P-1
AP
rank (B) = rank (P-1
AP) = rank(AP)=rankA since P is invertible
(and using cor 4 of thm 4 in 5.5)
tr B = tr (P-1
AP) = tr[(AP)P-1
] = tr (A) (uses thm 3)
Theorem 4 - cont
Characteristic polynomial
cB(x) = det (xI - B) = det(xI - P-1
AP)=det(P-1
xIP - P-1
AP)
(since xI = P-1
xIP -- since xI is diagonal)
= det [P-1
(xI - A)P]=(1/detP)(det(xI-A))(det P) = det(xI-A) = cA(x)
Eigenvalues: all matrices with the same characteristic poly will
have the same eigenvalues since the eigenvalues are the roots of
the characteristic polynomial.

Fact
The invariants do not imply similarity.
Ex. I =
1 0
0 1





, A =
1 2
0 1






Have same det,tr,rank,characteristic poly, eigenvalues, but are
not similar since P-1
IP = I A≠
Theorem 5
A,B,C (n x n). Then:
1. A~A for all A.
2. If A ~ B, then B~A
3. If A ~ B and B ~ C, then A~C.
Proof of 2 (others follow):
A~B ⇒ B = P-1
AP
Let Q = P-1
, then B = QAQ-1
, so A= Q-1
BQ
Which means that B ~ A.
Use of thm 5
Proving similarity is not always easy. But if we can find a simple
(often diagonal) matrix to which both A and B are both similar,
then: A~D and B~D means D~B by (2)
and A~B then by (3)

More Related Content

What's hot

Eigen value , eigen vectors, caley hamilton theorem
Eigen value , eigen vectors, caley hamilton theoremEigen value , eigen vectors, caley hamilton theorem
Eigen value , eigen vectors, caley hamilton theorem
gidc engineering college
 
A Coq Library for the Theory of Relational Calculus
A Coq Library for the Theory of Relational CalculusA Coq Library for the Theory of Relational Calculus
A Coq Library for the Theory of Relational Calculus
Yoshihiro Mizoguchi
 
Eigen value and eigen vector
Eigen value and eigen vectorEigen value and eigen vector
Eigen value and eigen vector
Rutvij Patel
 
Eigen values and eigenvectors
Eigen values and eigenvectorsEigen values and eigenvectors
Eigen values and eigenvectorsAmit Singh
 
4. Linear Algebra for Machine Learning: Eigenvalues, Eigenvectors and Diagona...
4. Linear Algebra for Machine Learning: Eigenvalues, Eigenvectors and Diagona...4. Linear Algebra for Machine Learning: Eigenvalues, Eigenvectors and Diagona...
4. Linear Algebra for Machine Learning: Eigenvalues, Eigenvectors and Diagona...
Ceni Babaoglu, PhD
 
Eigen value and vectors
Eigen value and vectorsEigen value and vectors
Eigen value and vectors
Praveen Prashant
 
CBSE Class 12 Mathematics formulas
CBSE Class 12 Mathematics formulasCBSE Class 12 Mathematics formulas
CBSE Class 12 Mathematics formulas
Parth Kshirsagar
 
5. Linear Algebra for Machine Learning: Singular Value Decomposition and Prin...
5. Linear Algebra for Machine Learning: Singular Value Decomposition and Prin...5. Linear Algebra for Machine Learning: Singular Value Decomposition and Prin...
5. Linear Algebra for Machine Learning: Singular Value Decomposition and Prin...
Ceni Babaoglu, PhD
 
Unit i
Unit i Unit i
Unit i sunmo
 
1. Linear Algebra for Machine Learning: Linear Systems
1. Linear Algebra for Machine Learning: Linear Systems1. Linear Algebra for Machine Learning: Linear Systems
1. Linear Algebra for Machine Learning: Linear Systems
Ceni Babaoglu, PhD
 
Eighan values and diagonalization
Eighan values and diagonalization Eighan values and diagonalization
Eighan values and diagonalization
gandhinagar
 
Eigen values and eigen vectors engineering
Eigen values and eigen vectors engineeringEigen values and eigen vectors engineering
Eigen values and eigen vectors engineering
shubham211
 
Maths-->>Eigenvalues and eigenvectors
Maths-->>Eigenvalues and eigenvectorsMaths-->>Eigenvalues and eigenvectors
Maths-->>Eigenvalues and eigenvectors
Jaydev Kishnani
 
2. Linear Algebra for Machine Learning: Basis and Dimension
2. Linear Algebra for Machine Learning: Basis and Dimension2. Linear Algebra for Machine Learning: Basis and Dimension
2. Linear Algebra for Machine Learning: Basis and Dimension
Ceni Babaoglu, PhD
 
Per6 basis2_NUMBER SYSTEMS
Per6 basis2_NUMBER SYSTEMSPer6 basis2_NUMBER SYSTEMS
Per6 basis2_NUMBER SYSTEMS
Evert Sandye Taasiringan
 
eigenvalue
eigenvalueeigenvalue
eigenvalue
Asyraf Ghani
 
Eigenvalues and eigenvectors
Eigenvalues and eigenvectorsEigenvalues and eigenvectors
Eigenvalues and eigenvectors
iraq
 

What's hot (20)

Unit ii
Unit iiUnit ii
Unit ii
 
Eigen value , eigen vectors, caley hamilton theorem
Eigen value , eigen vectors, caley hamilton theoremEigen value , eigen vectors, caley hamilton theorem
Eigen value , eigen vectors, caley hamilton theorem
 
A Coq Library for the Theory of Relational Calculus
A Coq Library for the Theory of Relational CalculusA Coq Library for the Theory of Relational Calculus
A Coq Library for the Theory of Relational Calculus
 
Eigen value and eigen vector
Eigen value and eigen vectorEigen value and eigen vector
Eigen value and eigen vector
 
Eigen values and eigenvectors
Eigen values and eigenvectorsEigen values and eigenvectors
Eigen values and eigenvectors
 
4. Linear Algebra for Machine Learning: Eigenvalues, Eigenvectors and Diagona...
4. Linear Algebra for Machine Learning: Eigenvalues, Eigenvectors and Diagona...4. Linear Algebra for Machine Learning: Eigenvalues, Eigenvectors and Diagona...
4. Linear Algebra for Machine Learning: Eigenvalues, Eigenvectors and Diagona...
 
Eigen value and vectors
Eigen value and vectorsEigen value and vectors
Eigen value and vectors
 
CBSE Class 12 Mathematics formulas
CBSE Class 12 Mathematics formulasCBSE Class 12 Mathematics formulas
CBSE Class 12 Mathematics formulas
 
5. Linear Algebra for Machine Learning: Singular Value Decomposition and Prin...
5. Linear Algebra for Machine Learning: Singular Value Decomposition and Prin...5. Linear Algebra for Machine Learning: Singular Value Decomposition and Prin...
5. Linear Algebra for Machine Learning: Singular Value Decomposition and Prin...
 
Maths
MathsMaths
Maths
 
Unit i
Unit i Unit i
Unit i
 
1. Linear Algebra for Machine Learning: Linear Systems
1. Linear Algebra for Machine Learning: Linear Systems1. Linear Algebra for Machine Learning: Linear Systems
1. Linear Algebra for Machine Learning: Linear Systems
 
Eighan values and diagonalization
Eighan values and diagonalization Eighan values and diagonalization
Eighan values and diagonalization
 
Eigen values and eigen vectors engineering
Eigen values and eigen vectors engineeringEigen values and eigen vectors engineering
Eigen values and eigen vectors engineering
 
Maths-->>Eigenvalues and eigenvectors
Maths-->>Eigenvalues and eigenvectorsMaths-->>Eigenvalues and eigenvectors
Maths-->>Eigenvalues and eigenvectors
 
2. Linear Algebra for Machine Learning: Basis and Dimension
2. Linear Algebra for Machine Learning: Basis and Dimension2. Linear Algebra for Machine Learning: Basis and Dimension
2. Linear Algebra for Machine Learning: Basis and Dimension
 
Per6 basis2_NUMBER SYSTEMS
Per6 basis2_NUMBER SYSTEMSPer6 basis2_NUMBER SYSTEMS
Per6 basis2_NUMBER SYSTEMS
 
eigenvalue
eigenvalueeigenvalue
eigenvalue
 
Eigenvalues
EigenvaluesEigenvalues
Eigenvalues
 
Eigenvalues and eigenvectors
Eigenvalues and eigenvectorsEigenvalues and eigenvectors
Eigenvalues and eigenvectors
 

Similar to Eighan values and diagonalization

Partial midterm set7 soln linear algebra
Partial midterm set7 soln linear algebraPartial midterm set7 soln linear algebra
Partial midterm set7 soln linear algebra
meezanchand
 
Chpt 2-sets v.3
Chpt 2-sets v.3Chpt 2-sets v.3
Chpt 2-sets v.3
ShahidAkbar22
 
Notes on eigenvalues
Notes on eigenvaluesNotes on eigenvalues
Notes on eigenvalues
AmanSaeed11
 
Algebra
AlgebraAlgebra
Relation and function_xii
Relation and function_xiiRelation and function_xii
Relation and function_xii
Barnali Banerjee
 
Hussam Malibari Heckman MAT 242 Spring 2017Assignment Chapte.docx
Hussam Malibari Heckman MAT 242 Spring 2017Assignment Chapte.docxHussam Malibari Heckman MAT 242 Spring 2017Assignment Chapte.docx
Hussam Malibari Heckman MAT 242 Spring 2017Assignment Chapte.docx
wellesleyterresa
 
eigenvalueandeigenvector72-80-160505220126 (1).pdf
eigenvalueandeigenvector72-80-160505220126 (1).pdfeigenvalueandeigenvector72-80-160505220126 (1).pdf
eigenvalueandeigenvector72-80-160505220126 (1).pdf
Sunny432360
 
Mathematics JEE quick revision notes pdf
Mathematics JEE quick revision notes pdfMathematics JEE quick revision notes pdf
Mathematics JEE quick revision notes pdf
gowhiksankar54
 
Diagonalization of matrix
Diagonalization of matrixDiagonalization of matrix
Diagonalization of matrix
VANDANASAINI29
 
Diagonalization of Matrices
Diagonalization of MatricesDiagonalization of Matrices
Diagonalization of Matrices
AmenahGondal1
 
Assignments for class XII
Assignments for class XIIAssignments for class XII
Assignments for class XII
indu thakur
 
Linear Algebra Assignment help
Linear Algebra Assignment helpLinear Algebra Assignment help
Linear Algebra Assignment help
Maths Assignment Help
 
Matrices & determinants
Matrices & determinantsMatrices & determinants
Matrices & determinantsindu thakur
 
Relations & functions
Relations & functionsRelations & functions
Relations & functions
indu thakur
 
00_1 - Slide Pelengkap (dari Buku Neuro Fuzzy and Soft Computing).ppt
00_1 - Slide Pelengkap (dari Buku Neuro Fuzzy and Soft Computing).ppt00_1 - Slide Pelengkap (dari Buku Neuro Fuzzy and Soft Computing).ppt
00_1 - Slide Pelengkap (dari Buku Neuro Fuzzy and Soft Computing).ppt
DediTriLaksono1
 
Answers Of Discrete Mathematics
Answers Of Discrete MathematicsAnswers Of Discrete Mathematics
Answers Of Discrete Mathematics
Sabrina Green
 
Lecture_06_Part_1.ppt
Lecture_06_Part_1.pptLecture_06_Part_1.ppt
Lecture_06_Part_1.ppt
YoganJayaKumar1
 
Linear Algebra and Matrix
Linear Algebra and MatrixLinear Algebra and Matrix
Linear Algebra and Matrixitutor
 

Similar to Eighan values and diagonalization (20)

Partial midterm set7 soln linear algebra
Partial midterm set7 soln linear algebraPartial midterm set7 soln linear algebra
Partial midterm set7 soln linear algebra
 
Chpt 2-sets v.3
Chpt 2-sets v.3Chpt 2-sets v.3
Chpt 2-sets v.3
 
Notes on eigenvalues
Notes on eigenvaluesNotes on eigenvalues
Notes on eigenvalues
 
Algebra
AlgebraAlgebra
Algebra
 
Relation and function_xii
Relation and function_xiiRelation and function_xii
Relation and function_xii
 
Hussam Malibari Heckman MAT 242 Spring 2017Assignment Chapte.docx
Hussam Malibari Heckman MAT 242 Spring 2017Assignment Chapte.docxHussam Malibari Heckman MAT 242 Spring 2017Assignment Chapte.docx
Hussam Malibari Heckman MAT 242 Spring 2017Assignment Chapte.docx
 
eigenvalueandeigenvector72-80-160505220126 (1).pdf
eigenvalueandeigenvector72-80-160505220126 (1).pdfeigenvalueandeigenvector72-80-160505220126 (1).pdf
eigenvalueandeigenvector72-80-160505220126 (1).pdf
 
Ch07 6
Ch07 6Ch07 6
Ch07 6
 
Mathematics JEE quick revision notes pdf
Mathematics JEE quick revision notes pdfMathematics JEE quick revision notes pdf
Mathematics JEE quick revision notes pdf
 
Diagonalization of matrix
Diagonalization of matrixDiagonalization of matrix
Diagonalization of matrix
 
Diagonalization of Matrices
Diagonalization of MatricesDiagonalization of Matrices
Diagonalization of Matrices
 
Assignments for class XII
Assignments for class XIIAssignments for class XII
Assignments for class XII
 
Linear Algebra Assignment help
Linear Algebra Assignment helpLinear Algebra Assignment help
Linear Algebra Assignment help
 
Matrices & determinants
Matrices & determinantsMatrices & determinants
Matrices & determinants
 
Relations & functions
Relations & functionsRelations & functions
Relations & functions
 
10.3
10.310.3
10.3
 
00_1 - Slide Pelengkap (dari Buku Neuro Fuzzy and Soft Computing).ppt
00_1 - Slide Pelengkap (dari Buku Neuro Fuzzy and Soft Computing).ppt00_1 - Slide Pelengkap (dari Buku Neuro Fuzzy and Soft Computing).ppt
00_1 - Slide Pelengkap (dari Buku Neuro Fuzzy and Soft Computing).ppt
 
Answers Of Discrete Mathematics
Answers Of Discrete MathematicsAnswers Of Discrete Mathematics
Answers Of Discrete Mathematics
 
Lecture_06_Part_1.ppt
Lecture_06_Part_1.pptLecture_06_Part_1.ppt
Lecture_06_Part_1.ppt
 
Linear Algebra and Matrix
Linear Algebra and MatrixLinear Algebra and Matrix
Linear Algebra and Matrix
 

More from gandhinagar

Introduction to gis and its application
Introduction to gis and its application Introduction to gis and its application
Introduction to gis and its application
gandhinagar
 
Indian air force
Indian air forceIndian air force
Indian air force
gandhinagar
 
Remote sensing by jitendra thakor
Remote sensing by jitendra thakorRemote sensing by jitendra thakor
Remote sensing by jitendra thakor
gandhinagar
 
Kailash satyarthi
Kailash satyarthiKailash satyarthi
Kailash satyarthi
gandhinagar
 
IAS
IASIAS
matrices and determinantes
matrices and determinantes matrices and determinantes
matrices and determinantes
gandhinagar
 
matrices and algbra
matrices and algbramatrices and algbra
matrices and algbra
gandhinagar
 
Systemsof3 equations
Systemsof3 equationsSystemsof3 equations
Systemsof3 equations
gandhinagar
 
Systems of linear equations
Systems of linear equationsSystems of linear equations
Systems of linear equations
gandhinagar
 
Systems of linear equations
Systems of linear equationsSystems of linear equations
Systems of linear equations
gandhinagar
 
Vikram batra
Vikram batraVikram batra
Vikram batra
gandhinagar
 
Story about big success person
Story about big success personStory about big success person
Story about big success person
gandhinagar
 
Chanakya
ChanakyaChanakya
Chanakya
gandhinagar
 
Inverse of matrix
Inverse of matrixInverse of matrix
Inverse of matrix
gandhinagar
 
The contributor’s vision of success.
The contributor’s vision of success.The contributor’s vision of success.
The contributor’s vision of success.
gandhinagar
 
Led(light emitting diode)
Led(light emitting diode)Led(light emitting diode)
Led(light emitting diode)
gandhinagar
 
LED
LED LED
Solar cell
Solar cellSolar cell
Solar cell
gandhinagar
 
Lucid dreaming
Lucid  dreamingLucid  dreaming
Lucid dreaming
gandhinagar
 
1 complex numbers
1 complex numbers 1 complex numbers
1 complex numbers
gandhinagar
 

More from gandhinagar (20)

Introduction to gis and its application
Introduction to gis and its application Introduction to gis and its application
Introduction to gis and its application
 
Indian air force
Indian air forceIndian air force
Indian air force
 
Remote sensing by jitendra thakor
Remote sensing by jitendra thakorRemote sensing by jitendra thakor
Remote sensing by jitendra thakor
 
Kailash satyarthi
Kailash satyarthiKailash satyarthi
Kailash satyarthi
 
IAS
IASIAS
IAS
 
matrices and determinantes
matrices and determinantes matrices and determinantes
matrices and determinantes
 
matrices and algbra
matrices and algbramatrices and algbra
matrices and algbra
 
Systemsof3 equations
Systemsof3 equationsSystemsof3 equations
Systemsof3 equations
 
Systems of linear equations
Systems of linear equationsSystems of linear equations
Systems of linear equations
 
Systems of linear equations
Systems of linear equationsSystems of linear equations
Systems of linear equations
 
Vikram batra
Vikram batraVikram batra
Vikram batra
 
Story about big success person
Story about big success personStory about big success person
Story about big success person
 
Chanakya
ChanakyaChanakya
Chanakya
 
Inverse of matrix
Inverse of matrixInverse of matrix
Inverse of matrix
 
The contributor’s vision of success.
The contributor’s vision of success.The contributor’s vision of success.
The contributor’s vision of success.
 
Led(light emitting diode)
Led(light emitting diode)Led(light emitting diode)
Led(light emitting diode)
 
LED
LED LED
LED
 
Solar cell
Solar cellSolar cell
Solar cell
 
Lucid dreaming
Lucid  dreamingLucid  dreaming
Lucid dreaming
 
1 complex numbers
1 complex numbers 1 complex numbers
1 complex numbers
 

Recently uploaded

Introduction to Quality Improvement Essentials
Introduction to Quality Improvement EssentialsIntroduction to Quality Improvement Essentials
Introduction to Quality Improvement Essentials
Excellence Foundation for South Sudan
 
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdfUnit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Thiyagu K
 
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCECLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
BhavyaRajput3
 
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
MysoreMuleSoftMeetup
 
How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
Celine George
 
MARUTI SUZUKI- A Successful Joint Venture in India.pptx
MARUTI SUZUKI- A Successful Joint Venture in India.pptxMARUTI SUZUKI- A Successful Joint Venture in India.pptx
MARUTI SUZUKI- A Successful Joint Venture in India.pptx
bennyroshan06
 
Fish and Chips - have they had their chips
Fish and Chips - have they had their chipsFish and Chips - have they had their chips
Fish and Chips - have they had their chips
GeoBlogs
 
The Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdfThe Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdf
kaushalkr1407
 
Operation Blue Star - Saka Neela Tara
Operation Blue Star   -  Saka Neela TaraOperation Blue Star   -  Saka Neela Tara
Operation Blue Star - Saka Neela Tara
Balvir Singh
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
siemaillard
 
Additional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfAdditional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdf
joachimlavalley1
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
Vivekanand Anglo Vedic Academy
 
Palestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptxPalestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptx
RaedMohamed3
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
EverAndrsGuerraGuerr
 
Unit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfUnit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdf
Thiyagu K
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
EugeneSaldivar
 
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...
Nguyen Thanh Tu Collection
 
Language Across the Curriculm LAC B.Ed.
Language Across the  Curriculm LAC B.Ed.Language Across the  Curriculm LAC B.Ed.
Language Across the Curriculm LAC B.Ed.
Atul Kumar Singh
 
Model Attribute Check Company Auto Property
Model Attribute  Check Company Auto PropertyModel Attribute  Check Company Auto Property
Model Attribute Check Company Auto Property
Celine George
 
How to Create Map Views in the Odoo 17 ERP
How to Create Map Views in the Odoo 17 ERPHow to Create Map Views in the Odoo 17 ERP
How to Create Map Views in the Odoo 17 ERP
Celine George
 

Recently uploaded (20)

Introduction to Quality Improvement Essentials
Introduction to Quality Improvement EssentialsIntroduction to Quality Improvement Essentials
Introduction to Quality Improvement Essentials
 
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdfUnit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdf
 
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCECLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
 
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
 
How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
 
MARUTI SUZUKI- A Successful Joint Venture in India.pptx
MARUTI SUZUKI- A Successful Joint Venture in India.pptxMARUTI SUZUKI- A Successful Joint Venture in India.pptx
MARUTI SUZUKI- A Successful Joint Venture in India.pptx
 
Fish and Chips - have they had their chips
Fish and Chips - have they had their chipsFish and Chips - have they had their chips
Fish and Chips - have they had their chips
 
The Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdfThe Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdf
 
Operation Blue Star - Saka Neela Tara
Operation Blue Star   -  Saka Neela TaraOperation Blue Star   -  Saka Neela Tara
Operation Blue Star - Saka Neela Tara
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
 
Additional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfAdditional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdf
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
 
Palestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptxPalestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptx
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
 
Unit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfUnit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdf
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
 
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...
 
Language Across the Curriculm LAC B.Ed.
Language Across the  Curriculm LAC B.Ed.Language Across the  Curriculm LAC B.Ed.
Language Across the Curriculm LAC B.Ed.
 
Model Attribute Check Company Auto Property
Model Attribute  Check Company Auto PropertyModel Attribute  Check Company Auto Property
Model Attribute Check Company Auto Property
 
How to Create Map Views in the Odoo 17 ERP
How to Create Map Views in the Odoo 17 ERPHow to Create Map Views in the Odoo 17 ERP
How to Create Map Views in the Odoo 17 ERP
 

Eighan values and diagonalization

  • 1. 6.1 Eigenvalues and Diagonalization
  • 2. Definitions A is n x n. λ is an eigenvalue of A if AX = λX has non zero solutions X (called eigenvectors) If λ is an eigenvalue of A, the set Eλ = Eλ(A) = {X | X in ℜn , AX = λX} is a vector space called the eigenspace associated w/ λ (i.e. Eλ is all eigenvectors corresponding to λ & 0 vector) λ is eigenvalue if Eλ has at least one non-zero vector. Can also write AX = λX as (λIn - A)X = 0
  • 3. Example Show that λ = -3 is an eigenvalue of A, and find the eigenspace E-3. A = 5 8 16 4 1 8 −4 −4 −11           Write out (λIn - A)X = 0 and solve. Get: X = s −1 1 0           + t −2 0 1           So it is an eigenvalue since there is a non-zero solution. Eigenspace is: E−3 = span −1 1 0           , −2 0 1                    
  • 4. Discussion Now we have (λIn - A)X = 0, and λ is an eigenvalue iff there exists a nonzero solution X. Recall that a matrix U is invertible iff UX = 0 implies X = 0. So, since we are looking for a nonzero solution above, (λIn-A) cannot be invertible for λ to be an eigenvalue. So det (λIn-A) =0.
  • 5. Definition The characteristic polynomial of the n x n matrix A is: cA(x) = det(xI - A)
  • 6. Theorem 1 A (n x n). The eigenvalues of A are the real roots of the characteristic polynomial of A --the real numbers λ satisfying: cA(λ) = det(λIn - A) = 0 The eigenspace Eλ = {X | (λI - A)X = 0} consists of all solutions to a system of n linear equations in n variables. The eigenvectors corresponding to λ are the nonzero vectors in the eigenspace.
  • 7. Summary So there are two issues: finding eigenvalues, and finding eigenspaces (and eigenvectors). Finding the eigenvalues can be difficult - won’t do much here. Spend more time dealing with eigenspaces.
  • 8. Example Find the characteristic polynomial, eigenvalues, and eigenspaces of A: A = 1 −2 3 2 6 −6 1 2 −1           Set up cA(x) = det (xI - A) Eigenvalues will be the roots of the polynomial as those will give us where det is 0. Then use those λ to find eigenspace: X such that (λ I-A)X=0
  • 9. Example If A is a triangular matrix, show that the eigenvalues of A are the entries on the main diagonal. Proof: cA(x) = det (xI - A) = det ( a triangular matrix) = product of entries on main diagonal of (xI - A). The matrix showing entries on main diagonal is: x − a11 x − a22 ... x − ann             det = (x-a11)(x-a22)…(x-ann) So eigenvalues are{a11,a22,…,ann}
  • 10. Example Show that A and AT have the same characteristic polynomial and thus the same eigenvalues. Proof: From chapter 3, we know that a matrix and its transpose will have the same determinant. cA T (x) = det(xI − AT ) = det((xI)T − A)T = det(xI − A)T = det(xI − A) = cA (x)
  • 11. Theorem 2 If A is a real symmetric matrix, each root of the characteristic polynomial cA(x) is real. (to be proven later) Show this is true for a (2 x 2): A = a b b c       cA (x) = det x − a −b −b x − c       = (x − a)(x − c) − b 2 = x2 − x(a + c) + (ac − b2 ) Recall that we can determine the nature of the roots from the discriminant: (b2 -4ac) = (a+c)2 -4(ac+b2 ) = a2 +c2 +2ac-4ac+4b2 =a2 -2ac+c2 +4b2 = (a-c)2 + 4b2 which is always pos so real roots.
  • 12. Similar Matrices A, B (n x n) are similar (we say A~B) if B = P-1 AP holds for some invertible matrix. P is not unique.
  • 13. Example Find P-1 AP in the following case, then compute An . P = 1 5 1 2      , A = 6 −5 2 −1       We are able to find a similar matrix B. Then P-1 AP=B. So A = PBP-1 So A2 =(PBP-1 )(PBP-1 )=PB2 P-1 Generally An =PBn P-1 Life is made easy is B is diagonal since we just raise entries to n.
  • 14. Interesting Fact Similar Matrices will have the same determinant. Proof: P-1 AP = D det(D) = det (P-1 AP) = (detP-1 )(detA)(detP) = (1/detP)(detA) (det P) = det A.
  • 15. Example Show that A and B are not similar. A = 1 2 2 1      ,B = 1 1 −1 1       Just need to show that they do not have the same determinant.
  • 16. Trace The trace of a square matrix A (tr A) is the sum of the entries on the main diagonal of A.
  • 17. Theorem 3 A,B (n x n), k is a scalar: 1. tr(A + B) = tr A + tr B and tr(kA) = k tr A 2. tr (AB) = tr (BA) Proof: 1. (homework) 2. AB = a1j bj1 j=1 n ∑ a2 jbj2 j=1 n ∑ ... anj bjn j=1 n ∑                   tr(AB) = aijbji j=1 n ∑       i=1 n ∑ = bjiaij i=1 n ∑   j=1 n ∑ = tr(BA)
  • 18. Theorem 4 If A~B, they have the same determinant, the same rank, the same trace, the same characteristic polynomial, and the same eigenvalues. (similarity invariants) Proof: Already shown that they have the same determinant. Rank: Have B = P-1 AP rank (B) = rank (P-1 AP) = rank(AP)=rankA since P is invertible (and using cor 4 of thm 4 in 5.5) tr B = tr (P-1 AP) = tr[(AP)P-1 ] = tr (A) (uses thm 3)
  • 19. Theorem 4 - cont Characteristic polynomial cB(x) = det (xI - B) = det(xI - P-1 AP)=det(P-1 xIP - P-1 AP) (since xI = P-1 xIP -- since xI is diagonal) = det [P-1 (xI - A)P]=(1/detP)(det(xI-A))(det P) = det(xI-A) = cA(x) Eigenvalues: all matrices with the same characteristic poly will have the same eigenvalues since the eigenvalues are the roots of the characteristic polynomial. 
  • 20. Fact The invariants do not imply similarity. Ex. I = 1 0 0 1      , A = 1 2 0 1       Have same det,tr,rank,characteristic poly, eigenvalues, but are not similar since P-1 IP = I A≠
  • 21. Theorem 5 A,B,C (n x n). Then: 1. A~A for all A. 2. If A ~ B, then B~A 3. If A ~ B and B ~ C, then A~C. Proof of 2 (others follow): A~B ⇒ B = P-1 AP Let Q = P-1 , then B = QAQ-1 , so A= Q-1 BQ Which means that B ~ A.
  • 22. Use of thm 5 Proving similarity is not always easy. But if we can find a simple (often diagonal) matrix to which both A and B are both similar, then: A~D and B~D means D~B by (2) and A~B then by (3)