SlideShare a Scribd company logo
1 of 22
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 theoremgidc 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 CalculusYoshihiro Mizoguchi
 
Eigen value and eigen vector
Eigen value and eigen vectorEigen value and eigen vector
Eigen value and eigen vectorRutvij 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
 
CBSE Class 12 Mathematics formulas
CBSE Class 12 Mathematics formulasCBSE Class 12 Mathematics formulas
CBSE Class 12 Mathematics formulasParth 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 SystemsCeni 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 engineeringshubham211
 
Maths-->>Eigenvalues and eigenvectors
Maths-->>Eigenvalues and eigenvectorsMaths-->>Eigenvalues and eigenvectors
Maths-->>Eigenvalues and eigenvectorsJaydev 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 DimensionCeni Babaoglu, PhD
 
Eigenvalues and eigenvectors
Eigenvalues and eigenvectorsEigenvalues and eigenvectors
Eigenvalues and eigenvectorsiraq
 

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 algebrameezanchand
 
Notes on eigenvalues
Notes on eigenvaluesNotes on eigenvalues
Notes on eigenvaluesAmanSaeed11
 
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.docxwellesleyterresa
 
eigenvalueandeigenvector72-80-160505220126 (1).pdf
eigenvalueandeigenvector72-80-160505220126 (1).pdfeigenvalueandeigenvector72-80-160505220126 (1).pdf
eigenvalueandeigenvector72-80-160505220126 (1).pdfSunny432360
 
Mathematics JEE quick revision notes pdf
Mathematics JEE quick revision notes pdfMathematics JEE quick revision notes pdf
Mathematics JEE quick revision notes pdfgowhiksankar54
 
Diagonalization of matrix
Diagonalization of matrixDiagonalization of matrix
Diagonalization of matrixVANDANASAINI29
 
Diagonalization of Matrices
Diagonalization of MatricesDiagonalization of Matrices
Diagonalization of MatricesAmenahGondal1
 
Assignments for class XII
Assignments for class XIIAssignments for class XII
Assignments for class XIIindu thakur
 
Matrices & determinants
Matrices & determinantsMatrices & determinants
Matrices & determinantsindu thakur
 
Relations & functions
Relations & functionsRelations & functions
Relations & functionsindu 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).pptDediTriLaksono1
 
Answers Of Discrete Mathematics
Answers Of Discrete MathematicsAnswers Of Discrete Mathematics
Answers Of Discrete MathematicsSabrina Green
 
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 forcegandhinagar
 
Remote sensing by jitendra thakor
Remote sensing by jitendra thakorRemote sensing by jitendra thakor
Remote sensing by jitendra thakorgandhinagar
 
Kailash satyarthi
Kailash satyarthiKailash satyarthi
Kailash satyarthigandhinagar
 
matrices and determinantes
matrices and determinantes matrices and determinantes
matrices and determinantes gandhinagar
 
matrices and algbra
matrices and algbramatrices and algbra
matrices and algbragandhinagar
 
Systemsof3 equations
Systemsof3 equationsSystemsof3 equations
Systemsof3 equationsgandhinagar
 
Systems of linear equations
Systems of linear equationsSystems of linear equations
Systems of linear equationsgandhinagar
 
Systems of linear equations
Systems of linear equationsSystems of linear equations
Systems of linear equationsgandhinagar
 
Story about big success person
Story about big success personStory about big success person
Story about big success persongandhinagar
 
Inverse of matrix
Inverse of matrixInverse of matrix
Inverse of matrixgandhinagar
 
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
 
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

BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptxBIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptxSayali Powar
 
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...DhatriParmar
 
Indexing Structures in Database Management system.pdf
Indexing Structures in Database Management system.pdfIndexing Structures in Database Management system.pdf
Indexing Structures in Database Management system.pdfChristalin Nelson
 
Active Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfActive Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfPatidar M
 
