Evaluate
k = 0 ∑ ∞ ( − 1 ) k ( 4 k + 1 1 + 4 k + 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.
You don't need to use residues for this problem. :)
Rewrite the definite integral in the following manner:
∫ 0 ∞ 1 + x 4 1 + x 2 d x = ∫ 0 ∞ ( x − 1 / x ) 2 + 2 1 + 1 / x 2 d x
Use the substitution x − 1 / x = t and we are done.
Log in to reply
@Pranav Arora , how can infinite sums be transformed into integrals?I have heard of methods like Borel Summation, Euler's method,The Euler-Maclaurin formula etc. but none of them correspond to the integral you used.
Log in to reply
Hello Bogdan! :)
I don't think I understood your question. Are you talking about the definite integral I posted or do you have some doubts regarding Jack's solution?
Log in to reply
@Pranav Arora – The integral Jack used, which then you rewrited.
Log in to reply
@Bogdan Simeonov – Jack used the following:
∫ 0 1 x 4 k d x = 4 k + 1 1
∫ 0 1 x 4 k + 2 d x = 4 k + 3 1
He then used the fact that:
k = 0 ∑ ∞ ( x 4 k + x 4 k + 2 ) = k = 0 ∑ ∞ ( 1 + x 2 ) x 4 k = 1 + x 4 1 + x 2
Does this help? :)
How do you solve that in detail? It seems I haven't encounter this kind of problem before. Thanks :)
I use partial fractions ∫ 1 + x 4 1 + x 2 d x = 2 1 ∫ [ x 2 − 2 x + 1 1 + x 2 + 2 x + 1 1 ] d t and then I use completing the square method. How about this one: n = 0 ∑ ∞ 4 4 n + 1 ( 4 n + 1 ) ( − 1 ) n BTW, Jack D'Aurizio is also Math SE user.
I wrote a C code to solve it (: Here is a piece of the code:
float a, k;
for(k=0;k<10000;k++)
a+=pow(-1, k)*((1/(4*k+1))+(1/(4*k+3)));
cout << a;
It doesnt converge very fast, so i had to use a big number of iterations to see where it was going.
Problem Loading...
Note Loading...
Set Loading...
We have: k = 0 ∑ + ∞ ( − 1 ) k ( 4 k + 1 1 + 4 k + 3 1 ) = ∫ 0 1 k = 0 ∑ + ∞ ( − 1 ) k ( x 4 k + x 4 k + 2 ) d x = = = ∫ 0 1 1 + x 4 1 + x 2 d x 2 1 ∫ 0 + ∞ 1 + x 4 1 + x 2 d x 4 1 ∫ R 1 + x 4 1 + x 2 d x and by calculating residues we have that the starting series equals 8 π = 1 . 1 1 0 7 2 … .