2

Let $a_n\geq0$

Prove/disprove: $$\lim_{n \to \infty}a_n=1 \rightarrow \lim_{n \to \infty}\sqrt[n] a_n=1$$

Proof: By definition a sequence $\displaystyle\lim_{n \to \infty}\sqrt[n] b_n=L$ iff $\displaystyle\lim_{n \to \infty}\frac{b_{n+1}}{b_n}=L$ since $\displaystyle\lim_{n \to \infty}a_n=1$ $\displaystyle\lim_{n \to \infty}\frac{a_{n+1}}{a_n}=1$ and therefore $\displaystyle\lim_{n \to \infty}\sqrt[n] a_n=1$

Am I right?

gbox
  • 12,867
  • Is $a_n>0$ for all $n\in\mathbb{N}$? – user60887 Dec 29 '14 at 00:32
  • @user60887 Yes, Sorry I will add it – gbox Dec 29 '14 at 00:32
  • 4
    Why should $\lim\limits_{n \rightarrow \infty} \sqrt[n]{b_n} = L \iff \lim\limits_{n \rightarrow \infty} \frac{b_{n+1}}{b_n} = L$ be true "by definition" (if at all)? – dalastboss Dec 29 '14 at 00:36
  • I think he is using the ratio test. – user60887 Dec 29 '14 at 00:36
  • @dalastboss I do not know the name but it is as describe here: http://math.stackexchange.com/questions/76743/limit-of-fraca-n1a-n – gbox Dec 29 '14 at 00:39
  • 1
    If that is a result you may use in this context, I agree the proof follows from your argument modulo a few details. For example, it is also probably worth showing that $\lim\limits_{n \rightarrow \infty} a_n = 1 \implies \lim\limits_{n \rightarrow \infty} \frac{a_{n+1}}{a_n} = 1$. This should only require a couple lines of justification using limit rules, and also be careful to explain why it is safe to divide $a_n$. – dalastboss Dec 29 '14 at 00:45
  • consider $\lim_{n\to\infty}(1+1/n)^{1/n}$ – yoyo Dec 29 '14 at 00:54
  • 1
    yoyo, that limit goes to 1, as does the ratio of successive terms. – dalastboss Dec 29 '14 at 00:59

4 Answers4

6

I don't see where does the fact you use come from (certainly not from the definition). From the link you provided it seems at least the "if" part is true, so I guess you can prove it like that.

But there's also a quick and easy way to see it: \begin{align*}1\le\sqrt[n]x\le x&\text{ if }x\ge1\\1\ge\sqrt[n]x\ge x&\text{ if }x\le1\end{align*} Therefore $\sqrt[n]{a_n}\to1$ because all its members are closer to $1$ than in the original sequence.

user2345215
  • 16,422
  • In other words, it follows from the Squeeze Theorem. – Greg Martin Dec 29 '14 at 01:24
  • @GregMartin It follows directly from the definition. One could somehow apply the squeeze theorem ($1\pm|1-a_n|$?), but it seems a little bit forced to me. – user2345215 Dec 29 '14 at 01:28
  • The Squeeze Theorem can be applied with the three sequences $\min{1,a_n}$, ${\sqrt[n]{a_n}}$, $\max{1,a_n}$ - doesn't seem that forced to me. And "all its members are closer to 1 than in the original sequence" is an intuitive idea (a good one), the rigorous realization of which is in fact this application of the Squeeze Theorem. – Greg Martin Dec 29 '14 at 03:40
  • @GregMartin The "intuitive idea" is exactly in the definition of a limit! The sentence you quote says $|\sqrt[n]{a_n}-1|\le |a_n-1|$, so from the convergence of $a_n$ we get $\forall\varepsilon>0\exists n_0\forall n\ge n_0, |\sqrt[n]{a_n}-1|\le |a_n-1|<\varepsilon$, which is the convergence of $\sqrt[n]{a_n}$. – user2345215 Dec 29 '14 at 03:48
  • which is the proof of the Squeeze Theorem! :) I feel like we're arguing the same side here....
  • – Greg Martin Dec 29 '14 at 04:57