0

This is my work so far:

$$\lim_{n \to \infty} \sum_{i=0}^{2n} \frac{i}{n^2 + i^2} = \lim_{n \to \infty} \sum_{i=0}^{2n} \frac{\frac{i}{n^2}}{1 + \frac{i^2}{n^2}} = \lim_{n \to \infty} \frac{1}{n}\sum_{i=0}^{2n} \frac{\frac{i}{n}}{1 + (\frac{i}{n})^2} $$

I am not sure where to go form here, by testing out larger values of $n$ I get that this limit seems to approach the decimal $\cong 0.804$, but I'm not sure how to get this.

Clayton
  • 24,751
  • 3
    Hint: you have managed to express the sum as a Riemann sum. – Jason May 08 '18 at 18:09
  • So does the sum term evaluate to some function $f(x)$? I'm not sure how to find this function, it looks familiar to $\int \frac{1}{1+x^2} dx = tan^-1(x)$, but I'm not sure. – Hisoka Moroh May 08 '18 at 18:16
  • 2
    Not quite. Note that, in more generality, $\frac1n\sum_{i=1}^{kn}f(\frac in)=\int_0^kf(x)dx + O(\frac1n)$. It should be relatively easy to identify the function $f$ from your right hand side. – Jason May 08 '18 at 18:17
  • Thank you, I think I understand where $f(x)$ comes from now. What does $O(\frac{1}{n})$ stand for? – Hisoka Moroh May 08 '18 at 18:21
  • Some sequence bounded in absolute value by $C\cdot\frac1n$ for some absolute constant $C>0$. Google Big-O notation for more info. – Jason May 08 '18 at 18:23

1 Answers1

0

Here's how to find a function which has this sum as a Riemann sum on a certain interval:

Set $\;x_i=\dfrac in,\enspace y_i=1+x_i=\dfrac{n+i}n,\enspace\Delta x=\Delta y=\dfrac1n,\;$ and rewrite the sum: \begin{align} \frac1n\sum_{i=0}^{2n} \frac{\frac{i}{n}}{1 + (\frac{i}{n})^2}&=\frac1n\sum_{i=1}^{n} \frac{\frac{i}{n}}{1 + (\frac{i}{n})^2}+\frac1n\sum_{i=1}^{n} \frac{\frac{n+i}{n}}{1 + (\frac{n+i}{n})^2}\\[1ex] &=\Delta x \sum_{i=0}^{n} \frac{x_i}{1 + x_i^2}+\Delta y \sum_{i=0}^{n} \frac{y_i}{1 + y_i^2} \\[1ex] &\to \int_0^1\frac x{1+x^2}\,\mathrm d x +\int_1^2\frac y{1+y^2}\,\mathrm d y \\[1ex] &= \int_0^2\frac x{1+x^2}\,\mathrm d x =\frac12\,\ln(1+x^2)\biggr|_0^2 =\color{red}{\frac12\ln 5}. \end{align}

Bernard
  • 175,478