Determining the convergence of a recursive sequence

dane502
Messages
20
Reaction score
0

Homework Statement



Given the sequence

L_n = Q \cdot (1 + \frac{r}{n}} )^n
where Q > 0, r > 0

show that it either converges or diverges.

Homework Equations



Restating the sequence as a recurrence could (maybe) be of help:

L_{n+1} = L_n \cdot (1 + \frac{r}{n}} ) and L_1 = Q \cdot (1 + \frac{r}{1}})

The Attempt at a Solution



I've tried two different approaches:
  1. Using the epsilon-definition of convergence: Using Maple I've found the limit of the sequence to be e^r \cdot Q, so there exists a N \in \mathbb{R} such that

    \vert Q \cdot (1 + \frac{r}{n}} )^n - e^r \cdot Q \vert < \epsilon
    for all n \geq N.

    The problem with this method is, that I can't figure out what to do upon rewriting the above inequality:
    \vert \frac{(n+r)^n}{n^n} - e^r \vert < \frac{\epsilon}{Q}

    Ideally, I should either solve for n , thus allowing me to find a suitable \epsilon or reduce the inequality to some form where choosing and \epsilon would be obvious. But it seems impossible due to the exponentiation.
  2. Using that a sequence converges iff it is monotonous and has a supremum/infimum
    Therefore I've thought of restating the sequence as a recurrence and showing that it is monotunous and has a supremum.
    Showing that the sequence is monotonous is easy:

    r > 0, so (1 + \frac{r}{n}}) > 1, so L_{n+1} > L_n.

    The second part seems unsolvable, though.
    I've tried to use induction to show that the sequence has a supremum.

    Base step:
    I guess that proving Q \cdot (1 + r) < Q \cdot e^r is easy, and so I haven't yet spent time on proving it.

    What I have spent time on, however, is the inductive step:
    Assuming that L_k < Q \cdot e^r, I need to prove that L_{k+1} < Q \cdot e^r.

    This problem reduces to showing the following:
    (1 + \frac{r}{k})^k < e^r iff (1 + \frac{r}{k})^{k+1} < e^r

    I have no idea how one would go about proving that the left side of the 'iff' implies the right side of the 'iff'

I would greatly appreciate if anyone could help me making some advances using either method 1 or method 2 - or an entirely different method.
 
Last edited:
Physics news on Phys.org
It's a standard limit, Q exp(r).
 
Eynstone said:
It's a standard limit, Q exp(r).

Thanks for you quick answer. Could you elaborate on it being a "standard limit"? -I don't see how it will help me in showing whether or not the sequence converges..
 
That standard limit is \lim_{n\rightarrow\infty}\left(1 + \frac{x}{n}\right)^n = e^x

If you wanted to go this route and use the limit, I think you could use the squeeze theorem to prove the limit.
 
Bohrok said:
If you wanted to go this route and use the limit, I think you could use the squeeze theorem to prove the limit.

I doubt that to be the way which I am to solve that homework problem given that this standard limit is not mentioned in my textbook nor have we yet covered the squeeze theorem.
 
We really just need to show (1 + 1/n) ^ n converges as Q is a constant and the r can be written as an exponent.

You know the sequence is increasing you just need to show it bounded by some M. It turns out 3 works. Use the binomial theorem to show each Ln is less then 3. This is probably what your prof wants but it only says Ln has some least upper bound (which is e).alternatively if you can use the properties of logs and know log'(1) = 1 then I'd use this derivation from Spivak which gives e ^ x, show:

1) lim y->0 log(1+y)/y

2)lim x -> inf x*log(1 + (1/x))

3)e = lim x->inf [1+ (1/x)]^x (bring the limit outside)

then use a substitution to show lim n -> inf [1+ (r/x)]^x = e^r. The Q is just a constant.
 
Last edited:
Thanks for your elaborate answer, deluks917.

With regards to your alternative way to solve the problem, I am wondering whether it is logically sound.. Since I am to simply determine whether the sequence converges or diverges it seems incorrect to set out on determining the limit, thereby assuming that it converges. Should you not first conclude that it converges?

With regards to using the binomial theorem I have, upon reading about it, found it to be a perfect way to proof that it is bounded. However, we have not covered it in class and so I am wondering whether I can use it. Is there no other way to show that it is bounded than using the binomial theorem?
 

Similar threads

Back
Top