The series is $$\frac{5}{1\cdot2}\cdot\frac{1}{3}+\frac{7}{2\cdot3}\cdot\frac{1}{3^2}+\frac{9}{3\cdot4}\cdot\frac{1}{3^3}+\frac{11}{4\cdot5}\cdot\frac{1}{3^4}+\cdots$$ This is my attempt: $$T_n=\frac{2n+3}{n(n+1)}\cdot\frac{1}{3^n}$$ Assuming $$\frac{2n+3}{n(n+1)}=\frac{A}{n}+\frac{B}{n+1}$$ we find $A=3,B=-1.$ Putting these values in $T_n$ we get, $$T_n=\frac{1}{n}\cdot\frac{1}{3^{n-1}}-\frac{1}{n+1}\cdot\frac{1}{3^{n}}$$ How do I find the sum of the series from here $?$
-
1So, T$(n)=f(n)-f(n+1)$ where $$f(m)=\dfrac1{m3^{m-1}}$$ – lab bhattacharjee Jan 03 '18 at 14:20
-
Writing $T_n=3/n3^n-3/(n+1)3^{n+1}$ makes the telescoping more obvious. – Jan 04 '18 at 10:36
3 Answers
Just try to write the expression for $T_{n+1}$ and note that the series telescopes.
$$T_n=\frac{1}{n}\cdot\frac{1}{3^{n-1}}-\color{purple}{\frac{1}{n+1}\cdot\frac{1}{3^{n}}} \\ T_{n+1}=\color{purple}{\frac{1}{n+1}\cdot\frac{1}{3^{n}}}-\frac{1}{n+2}\cdot\frac{1}{3^{n+1}}$$
We see the terms are cancelling, so
$$\begin{align} \sum_{i=1}^{n} T_i &= \frac{1}{1}\frac{1}{3^{0}} -\color{blue}{\frac{1}{2}\frac{1}{3^{1}}+\frac{1}{2}\frac{1}{3^{1}}}... -\color{red}{\frac{1}{n-1}\frac{1}{3^{n-2}}+\frac{1}{n-1}\frac{1}{3^{n-2}}} -\frac{1}{n}\frac{1}{3^{n-1}}\\ &= 1-\frac{1}{n3^{n-1}} \end{align}$$
Therefore as $n\to \infty$, we see the sum tends to $1$.
- 7,521
-
-
-
-
@OlivierOloa I am sorry I still don't see what you are referring to! I followed where OP left and see if we add, all terms cancel and only the first term remains, ie $\frac{1}{1}\cdot \frac{1}{3^{1-1}} = 1$. am I missing something? – jonsno Jan 03 '18 at 14:10
-
Sorry I don't understand how you obtain a final result from your two lines above. – Olivier Oloa Jan 03 '18 at 14:12
-
@OlivierOloa See in $T_{n} + T_{n+1}$ the purple terms cancel. Then if we add $T_{n+2}$ the next term $\frac{1}{n+2}.\frac{1}{3^{n+1}}$ cancels. Similarly all terms cancel and as $n\to \infty$ the last term becomes $0$. Ill better edit it in.. – jonsno Jan 03 '18 at 14:15
-
-
-
Ok cheers :) This was most straightforward as OP had done all the work! There must be other interesting methods! – jonsno Jan 03 '18 at 14:36
-
$\sum_{i=1}^{n} T_i =S_n - R_n$ , where
$S_n := \sum_{i=1}^{n} \dfrac{1}{i}\dfrac{1}{3^{i-1}};$
$R_n :=\sum_{i=1}^{n} \dfrac{1}{i+1} \dfrac{1}{3^i}.$
Change the dummy index in $R_n:$
$k= i +1$, then
$R_n=\sum_{k=2}^{n+1} \dfrac{1}{k}\dfrac{1}{3^{k-1}} =$
$(1 + \sum_{k=2}^{n}\dfrac{1}{k}\dfrac{1}{3^{k-1}}) -1 + \dfrac{1}{n+1}\dfrac{1}{3^n}$
$= S_n - 1 + \dfrac{1}{n+1}\dfrac{1}{3^n}.$
Hence:
$T_n = S_n - R_n= 1 - \dfrac{1}{ n+1}\dfrac{1}{3^n}.$
- 20,344
- 2
- 17
- 28
$$Sum=\sum_{n=1}^{\infty} \frac{1}{n}.\frac{1}{3^{n-1}}-\frac{1}{n+1}.\frac{1}{3^{n}}$$
$$Sum=\sum_{n=1}^{\infty} \frac{1}{n}.\frac{1}{3^{n-1}}-\sum_{n=1}^{\infty} \frac{1}{n+1}.\frac{1}{3^{n}}$$
$$Sum=\sum_{n=1}^{\infty} \frac{1}{n}.\frac{1}{3^{n-1}}-\sum_{n=2}^{\infty} \frac{1}{n}.\frac{1}{3^{n-1}}$$
$$Sum=\sum_{n=1}^{1} \frac{1}{n}.\frac{1}{3^{n-1}}=1$$
- 40,625