1

I have looked through several similar post but can't find one that quite fits my problem. The sequence in question is

$$f(n) = \left(1+\frac{1}{n}\right)^n$$

which obviously can't just be derived. I have been trying to prove this by induction; however the algebra doesn't give a nice form that makes it clear that $f(n+1)>f(n)$. Any help or insight is appreciated!

Andrei
  • 37,370

1 Answers1

0

As indicated in the comments we have that

$$\frac{f(n+1)}{f(n)}=\frac{\left(\frac{n+2}{n+1}\right)^{n+1}}{\left(\frac{n+1}{n}\right)^n}=\left(\frac{n+2}{n+1}\right)\left(\frac{n(n+2)}{(n+1)^2}\right)^n=$$

$$=\left(\frac{n+2}{n+1}\right)\left(\frac{(n+1)^2-1}{(n+1)^2}\right)^n=\left(\frac{n+2}{n+1}\right)\left(1-\frac{1}{(n+1)^2}\right)^n$$

then use Bernoulli's inequality.

user
  • 154,566