SOLUTION: Determine if the limit exists as n goes to infinity: {{{ 1/(n+1)+1/(n+2)}}} +...+ {{{1/(2n-1) + 1/(2n)}}}. If the limit exists then find its value.

Algebra.Com
Question 1103369: Determine if the limit exists as n goes to infinity:
+...+ .
If the limit exists then find its value.

Answer by math_helper(2461)   (Show Source): You can put this solution on YOUR website!
Let + … +
Consider + … +
For :


: :

That's n terms, each of which is less than 1.

which implies

For the lower bound: (all but the last term are > n/2)

So and the series has a limit as —> .
———————————
To find the limit value, I cheated and used a one-line Perl script:
perl -e '$m=10000000; for($i=$m, $s=0; $i<(2*$m); $i++) { $s += 1/($i+1); } print "$s\n";'
0.693147155559907
perl -e '$m=100000000; for($i=$m, $s=0; $i<(2*$m); $i++) { $s += 1/($i+1); } print "$s\n";'
0.693147178059741
Which looks like ln(2).
————————————
EDIT: I also should have shown that the series terms get smaller as —>
which goes to 0 monotonically as —> . This means increases by smaller amounts as n increases, and the series converges.

RELATED QUESTIONS

Please help me find the limit of 1/(2n+1) + 1/(2n+2) + 1/(2n+3) + ... + 1/(3n) as n goes... (answered by ikleyn)
Please find the limit of the following sequence as n goes to infinity: {{{n/(n^2+1)... (answered by math_helper,robertb)
Help me find the limit of (1 + √2 + √3 +... + √(n-1) + √n)/n^(3/2) as n goes to... (answered by greenestamps,ikleyn)
Find the limit (1+1/n) as n tends to... (answered by tommyt3rd)
Please help me find a limit of an=n^2(n!)/(n+2)! the second is... (answered by AnlytcPhil)
a(n) stands for sequence a(1)=2, a(2)=3, {{{a(n+2)=a(n+1)+1/ln(a(n))}}} Prove that the (answered by CPhill)
Find the value of n for which... (answered by scott8148)
How does 2n(n+1)-2n^2 simplify to... (answered by Fombitz)