0

Now I want to find convergence of a sequence:

$$ \lim_{n \to \infty} \sqrt[n]{4^n + 5^n}$$

Now I am pretty sure I have solved this using logic on inspection: $4^n \ll 5^n$ as $n\rightarrow\infty$, hence $\sqrt[n]{4^n + 5^n}=\sqrt[n]{ 5^n} = 5$

Now I could go from here with an epsilon delta proof(maybe), but I can't see how I can Mathematically find this value without intuition(that may be wrong).

Any advice would be greatly appreciated!

Note: The title can be edited freely(with relevance of course), I wasn't sure what to label it.

Display Name
  • 1,443
  • 1
  • 20
  • 45

3 Answers3

2

In the same spirit as Fermat, rewrite $$4^n+5^n=5^n \Big(1+(\frac{4}{5})^n\Big)$$ So $$ {\sqrt[n]{4^n + 5^n}}= {\sqrt[n]{5^n(1 + (\frac{4}{5})^n})}=5 \sqrt[n]{1 + (\frac{4}{5})^n}$$ Now, consider the Taylor series of $\sqrt[n]{1+x}$ when $x$ is small; it is given by $$\sqrt[n]{1+x}=1+\frac{x}{n}+O\left(x^2\right)$$ Replace now $x$ by $\Big(\frac{4}{5}\Big)^n$ and you finally end with $${\sqrt[n]{4^n + 5^n}} \simeq 5+\frac{5}{n} \Big(\frac{4}{5}\Big)^n$$

Let us try for a few values of $n$. For $n=10$ the exact value is $5.051256749$ while the approximation is $5.053687091$. For $n=20$ the exact value is $5.002866636$ while the approximation is $5.002882304$.

1

$$\lim \limits_{n \to \infty} {\sqrt[n]{4^n + 5^n}}=\lim \limits_{n \to \infty} {\sqrt[n]{5^n(1 + (\frac{4}{5})^n})}=5$$ Since $(\frac{4}{5})^{n}$ goes to zero as $n$ tends to infinity. But David Mitra's answer in his comment is more nice!

Fermat
  • 5,230
  • I prefer this answer over David's, but only on the basis that I don't see how his proves that it converges to five specifically. Could you perhaps elaborate on his answer?

    I didn't think about $(\frac45)^n$ so that was a happy reminder. Thank you!

    – Display Name Jun 19 '14 at 12:51
  • @DisplayName use the definition of $e$ – S L Jun 19 '14 at 13:06
  • @Display Name First use $\sqrt{ab}=\sqrt{a}\sqrt{b}$ and then the fact that $\lim_{n\to \infty}\sqrt[n]{2}=1$ – Fermat Jun 20 '14 at 12:57
1

Another way: log the expression to get $$ \frac{\log (5^n + 4^n)}{n} = \frac{\log 5^n + \log (1+(\frac{4}{5})^n)}{n} \sim \log 5 + \frac{(\frac{4}{5})^n}{n} \to_n \log 5 $$ Now exponentiate and get $5$.

Alex
  • 19,262