0

I tried to find a $b_n$ for which $a_n \le b_n$ so I did:

$$\frac{3n^2+2n}{2^n} \le \frac{1}{2^n} \Leftrightarrow \\ 3n^2+2n-1 \le 0 \Leftrightarrow \\ (n+1)(3n-1) \le 0 \Leftrightarrow \\ n \le -1 \lor n \le 1/3$$

Since $b_n = (\frac{1}{2})^n$ converges, so does $a_n$ but only for $\{ n: -1 \le n \le 1/3, n \in\mathbb{N}\}$.

Is this correct? I wrote the set of values for n like that because what I understand is that n has to be a natural number that starts at 1 (or whatever number is given which in this case was one, I don't know how to write with the sum symbol). Still the answer doesn't make a whole lot of sense to me. If n has to be a natural number doesn't that set become empty?

3 Answers3

1

Use the ratio test: $$\frac{\bigg[\frac{3n^2+8n+5}{2^{n+1}}\bigg]}{\bigg[\frac{3n^2+2n}{2^n}\bigg]}=\frac{3n^2+8n+5}{6n^2+4n}\to\frac12$$

Some clarity:

$2^n$ grows exponentially while $3n^2+2n$ grows quadratically (much slower). So, I can tell at a glance the terms will converge, hence I pick the ratio test to illustrate this point

The last part of the statement follows because of what I refer to as "Domination Leads To Irrelevancy", that is: $$\lim_{x\to\infty}\bigg[\frac{\sum_{k=0}^m a_k x^k}{\sum_{k=0}^n b_k x^k}\bigg]=\lim_{x\to\infty}\bigg[\frac{a_m}{b_n}x^{m-n}\bigg]=\begin{cases} \frac{a_mb_n}{|a_mb_n|}\infty & m>n \\ \frac{a_m}{b_n} & m=n \\ 0 & m<n \end{cases}$$

Rhys Hughes
  • 12,842
1

$a_n:=\dfrac{3n^2+2n}{2^n} <\dfrac{3n^2+2n^2}{2^n}=$

$\dfrac{5n^2}{2^n}=:b_n.$

Root test for $b_n$:

$\lim_{n \rightarrow \infty}\sqrt[n]{\dfrac{5n^2}{2^n}}=1/2<1$, hence convergent.

By comparison test $\sum a_n$ connnverges.

Used :

$\lim_{n \rightarrow \infty} 5^{(1/n)}=1$;

$\lim_{n \rightarrow \infty}(n^{(1/n)})^2=1$.

Peter Szilas
  • 20,344
  • 2
  • 17
  • 28
0

Since the exponential function grows faster than the all power function, we can write that $3n^2+2n\leq 2^{\frac{n}{2}}$ for large enough $n$. Thus by the comparsion test series converges.

thing
  • 1,690