11

Suppose $(a_n)$ is a sequence such that $$a_n=\frac{1!+2!+\cdots+n!}{n!} \, .$$ Show that $\lim_{n \rightarrow \infty}{a_n}=1$. My attempt is to formulate an inequality and then use the Squeeze Theorem. Since we know that $$\frac{1}{n!}+\frac{2!}{n!}+\cdots+1>1$$ as $\frac{i!}{n!}>0$ for all $1 \leq i \leq n-1$, we have $a_n \geq1$. Then I'm stuck at formulating another side. Can anyone help?

Idonknow
  • 15,643

5 Answers5

18

Each of $1!,2!,...,(n-2)!$ is at most $(n-2)!$. Since there are $n-2$ such terms you have $$\frac{1! + 2! + \cdots + n!}{n!} \leq \frac{(n-2)(n-2)! + (n-1)! + n!}{n!}$$ $$= \frac{n-2}{n(n-1)} + \frac{1}{n} + 1$$ The limit of this as $n \rightarrow \infty$ is $1$, which is what you need.

Zarrax
  • 44,950
9

We will prove that: $$1!+2!+\cdots+n!\le 2\cdot n!$$ If $n=1$, it is trivial. And if $1!+2!+\cdots+n!\le 2\cdot n!$ holds, then $$1!+2!+\cdots+n!+(n+1)! \le 2\cdot n! +(n+1)! =(n+3)n! \le 2(n+1) n!$$ for all $n\ge 1$.

So we get $$\frac{1!+2+\cdots+(n-1)!+n!}{n!}\le \frac{2(n-1)!+n!}{n!}=1+\frac{2}{n}.$$

Hanul Jeon
  • 27,376
6

As Jonas Meyer suggested, the Stolz–Cesàro theorem might be another option. $$\lim_{n\to\infty}\frac{1!+2!+\cdots+n!}{n!}=\lim_{n\to\infty}\frac{(n+1)!}{(n+1)!-n!}=\lim_{n\to\infty}\frac{n+1}{n}=1.$$

Done.

Jonas Meyer
  • 53,602
user 1591719
  • 44,216
  • 12
  • 105
  • 255
2

HINT Prove that $$\dfrac{k!}{n!} < \dfrac{C}{n^2}$$ for $k \in \{1,2,3,\ldots,n-2\}$. Move the cursor over the gray area for a complete answer.

Note that for $n \geq 2$ and $k \leq n-2$, we have $\dfrac{k!}{n!} \leq \dfrac1{n(n-1)} < \dfrac2{n^2}$. Hence,$$1 < \sum_{k=1}^{n} \dfrac{k!}{n!} < \dfrac2n + \dfrac{(n-1)!}{n!} + \dfrac{n!}{n!} = \dfrac3n + 1$$Hence, the limit is $1$.

1

You have

$$\begin{align*} a_n&=\sum_{k=0}^{n-1}\frac{(n-k)!}{n!}\\ &=1+\frac1n\sum_{k=1}^{n-1}\frac{(n-k)!}{(n-1)!}\\ &=1+\frac1n\sum_{k=0}^{n-2}\frac{(n-1-k)!}{(n-1)!}\\ &=1+\frac1na_{n-1}\;. \end{align*}$$

If you can find an $M$ such that $a_n\le M$ for all $n$, then you’ll have $a_n\le 1+\frac{M}n$ for all $n$, which squeezes down nicely.

Now

$$a_n=1+\underbrace{\frac1n+\frac1{n(n-1)}=\ldots+\frac1{n!}}_{n-1\text{ terms}}\;;$$

can you put a constant upper bound on that?

Brian M. Scott
  • 616,228