Proving the Recursive Formula for an Using Induction

  • Thread starter Thread starter IntroAnalysis
  • Start date Start date
  • Tags Tags
    Induction
IntroAnalysis
Messages
58
Reaction score
0

Homework Statement


Define an = (an-1 + an-2)/2 for each positive integer ≥ 2. Use induction to show that: an+1 - an = (-1/2)n(a1 -a0)


Homework Equations


First show it is true for base case. Assume if it is true for (k), then show it is true for (k + 1).


The Attempt at a Solution


Base case n=1. Then a2 - a1 = (-1/2)1(a1 - a0) = (a0 - a1)/2
Check: a2 - a1 = (a1 + a0)/2 - a1 = (a1 + a0 - 2a1)/2 = (a0 - a1)/2.

So then do I assume that ak+1 - ak = (-1/2)k(a1 - a0)? Then what?
 
Physics news on Phys.org
so assume it is true for k-1,k as below (note you had the power wrong above)
a_k - a_{k-1} = (-1/2)^k(a_1 - a_0)

Now using that can you show
a_{k+1} - a_{k} = (-1/2)^{k+1}(a_1 - a_0)
 
No, I did not have the power wrong. This is from Introduction to Analysis, Gaughan, Prob. 23.

It says you may want to use induction to show that:
an+1 - an = (-1/2)^n(a1 - a0).
 
Got the induction part:

Assume ak+1 - ak = (-1/2)k(a1-a0), then

ak+2 - ak+1 = (ak+1 + ak)/2 -[(-1/2)k(a1 - a0) + ak]

= (ak+1 + ak - 2ak)/2 - [(-1/2)k(a1 - a0)]
= (ak+1 - ak)/2 - [(-1/2)k(a1 - a0)]
= (1/2)(-1/2)k(a1 - a0) - [(-1/2)k(a1 - a0)]
= -(-1/2)k+1(a1 - a0) - [(-1/2)k(a1 - a0)]
= (-1/2)k(a1 - a0)[1/2 - 1] = (-1/2)k+1(a1 - a0) as desired.

The rest of the proof uses Triangle Inequality Theorem.
 
Last edited:
There are two things I don't understand about this problem. First, when finding the nth root of a number, there should in theory be n solutions. However, the formula produces n+1 roots. Here is how. The first root is simply ##\left(r\right)^{\left(\frac{1}{n}\right)}##. Then you multiply this first root by n additional expressions given by the formula, as you go through k=0,1,...n-1. So you end up with n+1 roots, which cannot be correct. Let me illustrate what I mean. For this...

Similar threads

Back
Top