How Do You Simplify the Sum to Find the Limit as n Approaches Infinity?

  • Thread starter Thread starter ahmadmz
  • Start date Start date
  • Tags Tags
    Limit
ahmadmz
Messages
62
Reaction score
0

Homework Statement



Find the limit as n goes to infinity of [ 1/(n+1) + 1/(n+2) + ... + 1/(2n) ]

Homework Equations





The Attempt at a Solution



I tried rewriting the sum so we can get the indeterminate form infinity/infinity and use L'Hopital's rule but the derivative gets too complicated. Is there some way to simplify the sum first?

I asked my teacher for help but he said he can't help me with this.
 
Physics news on Phys.org
I don't quite understand your question.
ahmadmz said:
Find the limit as n goes to infinity of [ 1/(n+1) + 1/(n+2) + ... + 1/(2n) ]
Since, isn't it obviously 0+0+...+0=0?

I'm sure you mean something else :smile:
 
My book says the answer is ln2. Are you sure it's 0?
 
Mentallic said:
I don't quite understand your question.

Since, isn't it obviously 0+0+...+0=0?

I'm sure you mean something else :smile:
No, it is not. You take the sum for each n, then let n go to infinity. That is NOT the same as letting n go to infinity in each term. For example, when n= 2 the sum is 1/3+ 1/4= 7/12. When n= 3, 1/4+ 1/5+ 1/6= 74/120= 37/60. For general n the sum is, I believe,
\frac{3n^2+ n}{2}\frac{(2n)!}{n!}
so the question is, what does that go to as n goes to infinity?
 
Mentallic said:
I don't quite understand your question.

Since, isn't it obviously 0+0+...+0=0?

I'm sure you mean something else :smile:

Because the number of terms in that sum is n, which also tends to infinity as n increases without bound. Consider the following sum:

\lim_{k \rightarrow \infty} \sum_{n = 1} ^ k \frac{1}{k} = \lim_{k \rightarrow \infty} \underbrace{ \left(\frac{1}{k} + \frac{1}{k} + ... + \frac{1}{k} \right)}_{k \mbox{ terms}}

Each term tends to 0, but the above limit is simply:

\lim_{k \rightarrow \infty} \frac{k}{k} = 1 \neq 0.

----------------------------

So, back to the OP's problem, when dealing with infinitely-many-term sum like this, one should make use of the definition of Riemann Integral. You can go, like:

\sum_{i = n + 1} ^ {2n} \frac{1}{i}

= \sum_{i = n + 1} ^ {2n} \frac{1}{n} \left( \frac{n}{i} \right)

= \sum_{i = n + 1} ^ {2n} \frac{1}{n} \left( \frac{1}{\frac{i}{n}} \right)

By letting i = n + i', or similarly i' = i - n

= \sum_{i' = 1} ^ {n} \frac{1}{n} \left( \frac{1}{\frac{n + i'}{n}} \right)

= \sum_{i' = 1} ^ {n} \frac{1}{n} \left( \frac{1}{1 + \frac{i'}{n}} \right)

Now, let's think of a (continuous) function, and a range, such that when applying Riemann Integral to integrate the function over that range will produce the above sum.

----------------------------

I remembered reading a book, which has a nice approach on solving this problem that does not use integration. It's a little bit more complicated, you need to look at it quite closely to realize it. I'll show you in case it comes back to my mind again. :)
 
I think the range will be [0,1/2] and the function will be decreasing on it's domain. I'm not seeing the explicit function of n.
 
