The Easy Peasy Sum of Series Part 3

Calculus Level 3

The following summation of series n = 0 n 3 3 n \sum_{n=0}^\infty\frac{n^{\large 3}}{3^{\large n}} equals m n \dfrac{m}{n} . Compute m + n \large m+n .


Note :

Please provide the solution if you can answer it. Also, you may use Wolfram Alpha , but will you do that??? It's up to you. (>‿◠)✌


The answer is 41.

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

2 solutions

Karthik Kannan
Jun 16, 2014

Let us consider the sum:

1 + x + x 2 + x 3 + x 4 + . . . uptill infinite terms 1+x+x^{2}+x^{3}+x^{4}+...\text{uptill infinite terms} where x < 1 |x|<1

By the formula for the sum of an infinite Geometric Progression the above sum can be written as:

n = 0 x n = 1 1 x \displaystyle\sum_{n=0}^{\infty} x^{n}=\displaystyle\frac{1}{1-x}

Now differentiating w.r.t. x x we get:

n = 0 n x n 1 = 1 ( 1 x ) 2 \displaystyle\sum_{n=0}^{\infty} nx^{n-1}=\displaystyle\frac{1}{\left( 1-x\right)^{2}}

Multiplying both sides by x x :

n = 0 n x n = x ( 1 x ) 2 \displaystyle\sum_{n=0}^{\infty} nx^{n}=\displaystyle\frac{x}{\left( 1-x\right)^{2}}

Now again differentiating w.r.t. x x :

n = 0 n 2 x n 1 = 1 + x ( 1 x ) 3 \displaystyle\sum_{n=0}^{\infty} n^{2}x^{n-1}=\displaystyle\frac{1+x}{\left( 1-x\right)^{3}}

Now repeating the above process once more we get:

n = 0 n 3 x n 1 = ( 1 x ) ( 1 + 2 x ) + 3 ( x + x 2 ) ( 1 x ) 4 \displaystyle\sum_{n=0}^{\infty} n^{3}x^{n-1}=\displaystyle\frac{(1-x)(1+2x)+3(x+x^{2})}{\left( 1-x\right)^{4}}

Now substitute x = 1 3 x=\displaystyle\frac{1}{3} to obtain:

n = 0 n 3 3 n 1 = 99 8 \displaystyle\sum_{n=0}^{\infty} \frac{n^{3}}{3^{n-1}}=\displaystyle\frac{99}{8}

Thus the required answer is 1 3 n = 0 n 3 3 n 1 = 33 8 \displaystyle\frac{1}{3}\displaystyle\sum_{n=0}^{\infty} \frac{n^{3}}{3^{n-1}}=\boxed{\displaystyle\frac{33}{8}}

Great Solution ! :)

Keshav Tiwari - 6 years, 6 months ago

this problem was indeed complicated

Radinoiu Damian - 6 years, 5 months ago

what is the meaning w.r.t? how to difrentiate the right side?

Juang Bhakti Hastyadi - 6 years, 5 months ago
Brock Brown
Dec 28, 2014

I wrote this bit of Python to converge on the answer:

1
2
3
4
5
6
7
8
from fractions import Fraction as frac
infinity = 200
total = 0
i = 0
while i <= infinity:
    total += frac(i**3,3**i)
    i += 1
print total.numerator/float(total.denominator)

The program spits out 4.125, and 4.125 as a fraction is 33/8, thus the answer is 33+8 = 41.

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...