4

Here's the problem to be solved:

Show whether $\sum_{k=1}^{\infty} \frac{3^k+k^2}{4^k +1}$ converges or diverges

My attempt

$\sum_{k=1}^{\infty} \frac{3^k+k^2}{4^k +1} \leq \sum_{k=1}^{\infty} \frac{3^k+k^2}{4^k} = \sum_{k=1}^{\infty} (3/4)^k + \sum_{k=1}^{\infty} \frac{k^2}{4^k}$

The first term in the last equality converges, however, I'm struggling to show whether $\sum_{k=1}^{\infty} \frac{k^2}{4^k}$ converges or diverges. My hypothesis is that it converges, since $4^k$ is growing much faster than $k^2$, so I somehow must show that it's less than or equal to something else.

I'd be glad if you could share any tips. Thanks.

Tanamas
  • 1,837

4 Answers4

4

For $k \ge 2$, we have $3^k \ge k^2$, and that's all you need.

heropup
  • 135,869
3

Hint:

$$4^k = e ^{k\log 4} > \frac{k^4 (\log4)^4}{4!}$$

RRL
  • 90,707
  • Thanks. I tried this and it worked :) – Tanamas Nov 16 '21 at 21:21
  • @Tanamas: You're welcome. Using the expansion $e^x = 1 + x + \frac{x^2}{2!} + \ldots$ justifies your hypothesis that the exponential function grows faster than any polynomial function. – RRL Nov 16 '21 at 21:26
2

Hint : Think about $$\frac{1}{1-x} = \sum_{k=0}^\infty x^k$$ and its derivatives. Notice that $$\frac{d}{dx} \left(\frac{1}{1-x}\right) = \sum_{k=0}^\infty kx^{k-1}$$ then try multiplying both sides by $x$ and take another derivative and see what infinite sum we find.

This tells you it converges as well as its sum.

1

It is much simpler to use asymptotic analysis:

As $k^2=o(3^k)$, we have $3^k+k^2\sim_\infty3^k$. Similarly, $4^k+1\sim_\infty 4^k$. Therefore $$\frac{3^k+k^2}{4^k +1}\sim_\infty\biggl(\frac 34\biggr)^{\mkern-6mu k},$$which is a convergent geometric series.

Bernard
  • 175,478
  • Isn't this kind of similar to the Limit Comparison Test? (Not that I am denying the validity of your answer) – imranfat Nov 18 '21 at 01:03
  • @imranfat: In english speaking countries, it is indeed known as the lLimit Comparison Test. I prefer to place it in its real context, which is Asymptotic Analysis and more specifically, the notion of asymptotically equivalent functions. – Bernard Nov 18 '21 at 08:13
  • That makes sense. I did the limit comparison test on the given problem and that was a breeze. Didn't want to post my answer because it looked too similar to yours... – imranfat Nov 19 '21 at 03:37
  • 1
    I agree with you: it is generally the simplest & fastest way to determine limits. – Bernard Nov 19 '21 at 09:43