Science:Math Exam Resources/Courses/MATH307/December 2010/Question 05 (b)
• Q1 (a) • Q1 (b) • Q1 (c) • Q1 (d) • Q1 (e) • Q2 (a) • Q2 (b) • Q2 (c) • Q2 (d) • Q2 (e) • Q3 (a) • Q3 (b) • Q3 (c) • Q3 (d) • Q4 (a) • Q4 (b) • Q5 (a) • Q5 (b) • Q5 (c) • Q6 (a) • Q6 (b) • Q6 (c) • Q6 (d) • Q6 (e) • Q6 (f) • Q7 (a) • Q7 (b) • Q7 (c) •
Question 05 (b) |
---|
Define a sequence x0, x1, ... by the initial conditions x0 = a, x1 = b and x2 = c together with the recursion relation for n = 0, 1, 2, ... (b) If the matrix A from part (a) is defined in MATLAB/Octave, we can do the following calculations >eig(A) ans = 1.83929 + 0.00000i -0.41964 + 0.60629i -0.41964 - 0.60629i >abs(eig(A)) ans = 1.83929 0.73735 0.73735 Describe how you could make further use of the eig command and other MATLAB/Octave commands to determine all (possibly complex) initial values a, b and c for which as . |
Make sure you understand the problem fully: What is the question asking you to do? Are there specific conditions or constraints that you should take note of? How will you know if your answer is correct from your work only? Can you rephrase the question in your own words in a way that makes sense to you? |
If you are stuck, check the hints below. Read the first one and consider it for a while. Does it give you a new idea on how to approach the problem? If so, try it! If after a while you are still stuck, go for the next hint. |
Hint 1 |
---|
First, we notice that the recursion relation Xn+1 = AXn implies that |
Hint 2 |
---|
Write the vector of initial conditions X0 as a linear combination of the eigenvectors, then apply An+1 to each of those. |
Checking a solution serves two purposes: helping you if, after having used all the hints, you still are stuck on the problem; or if you have solved the problem and would like to check your work.
|
Solution |
---|
Found a typo? Is this solution unclear? Let us know here.
Please rate my easiness! It's quick and helps everyone guide their studies. First, we notice that the recursion relation Xn+1 = AXn implies that Since A is a 3×3 matrix with three distinct eigenvalues λ1 = 1.83929, λ2 = -0.41964 + 0.60629i, λ3 = -0.41964 + 0.60629i there is a basis of corresponding eigenvectors v1, v2, v3. Let us rewrite X0 with respect to this basis: Then Now we see that the last two terms will vanish as n goes to infinity, because and . However, since the norm of the first vector will blow up as n approaches infinity, unless α = 0. This is the key to this question: As long as the vector with the initial conditions, lies in the plane that is spanned by v2 and v3 but has no component in direction of v1, then the sequence will converge to zero: xn → 0 as n → ∞. Eigenvectors v2 and v3 can be obtained in MATLAB/Octave with [V,D] = eig(A); % V is a matrix with eigenvectors in its columns v_2 = V[:,2]; v_3 = V[:,3]; Then the initial values that imply xn → 0 as n → ∞ are |