Monday, October 21, 2019

calculus - Proof by induction for recursive sequence with no explicit formula.





The problem I am trying to solve is: "show that the sequence defined by a1=6 and an+1=6+an for n1 is convergent, and find the limit."




So I know that I need to use proof by induction to show that the sequence is decreasing, and then show that it has a greatest lower bound of 3. And then by the Monotone convergence theorem I know it converges to 3.



I tried to find an explicit formula for the sequence but I was unsuccessful. So my problem is that I don't know how to use induction on a non-explicit defined recursive sequence.


Answer



First we prove by induction that an>3. It's true for n=1. Assuming an>3, we know an+6>32 so an+6>3 or an+1>3. Thus we established the lower bound 3.



Now we see that x2x6 is a strictly increasing polynomial for x>3, and has a root at x=3, thus, x2x6>0 for x>3: We see that a2nan6>0, which we can rewrite to $\sqrt{a_n+6}


Now realize that x+6 is continuous, so that, when setting liman=L, we know: L=liman+1=liman+6=(liman)+6=L+6


Solving for L yields L{2,3}, and since a lower bound was 3, we know liman=3.



Hope this helped!


No comments:

Post a Comment

analysis - Injection, making bijection

I have injection f:AB and I want to get bijection. Can I just resting codomain to f(A)? I know that every function i...