CLASSIFICATION OF ANTI - CANCER DRUGS.pptx
CLASSIFICATION OF ANTI - CANCER DRUGS.pptxCLASSIFICATION OF ANTI - CANCER DRUGS.pptx
CLASSIFICATION OF ANTI - CANCER DRUGS.pptxAnupam32727
 
Unraveling Hypertext_ Analyzing Postmodern Elements in Literature.pptx
Unraveling Hypertext_ Analyzing  Postmodern Elements in  Literature.pptxUnraveling Hypertext_ Analyzing  Postmodern Elements in  Literature.pptx
Unraveling Hypertext_ Analyzing Postmodern Elements in Literature.pptxDhatriParmar
 
4.9.24 School Desegregation in Boston.pptx
4.9.24 School Desegregation in Boston.pptx4.9.24 School Desegregation in Boston.pptx
4.9.24 School Desegregation in Boston.pptxmary850239
 
ARTERIAL BLOOD GAS ANALYSIS........pptx
ARTERIAL BLOOD  GAS ANALYSIS........pptxARTERIAL BLOOD  GAS ANALYSIS........pptx
ARTERIAL BLOOD GAS ANALYSIS........pptxAneriPatwari
 
MS4 level being good citizen -imperative- (1) (1).pdf
MS4 level   being good citizen -imperative- (1) (1).pdfMS4 level   being good citizen -imperative- (1) (1).pdf
MS4 level being good citizen -imperative- (1) (1).pdfMr Bounab Samir
 
How to Manage Buy 3 Get 1 Free in Odoo 17
How to Manage Buy 3 Get 1 Free in Odoo 17How to Manage Buy 3 Get 1 Free in Odoo 17
How to Manage Buy 3 Get 1 Free in Odoo 17Celine George
 
Congestive Cardiac Failure..presentation
Congestive Cardiac Failure..presentationCongestive Cardiac Failure..presentation
Congestive Cardiac Failure..presentationdeepaannamalai16
 
Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management systemChristalin Nelson
 
Narcotic and Non Narcotic Analgesic..pdf
Narcotic and Non Narcotic Analgesic..pdfNarcotic and Non Narcotic Analgesic..pdf
Narcotic and Non Narcotic Analgesic..pdfPrerana Jadhav
 
CHEST Proprioceptive neuromuscular facilitation.pptx
CHEST Proprioceptive neuromuscular facilitation.pptxCHEST Proprioceptive neuromuscular facilitation.pptx
CHEST Proprioceptive neuromuscular facilitation.pptxAneriPatwari
 
Mythology Quiz-4th April 2024, Quiz Club NITW
Mythology Quiz-4th April 2024, Quiz Club NITWMythology Quiz-4th April 2024, Quiz Club NITW
Mythology Quiz-4th April 2024, Quiz Club NITWQuiz Club NITW
 
4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptxmary850239
 
How to Make a Duplicate of Your Odoo 17 Database
How to Make a Duplicate of Your Odoo 17 DatabaseHow to Make a Duplicate of Your Odoo 17 Database
How to Make a Duplicate of Your Odoo 17 DatabaseCeline George
 
Textual Evidence in Reading and Writing of SHS
Textual Evidence in Reading and Writing of SHSTextual Evidence in Reading and Writing of SHS
Textual Evidence in Reading and Writing of SHSMae Pangan
 
Q-Factor General Quiz-7th April 2024, Quiz Club NITW
Q-Factor General Quiz-7th April 2024, Quiz Club NITWQ-Factor General Quiz-7th April 2024, Quiz Club NITW
Q-Factor General Quiz-7th April 2024, Quiz Club NITWQuiz Club NITW
 
4.11.24 Poverty and Inequality in America.pptx
4.11.24 Poverty and Inequality in America.pptx4.11.24 Poverty and Inequality in America.pptx
4.11.24 Poverty and Inequality in America.pptxmary850239
 

