0

I know how to integrate, but I can't understand how the integral of this fourier serie is calculated. my problem is with integral of the sigma.

fourier:

enter image description here

integral:

enter image description here

Can anyone say me how this integral is calculated?

hpn
  • 107

1 Answers1

1

Since $|\cos((2n-1)x)|\le 1$, the series is uniformly convergent and so you can exchange the order of integration and summation.

\begin{eqnarray} \int_0^t (\frac{\pi}{2}-\frac{4}{\pi} \sum_{n=1}^\infty \frac{\cos((2n-1)x)}{(2n-1)^2} )dx &=& \int_0^t\frac{\pi}{2} dx-\int_0^t \frac{4}{\pi} \sum_{n=1}^\infty \frac{\cos((2n-1)x)}{(2n-1)^2} dx \\ &=& \frac{\pi}{2}t - \frac{4}{\pi} \sum_{n=1}^\infty \int_0^t \frac{\cos((2n-1)x)}{(2n-1)^2} dx \\ &=& \frac{\pi}{2}t - \frac{4}{\pi} \sum_{n=1}^\infty \frac{\sin((2n-1)t)}{(2n-1)^3} \end{eqnarray}

copper.hat
  • 172,524
  • thanks. my problem is with the 3rd line. why (2n-1)^2 became (2n-1)^3 ? according to the integration rules I expect to see [(2n-1)^3]/3 in the integral – hpn Apr 21 '13 at 15:58
  • $\int_0^t \cos( \alpha x) dx = \frac{1}{\alpha} \sin (\alpha t)$. – copper.hat Apr 21 '13 at 16:03