20

$\def\e{{\rm e}}$ I recently had the task to explain the proof that $\e$ is irrational as a presentation to my classmates. To prepare this presentation, the teacher gave me a script with a proof that uses an estimation of the series $b_n = \sum_{k=0}^n1/k!\ $ to show that there are no $p,q\in\mathbb N,\ $ such that $\e = p/q.$

Because we defined $\e$ as the limit of $a_n = \big(1+\frac1n\!\big)^n\ $ I had to include the rather long proof that $\lim\limits_{n\to\infty}a_n-b_n=0,\ $ rendering the whole proof quite long. Is there a “shorter” proof, given that $\e$ is defined as the limit of $a_n$?

Ivo Terek
  • 77,665
FUZxxl
  • 9,307

1 Answers1

4

(Too long for a comment.) This is probably the way you did it, but it doesn’t seem very long to me; where did it bog down?

From the binomial theorem we have

$$a_n = \left(1 + \frac1n \right)^n = \sum\limits_{k=0}^n \binom{n}{k}n^{-k} = \sum\limits_{k=0}^n \frac{n^{\underline k}}{k! n^k} \le \sum\limits_{k=0}^n \frac{1}{k!} = b_n.$$

For the other direction let $m>1$ be an integer; then

$$a_{mn} = \sum\limits_{k=0}^{mn}\frac{(mn)^{\underline{k}}}{k!(mn)^k} \ge \sum\limits_{k=0}^n\frac{(mn)^{\underline{k}}}{k!(mn)^k} \ge \left(\frac{(mn)^{\underline n}}{(mn)^n} \right) b_n \ge \left(\frac{m-1}{m} \right)^n b_n,$$

and $\displaystyle \lim\limits_{m\to\infty} \left(\frac{m-1}{m}\right)^n = 1$, so $b_n \le e$.

Brian M. Scott
  • 616,228