5

Prove that $$\sum_{n=0}^\infty \frac{(-1)^n}{3n+1} = \frac{\pi}{3\sqrt{3}}+\frac{\log 2}{3}$$

I tried to look at $$ f_n(x) = \sum_{n=0}^\infty \frac{(-1)^n}{3n+1} x^n $$

And maybe taking it's derivative but it didn't work out well.

Any ideas?

AlonAlon
  • 2,616

2 Answers2

7

Hint

$$\sum_{n=0}^\infty\frac{(-1)^n}{3n+1}=\lim_{N\to\infty}\sum_{n=0}^N(-1)^n\int_0^1t^{3n}dt=\lim_{N\to\infty}\int_0^1\sum_{n=0}^N(-t^3)^ndt=\lim_{N\to\infty}\int_0^1\frac{1-(-t^3)^{N+1}}{1+t^3}dt$$

Now you need to prove two things:

  • $$\int_0^1\frac{dt}{1+t^3}=\frac{\pi}{3\sqrt{3}}+\frac{\log 2}{3}$$
  • $$\lim_{N\to\infty}\int_0^1\frac{(-t^3)^{N+1}}{1+t^3}dt=0$$
  • Thank you. Can you explain the second equality please? – AlonAlon Dec 13 '14 at 17:11
  • 1
    Which equality do you mean? Interchanging $\sum$ and $\int$? It's possible with finite sum. –  Dec 13 '14 at 17:13
  • 1
    @AlonAlon Since $0<t<1$, then as $N\to\infty$ the integrand goes to $0$ – Anastasiya-Romanova 秀 Dec 13 '14 at 17:14
  • You're welcome @AlonAlon –  Dec 13 '14 at 17:14
  • Is it legal: $\lim_{N\to\infty} \int_0^1 (-t^3)^{N+1} = \int_0^1 0 = 0$? (Meaning, talking the limit before evaluating the integral) – AlonAlon Dec 13 '14 at 17:28
  • 2
    To prove the second point use that $$\left|\int_0^1\frac{(-t^3)^{N+1}}{1+t^3}dt\right|\le\int_0^1 t^{3N+3}dt=\frac1{3N+4}$$ and then squeeze. –  Dec 13 '14 at 17:34
  • Thanks, Why doing it my way is wrong by the way? – AlonAlon Dec 13 '14 at 17:37
  • 1
    We can't interchange in general $\lim$ and $\int$ without theorems: Dominated convergence theorem, limit monotone theorem, convergence uniform theorem,... Or prove the result by hand as I did. –  Dec 13 '14 at 17:42
  • This is a very nice approach especially I like the second part where the remainder is shown as tending to $0$. This is the way such elementary problems should be be done (i.e. without any appeal to uniform convergence, dominated convergence etc). +1 – Paramanand Singh Dec 14 '14 at 04:22
  • But Fubini and Tonelli's theorems justifies it for all sums/integrals less than infinity. These are less than infinity because they converge. We can directly apply that. – Amad27 Dec 26 '14 at 08:56
5

For a geometric series.

$$\sum_{n=0}^{\infty} (-1)^n(x^n) = \frac{1}{1+x}$$

Substitute $x \rightarrow x^3$

$$\sum_{n=0}^{\infty} (-1)^n (x^{3n}) = \frac{1}{1+x^3}$$

Integrate the sides.

$$\sum_{n=0}^{\infty} (-1)^n\frac{x^{3n + 1}}{3n + 1} = \int \frac{dx}{1+x^3}$$

The hard part is the integration. Then let $x=1$

Amad27
  • 10,465