Fill in the blank:
The series 1 + 2 2 1 + 3 2 1 + 4 2 1 + ⋯ is two times the value of the alternating series 1 − 2 2 1 + 3 2 1 − 4 2 1 + ⋯ .
The series 1 + 2 3 1 + 3 3 1 + 4 3 1 + ⋯ is ________ times the value of the alternating series 1 − 2 3 1 + 3 3 1 − 4 3 1 + ⋯ .
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.
How do you know that it should be 4/3?
Log in to reply
There's probably a formula for these that I don't know.
But I'm lazy, so I wrote a quick Python program to calculate the sums to 1000 terms.
Log in to reply
Hmmm, in that case, why don't you show us the Python code to illustrate how you got the answer? Because right now, I don't find this solution helpful to anyone else...
And no, there's no formula involved. On the other hand, you might find "Dirichlet eta function" important.
Log in to reply
@Pi Han Goh – You are correct of course. It wasn't too helpful as it was. Here is the simple code:
sa=0
for i in range(1,1001):
sa=sa+1.0/(i*i*i)*(-1)**(i-1)
s=0
for i in range(1,1001):
s=s+1.0/(i*i*i)
print s,sa,s/sa
1.20205640366 0.90154267687 1.33333278002
Problem Loading...
Note Loading...
Set Loading...
It appears that the straight summation series is 4/3 times the alternating series.
Not anywhere close to any of the answers given.