Lecture 13 Eigen_value_Ch13 (1)
Lecture 13 Eigen_value_Ch13 (1)
with MATLAB®
for Engineers and Scientists
4th Edition
Steven C. Chapra
©McGraw-Hill Education. All rights reserved. Authorized only for instructor use in the classroom. No reproduction or further distribution permitted without the prior written consent of McGraw-Hill Education.
Chapter 13
Transformations and
Eigenvalues
©McGraw-Hill Education. All rights reserved. Authorized only for instructor use in the classroom. No reproduction or further distribution permitted without the prior written consent of McGraw-Hill Education.
• Chapter Objectives
Understanding the mathematical definition of
eigenvalues and eigenvectors.
Understanding the physical interpretation of
eigenvalues and eigenvectors within the context of
engineering systems that vibrate or oscillate.
Knowing how to implement the polynomial method.
Knowing how to implement the power method to
evaluate the largest and smallest eigenvalues and
their respective eigenvectors.
Knowing how to use and interpret MATLAB’s eig
function.
©McGraw-Hill Education.
Linear transformations on plane
Typical Examples
Eigen
Properties
values Markov
Matrices
Rotation 0 −1
1 0
y y
2
2
1 1
x -1 1 x
-1 1 -1 2
-1
Reflection
0
−1
y y
2
1 2
1
-1 1 x -1 1 x
-1 -1 2
Expansion 2 0
0
2
y y
1 2
x -1 x
-1 2
-1 1
-1
Expansion 2 0 Compressio 0
0 0
n 1/ 21/ 2
2
y y y
2
1 2
1/2
x -1 -1 x x
-1 2
-1 1 2 -1
1/2 1
-1
Multi-scaling or Stretching 2
0 0
3
y
y
3
2
1
x -1 x
-1 1 -1 2
-1
Projection
0
0
y y
2
1 2
1
-1 1 x -1 1 x
-1 -1 2
Shear 1 1
0
transformation
1
y y
2
1 2
1
-1 1 x -1 1 x
-1 -1 2
Figure 5.1
©McGraw-Hill Education.
• Matlab Eigen Demo
A=[1 3 ; 4 2]/4
and then
A=[ 2 4 ; 2 4]/4
©McGraw-Hill Education.
• Application of Eigen vectors and Eigen values
©McGraw-Hill Education.
Computing Eigenvalues
14
2 X 2 Example
1 -2 1 - -2
A= 3 -4 so A - I = 3 -4 -
Set 2 + 3 + 2 = 0
1 -2 x1 = -1 x1 so
x1 – 2x2 = -x1
3 -4 x2 x2 3x1 – 4x2 = -x2
16
Since x1 = x2, we can represent all eigenvectors for eigenvalue -1
as multiples of a simple basis vector:
1 -2 x1 = -2 x1 so
x1 – 2x2 = -2x1
3 -4 x2 x2 3x1 – 4x2 = -2x2
We use an example:
−5 2
𝑨=
[ 2 −2 ]
2
−5−𝜆 2 ¿(−5−𝜆)(−2−𝜆)− 4=𝜆 +7𝜆+6=0
𝐷(𝜆)=det (𝐀 −𝜆𝐈)=¿ ∨¿ ¿
2 −2−𝜆
¿λ1 = −1 , λ2 = −6
18
HOW TO FIND EIGENVALUES AND EIGENVECTORS
Example Continued:
• Eigenvectors for λ1 = −1:
−5 𝑥1 + 2 𝑥 2= 𝜆 𝑥 1 − 4 𝑥1 +2 𝑥 2=0
→ 𝑥2 =2 𝑥 1 → 𝒙 1= 1
2 𝑥 1 − 2 𝑥 2= 𝜆 𝑥 2
→
2 𝑥 1 − 𝑥2 =0 2 []
• Eigenvectors for λ2 = −6:
show that
19
Generalization for 2 X 2 Matrices
20
Another observation we will use:
For 2 x 2 matrix A = a b ,
c d
21
• Dynamics of Three Coupled
Bungee Jumpers in Time
Trivial solution:
or in matrix form
©McGraw-Hill Education.
• Model With Force Balances
(AKA: F = ma)
Collect terms:
©McGraw-Hill Education.
• Assume a Sinusoidal Solution
where
Differentiate twice:
©McGraw-Hill Education.
Given: m1 = m2 = 40 kg; k = 200 N/m
©McGraw-Hill Education.
• Solution: The Polynomial Method
©McGraw-Hill Education.
• INTERPRETATION
©McGraw-Hill Education.
• Principle Modes of Vibration, 1
©McGraw-Hill Education.