Recently uploaded (20)

BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptxBIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
 
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...
 
Indexing Structures in Database Management system.pdf
Indexing Structures in Database Management system.pdfIndexing Structures in Database Management system.pdf
Indexing Structures in Database Management system.pdf
 
Active Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfActive Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdf
 
CLASSIFICATION OF ANTI - CANCER DRUGS.pptx
CLASSIFICATION OF ANTI - CANCER DRUGS.pptxCLASSIFICATION OF ANTI - CANCER DRUGS.pptx
CLASSIFICATION OF ANTI - CANCER DRUGS.pptx
 
Unraveling Hypertext_ Analyzing Postmodern Elements in Literature.pptx
Unraveling Hypertext_ Analyzing  Postmodern Elements in  Literature.pptxUnraveling Hypertext_ Analyzing  Postmodern Elements in  Literature.pptx
Unraveling Hypertext_ Analyzing Postmodern Elements in Literature.pptx
 
4.9.24 School Desegregation in Boston.pptx
4.9.24 School Desegregation in Boston.pptx4.9.24 School Desegregation in Boston.pptx
4.9.24 School Desegregation in Boston.pptx
 
ARTERIAL BLOOD GAS ANALYSIS........pptx
ARTERIAL BLOOD  GAS ANALYSIS........pptxARTERIAL BLOOD  GAS ANALYSIS........pptx
ARTERIAL BLOOD GAS ANALYSIS........pptx
 
MS4 level being good citizen -imperative- (1) (1).pdf
MS4 level   being good citizen -imperative- (1) (1).pdfMS4 level   being good citizen -imperative- (1) (1).pdf
MS4 level being good citizen -imperative- (1) (1).pdf
 
How to Manage Buy 3 Get 1 Free in Odoo 17
How to Manage Buy 3 Get 1 Free in Odoo 17How to Manage Buy 3 Get 1 Free in Odoo 17
How to Manage Buy 3 Get 1 Free in Odoo 17
 
Congestive Cardiac Failure..presentation
Congestive Cardiac Failure..presentationCongestive Cardiac Failure..presentation
Congestive Cardiac Failure..presentation
 
Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management system
 
Narcotic and Non Narcotic Analgesic..pdf
Narcotic and Non Narcotic Analgesic..pdfNarcotic and Non Narcotic Analgesic..pdf
Narcotic and Non Narcotic Analgesic..pdf
 
CHEST Proprioceptive neuromuscular facilitation.pptx
CHEST Proprioceptive neuromuscular facilitation.pptxCHEST Proprioceptive neuromuscular facilitation.pptx
CHEST Proprioceptive neuromuscular facilitation.pptx
 
Mythology Quiz-4th April 2024, Quiz Club NITW
Mythology Quiz-4th April 2024, Quiz Club NITWMythology Quiz-4th April 2024, Quiz Club NITW
Mythology Quiz-4th April 2024, Quiz Club NITW
 
4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx
 
How to Make a Duplicate of Your Odoo 17 Database
How to Make a Duplicate of Your Odoo 17 DatabaseHow to Make a Duplicate of Your Odoo 17 Database
How to Make a Duplicate of Your Odoo 17 Database
 
Textual Evidence in Reading and Writing of SHS
Textual Evidence in Reading and Writing of SHSTextual Evidence in Reading and Writing of SHS
Textual Evidence in Reading and Writing of SHS
 
Q-Factor General Quiz-7th April 2024, Quiz Club NITW
Q-Factor General Quiz-7th April 2024, Quiz Club NITWQ-Factor General Quiz-7th April 2024, Quiz Club NITW
Q-Factor General Quiz-7th April 2024, Quiz Club NITW
 
4.11.24 Poverty and Inequality in America.pptx
4.11.24 Poverty and Inequality in America.pptx4.11.24 Poverty and Inequality in America.pptx
4.11.24 Poverty and Inequality in America.pptx
 

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)