Science:Math Exam Resources/Courses/MATH307/April 2012/Question 07 (a)
Work in progress: this question page is incomplete, there might be mistakes in the material you are seeing here.
• Q1 (a) • Q1 (b) • Q1 (c) • Q1 (d) • Q2 (a) • Q2 (b) • Q2 (c) • Q3 • Q4 (a) • Q4 (b) • Q4 (c) • Q4 (d) • Q4 (e) • Q5 (a) • Q5 (b) • Q5 (c) • Q6 (a) • Q6 (b) • Q6 (c) • Q6 (d) • Q7 (a) • Q7 (b) • Q7 (c) • Q8 (a) • Q8 (b) • Q8 (c) •
Question 07 (a) |
---|
Consider the MATLAB/Octave computation 1> A=[0 2 1; 1 0 0; 0 1 0] A = 0 2 1 1 0 0 0 1 0 2> [S D]=eig(A) S = 0.80902 -0.57735 0.30902 0.50000 0.57735 -0.50000 0.30902 -0.57735 0.80902 D = Diagonal Matrix 1.61803 0 0 0 -1.00000 0 0 0 -0.61803 (a) Write down a recursion relation for a sequence x0, x1, x2, x3, ... that you can analyse using this calculation. How many initial values do you have to specify to define the sequence? |
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 hint below. Consider it for a while. Does it give you a new idea on how to approach the problem? If so, try it! |
Hint |
---|
Science:Math Exam Resources/Courses/MATH307/April 2012/Question 07 (a)/Hint 1 |
Checking a solution serves two purposes: helping you if, after having used the hint, 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. We can actually infer all the information we need to answer this question from the matrix A that was given. Let us first rewrite the matrix A in the context of how it is used:
This equation yields the following three linear equations:
The first equation of this set of linear equations tells us the recursive relationship for this matrix and notice that to calculate the value for the value in the relationship where and is an integer, we only need the first three values to be initially stated. In summary, the recursive sequence that is inferred from A is:
and we would need the first three values of the sequence to calculate all the following values in the sequence ( and ). |