3

If $[$.$]$ denotes the greatest integer function, then find the value of $\lim_{n \to \infty} \frac{[x] + [2x] + [3x] + … + [nx]}{n^2}$

What I did was, I wrote each greatest integer function $[x]$ as $x - \{x\}$, where $\{.\}$ is the fractional part. Hence, you get

$\lim_{n \to \infty} \frac{\frac{n(n+1)}{2}(x-\{x\})}{n^2}$

The limit should then evaluate to $\frac{x-\{x\}}{2}$

But the answer given is $\frac{x}{2}$. What am I missing here?

skb
  • 105
  • The sequence approaches $\infty$ instead of $x/2$ – Václav Mordvinov May 28 '18 at 20:07
  • @DonAntonio I'm so sorry, Yes, I meant $⌊x⌋=x−{x}$ and the limit in question has $n$ tending towards infinity. I have made the necessary edits. – skb May 28 '18 at 20:12
  • Some questions on the same limit: https://math.stackexchange.com/questions/1383999/calculating-limit-sequences https://math.stackexchange.com/questions/1255995/help-in-evaluating-the-given-limit – Martin Sleziak Sep 20 '19 at 12:31

2 Answers2

6

$$\frac{\lfloor x\rfloor+\ldots+\lfloor nx\rfloor}{n^2}=\frac{x+2x+\ldots nx-\{x\}-\ldots-\{nx\}}{n^2}=$$

$$=\frac{n(n+1)}{2n^2}x-\frac{\{x\}+\ldots+\{nx\}}{n^2}\xrightarrow[n\to\infty]{}\frac12x-0=\frac x2$$

since the second addend above tends to zero:

$$\frac{\{x\}+\ldots+\{nx\}}{n^2}\le\frac n{n^2}=\frac1n\xrightarrow[n\to\infty]{}0$$

DonAntonio
  • 214,715
  • I didn't really get how the second addend (fractional part thing) tends to zero, as n tends to infinity. Isn't it in an inderminate form as it is? Also, what has been done in the last line of the answer? – skb May 28 '18 at 20:20
  • @skb Every term $;{kx};$ is less than $;1;$ , so that whole sum's numerator is less that $;1+1+\ldots+1=n;$ ... – DonAntonio May 28 '18 at 20:22
  • Have you used the sandwich theorem in the last line? But shouldn't there be another expression less than it for it to work? – skb May 28 '18 at 20:24
  • @skb But isn't it obvious that the whole expression is greater than zero or equal to it? You can complete that argument... – DonAntonio May 28 '18 at 20:27
  • Got it. Thanks a lot for the help! – skb May 28 '18 at 20:27
0

Note that by Stolz-Cesaro

$$\lim_{n \to \infty} \frac{\lfloor x\rfloor + \lfloor 2x \rfloor + \lfloor3x\rfloor + … + \lfloor nx]}{n^2}=\lim_{n \to \infty} \frac{\lfloor(n+1)x\rfloor}{(n+1)^2-n^2}=\lim_{n \to \infty} \frac{\lfloor(n+1)x\rfloor}{2n+1}=$$ $$=\lim_{n \to \infty} \frac{(n+1)x}{2n+1}-\frac{\{(n+1)x\}}{2n+1}$$

user
  • 162,563