3

For $c > 0,$ find the limit, lim$_{n \to \infty} n(\sqrt[n]{c} - 1)$

Ok, I am not exactly on sure how to do this. Though here are some of my thoughts:

lim$_{n \to \infty} (nc^{1/n} - n) = nc^0 - n = 0,$ and I don't think this can be correct logically. Also, I think we can make it a $\log$ function by doing it like this: $(nc^{1/n} - n) = e^{\log(nc^{1/n} - n)}.$ But, then what? We can't distribute the log inside because that's not correct. I am lost. Any help?

Update: please don't mark this as a duplicate of this, since the other question was not required to use L'hopital's rule, but I need to use that in my question.

Jellyfish
  • 1,675
  • However it appears as if the limit is $\log(c)$. http://www.wolframalpha.com/input/?i=lim+as+n-%3E+infinity+n%28c^%281%2Fn%29-1%29 – Aleksandar Jul 17 '15 at 02:29
  • Is it possible to do this using rules of sequences (i.e. not L'Hopital)? – user217285 Jul 17 '15 at 02:49
  • @Nitin: Using rules of sequences it is possible to prove that for $c > 0$ the limit exists and therefore defines a function of real variable $c$. If we call this function $f(c)$ then it can be further proved that $f(ab) = f(a) + f(b), f(a/b) = f(a) - f(b), f(1) = 0$ and that $f(x)$ is differentiable with $f'(x) = 1/x$. None of these proofs require any existing knowledge of $\log x$ and $e^{x}$. See http://paramanands.blogspot.com/2014/05/theories-of-exponential-and-logarithmic-functions-part-2_10.html – Paramanand Singh Jul 17 '15 at 05:07
  • Perhaps this link might prove itself helpful... – Lucian Jul 17 '15 at 09:09
  • 2
    @Jellyfish: In what way are you saying L'Hopital's Rule needs to be used in your Question? Your thoughts on the problem did not include any attempt to use L'Hopital's Rule. – hardmath Jul 17 '15 at 17:32
  • @hardmath The other question had the requirement of not to use L'hopital's rule, and since I got stuck in logarithm part of the problem, I though it is really obvious that I am approaching for L'hopital's rule. – Jellyfish Jul 17 '15 at 17:50
  • @ErickWong Sorry when I searched for the same problem, I didn't see any suggestions on the other problems. Then, how can I tell whether or not I am asking the same one? Also, if you look at my other questions, I always link if the same question is present. My intention wasn't about asking a duplicate one but rather figuring out what mistakes I did. – Jellyfish Jul 17 '15 at 18:31
  • @Jellyfish: By closing as a duplicate we are helping to create the searchable connections among fairly identical Questions. It is not a bad thing that you asked, nor that you got an Answer that you chose to accept. Marking this Question as a duplicate of the other doesn't take away any credit from those who contributed here. – hardmath Jul 17 '15 at 19:25

4 Answers4

6

Making the substitution of $x = \frac{1}{n}$, we can write, $$\lim_{n\rightarrow\infty} n(c^{1/n} - 1) = \lim_{x\rightarrow 0^+} \frac{c^x - 1}{x} = \left.\frac{\mathrm{d}}{\mathrm{d}x} c^x\right|_{x=0} = \log(c)$$

Theo Bendit
  • 50,900
6

Observe that $$c-1 = (\sqrt[n]{c}-1)\left(c^\frac{n-1}{n} + c^\frac{n-2}{n} + \cdots + 1\right)$$

so we can rewrite the limit as

$$\lim_{n\to\infty} n(\sqrt[n]{c}-1) = (c-1)\lim_{n\to\infty} \frac{n}{c^\frac{n-1}{n} + c^\frac{n-2}{n} + \cdots + 1}$$

But, inverting the right-hand side and interpreting it as a Riemann sum, we have

$$\lim_{n\to\infty} \frac{c^\frac{n-1}{n} + c^\frac{n-2}{n} + \cdots + 1}{n} = \int_0^1 c^x\;dx = \frac{c-1}{\log c}$$

so, altogether,

$$\lim_{n \to \infty} n(\sqrt[n]{c}-1) = \frac{c-1}{c-1}\log c = \log c$$

3

Notice first that this is better handled as a product: $$\lim\limits_{n\rightarrow \infty}(\sqrt[n]{c}-1)=0$$ so that: $$\lim\limits_{n\rightarrow \infty}n(\sqrt[n]{c}-1)=\infty\cdot0$$ By clever re-write, we have: $$\lim\limits_{n\rightarrow \infty}\frac{\sqrt[n]{c}-1}{\frac1n}=\frac00$$ And we can apply L'Hopital's rule to this: $$\lim\limits_{n\rightarrow \infty}\frac{\frac{-\sqrt[n]{c}\log(c)}{n^2}}{\frac{-1}{n^2}}=\lim\limits_{n\rightarrow \infty}(\sqrt[n]{c}\log(c))=\log(c)$$

Terra Hyde
  • 1,102
2

i am not sure of the precise justification of the following argument, but it has the merit of motivating the result, and perhaps as a mnemonic:

LEMMA if $a_n$ is a convergent sequence $$ \begin{align} \lim_{n\rightarrow\infty} a_n & = \log \lim_{n\rightarrow\infty} e^{a_n} \\ & = \log \lim_{n\rightarrow\infty} \left(1+\frac{a_n}{n} \right)^n \end{align} $$

with $a_n=n(\sqrt[n]{c}-1)$ this gives $$ \lim_{n\rightarrow\infty} a_n = \log c $$

David Holden
  • 18,040