Hints for the last chapter 9 assignment
Click on the links to show or hide the hints
9.2 Problem 3
What is the given?
sn = 7 sn-1 - 12 sn-2+6
and s0 = 1 and s1 = 2.
What are you trying to prove?
What initial conditions should you check?
Check that the formula gives you the correct answers for s0 and s1
Write the induction hypothesis. Make sure you use the version where you are assuming everything up to and including k.
Show me
Induction hypothesis:
Suppose that sj = 4j - 3j + 1 for all 0 ≤ j ≤ k where k ≥ 1
You might also find it helpful to write the induction hypothesis again for k and for k-1.
Show me
sk = 4k - 3k + 1
sk-1 = 4k-1 - 3k-1 + 1
Write out what sk+1 should be using the given definition.
Show me
Substitute in using the induction hypothesis
Show me
sk+1 = 7 (4k - 3k + 1)s - 12 (4k-1 - 3k-1 + 1)+6
Simplify it.
Somewhere else on your paper (skip a line or to the right) write out what the formula is for sk+1 is.
Show me
Simplify it
When you have simplified both versions and found that they are equal, then you can write the conclusion.
9.3 Problem 13
What is the recursive formula (just the recursion part, not the initial conditions)?
What if xn worked in the recursion formula. What would r have to be?
Plug xn into the recursion formula
Show me
Now solve that equation for x.
Show me
xn = xn-1 + 2 xn-2
Collect all terms on one side of the equation: xn - xn-1 - 2 xn-2 = 0
Divide the polynomial by xn-2 (or factor out xn-2) to get a quadratic equation:
x2 - x - 2 = 0
Solve by factoring or using the quadratic formula: (x - 2) (x + 1) = 0
x = 2; x = -1
Now you have some solutions to the recursion equation (they don't have the right initial conditions) do you know what they are?
Show me
an = 2n and bn = (-1)n are solutions to the recursion equation.
Now find a linear combination of your two solutions that will have the right initial conditions
Show me what a linear combination is
A linear combination of an = 2n and bn = (-1)n is
u an + v bn = u 2n + v (-1)n
Show me how to set up a set of equations to get the right linear combination.
Plug n = 0 into the linear combination and set it equal to s0
Do the same for n=1. You get equations:
u 20 + v (-1)0 = 9
u 21 + v (-1)1 = 0
Show me the solution to the pair of simultaneous equations
u + v = 9
2u - v = 0
u = 3 and v = 6
Show me how to write down the answer.