Write the sum as \sum_{k=1}^{n}\frac{1}{n+k} = \sum_{1}^{n}\left(\frac{1}{1 + \frac{k}{n}}\right)\cdot\frac{1}{n}. Reinterpret this as the sum of the area of rectangles, where each rectangle has base [k/n, (k+1)/n] and height 1/(1 + k/n). Consider the function f defined by f(x) = 1/(1+x) on the interval [0,1]. Partition [0,1] into n equal subintervals by the points 0 = t_0 < t_1 < \mbox{ ... } < t_n = 1. Clearly, t_k = \frac{k}{n} where k ranges from 0 to n. Since f is decreasing, the infimum of f over the interval [t_{k-1}, t_k] is f(t_k) and the supremum f(t_{k-1}). The lower sum is \sum_{1}^{n}\left(\frac{1}{1 + \frac{k}{n}}\right)\cdot\frac{1}{n} and the upper sum \sum_{1}^{n}\left(\frac{1}{1 + \frac{k-1}{n}}\right)\cdot\frac{1}{n}. Since \sum_{1}^{n}\left(\frac{1}{1 + \frac{k}{n}}\right)\cdot\frac{1}{n} is between the upper and lower sums, the area that will be assigned to f over [0,1] is equal to this last sum for arbitrarily large n, which is equal to the original limit. But this is just \int_{0}^{1}\frac{1}{x+1}\,dx, which evaluates to ln(2).

Note: This is a lot easier if you draw a picture of the function defined by 1/x or 1/(x+1). You may apply the squeeze theorem if you have the right geometric notion down.
 
Last edited:
Wow thanks a lot guys. I get it now but i am not sure how we know the limits of integration to be from 0 to 1. I can see how their difference is 1.

VietDao29 do let me know of that other method also if you remember it.
I really like this question :)
 
ahmadmz said:
Wow thanks a lot guys. I get it now but i am not sure how we know the limits of integration to be from 0 to 1. I can see how their difference is 1.

Have you covered Riemann Sum in university yet? If you have, then you can have a brief review on that Chapter. Reading the concept once again, and scan through some examples may help. When reading examples, just keep asking question, like why did they do this. And try to find the answer for that question. You may also try to solve some of the problems about Riemann Sum in your text-book. It should be useful.

Practicing solving problems is the key to spot things quickly. :)

As snipez90's pointed out, the limit can be: \int_0 ^ 1 \frac{1}{1 + x} dx, and it can also be: \int_1 ^ 2 \frac{1}{x} dx, depending on how you partition, and which function you choose.

Btw, we "often" partition some interval into equal sub-intervals.

---------------

In case you haven't covered that in school, you can have a look here. There's an example at the bottom of the page: http://en.wikipedia.org/wiki/Riemann_sum" .

Don't hesitate to shout it out, in case you find something unclear, the HHs, as well as other people here are more than willing to help you.

VietDao29 do let me know of that other method also if you remember it.
I really like this question :)

Another method is here. Let's try to see if you can solve the problem using this method:

https://www.physicsforums.com/showthread.php?t=336834

(this is fairly hard, as to solve this, you'll need to prove some other limits (like, the Euler Constant, and stuff))

But this is another way to go, so, just give it a shoot if you'd like. :)

There's still at least one more way to go. I'll search through my books this afternoon, and hopefully, if I find it, I'll post it here.

If I remember correctly, it involves some kind of exponential function. =.="
 
Last edited by a moderator:
  • #10
Ok so we let x = k/n. When k=1 and n-> infinity , x-> 0. And when k=n, x is just 1. This is why the limits of integration are 0 and 1.

Thanks again guys, case solved :P.
 
  • #11
VietDao29 said:
Because the number of terms in that sum is n, which also tends to infinity as n increases without bound. Consider the following sum:

\lim_{k \rightarrow \infty} \sum_{n = 1} ^ k \frac{1}{k} = \lim_{k \rightarrow \infty} \underbrace{ \left(\frac{1}{k} + \frac{1}{k} + ... + \frac{1}{k} \right)}_{k \mbox{ terms}}

Each term tends to 0, but the above limit is simply:

\lim_{k \rightarrow \infty} \frac{k}{k} = 1 \neq 0.

----------------------------

Aha! thanks for correcting me. It didn't cross my mind that the number of terms also tends to infinite.
 
Back
Top