4
$\begingroup$

I have used the ratio test for series.

Let $a_n = \frac{n^4}{4^n}$

Therefore $\lim_{n\to\infty}| \frac{a_{n+1}}{a_n} |= \lim_{n\to\infty} \frac{(n+1)^4}{4^{(n+1)}} * \frac{4^n}{n^4}$

= $\lim_{n\to\infty} \frac{(n+1)^4}{4n^4} = |\frac{1}{4} | $

Since the ratio is less than 1, the series converges.

Is this correct?

  • 0
    Interesting. The question only asked if it converges. Thanks!2012-09-27

2 Answers 2

2

Yes, what you have done is correct. Alternatively, we can also use root test as follows: $\lim_{n\to\infty}|a_n|^{\frac{1}{n}}=\lim_{n\to\infty}\left(\frac{n^4}{4^n}\right)^\frac{1}{n}=\lim_{n\to\infty}\frac{(n^{\frac{1}{n}})^4}{4}=\frac{1}{4}$ since $\lim_{n\to\infty}n^{\frac{1}{n}}=1$. Since $\lim_{n\to\infty}|a_n|^{\frac{1}{n}}=\frac{1}{4}<1$, by root test, the series $\sum a_n$ converges.

1

One way to find out (yes, it is cheating ...) is to fire up sympy (I do use the interface isympy, which uses ipython) and type:

In [1]: summation( n**4/4**n, (n,0,oo)) Out[1]:  380 ───  81  In [2]:  

I leave the easy proof for you ... But think about this generalization: $ \sum_{i=0}^{\infty} \frac{ P(i) }{4^i} $ should converge for any polynomial $P$, and thinking about why should help you!

An example:

In [2]: summation( (n**4 + n**8)/4**n, (n,0,oo)) Out[2]:  4673320 ───────   2187  
  • 0
    First time I have heard of sympy. Seems like a great resource! Thanks for your input!2012-09-27