2

I'm trying to find $\lim_{n \to \infty}{\left(1+\frac{1}{\sqrt n}\right)^n}$. It looks pretty easy, so I think there's probably something simple I'm missing, because I can't seem to figure out where to even start. I've tried some basic algebraic manipulation but it doesn't seem to help much. I know the sequence diverges to infinity from typing it into WolframAlpha, but I don't know how to show that it's unbounded.

I'm trying to do it without using L'Hospital's rule or Bernoulli's inequality. Other Calc 1 methods are fair game.

Cassiterite
  • 183
  • 1
  • 6

4 Answers4

4

Bernoulli's Inequality gives

$$\left(1+\frac1{\sqrt n}\right)^n\ge1+\sqrt n\to \infty$$

Mark Viola
  • 179,405
  • That's nice and simple, unfortunately I can't use Bernoulli's inequality either. Should have mentioned it in the question, sorry, I've updated it – Cassiterite Mar 30 '18 at 17:00
  • Very nice and direct way! – user Mar 30 '18 at 19:13
  • 1
    @gimusi Thank you! Much appreciated. – Mark Viola Mar 30 '18 at 21:11
  • 1
    @Cassiterite Are you permitted to use the inequalities $\log(x)\ge \frac{x-1}{x}$ and $e^x\ge 1+x$? If so, then we have $$\left(1+\frac1{\sqrt n}\right)^n=e^{n\log\left(1+\frac1{\sqrt n}\right)}\ge e^{\frac{n}{1+\sqrt n}}\ge 1+\frac{n}{1+\sqrt n}$$ – Mark Viola Mar 30 '18 at 21:16
3

Note that

$$\left(1+\frac{1}{\sqrt n}\right)^n=\left[\left(1+\frac{1}{\sqrt n}\right)^{\sqrt n}\right]^{\frac n {\sqrt n}}\ge2^{\frac n {\sqrt n}}\to \infty$$

or as an alternative

$$\left(1+\frac{1}{\sqrt n}\right)^n=e^{n\log\left(1+\frac{1}{\sqrt n}\right)}\sim e^{\frac n {\sqrt n}-\frac12}\to \infty$$

user
  • 154,566
3

As $n\to\infty$, $$\left(1+\frac1{\sqrt n}\right)^{\sqrt n}\to e$$ and $e^{\sqrt n}$ is divergent since $e>1$.

2

Here a way without using Bernoulli directly but using the binomial formula only: $\left(1+\frac{1}{\sqrt n}\right)^n= 1 + \binom{n}{1}\frac{1}{\sqrt n} + \binom{n}{2}\left(\frac{1}{\sqrt n}\right)^2 + \cdots + \binom{n}{n}\left(\frac{1}{\sqrt n}\right)^n \stackrel{n>1}{>} 1 + \binom{n}{1}\frac{1}{\sqrt n} = 1+\sqrt{n}$

  • 1
    If use of Bernoulli's Inequality is prohibited, then use of the binomial theorem is also likely to be prohibited. – Mark Viola Mar 30 '18 at 21:10
  • I'm allowed to use the binomial theorem, actually. Thank you all for your answers :) I'm going to accept this one as it's the simplest to understand given the tools I have to work with but having different perspectives is always a great thing. – Cassiterite Mar 31 '18 at 16:10
  • 1
    @Cassiterite Bernoulli's Inequality is actually quite a bit more elementary than the binomial theorem. In fact, the first two terms of the binomial theorem for $(1+x)^n$ are $1$ and $nx$. – Mark Viola Mar 31 '18 at 17:27