1

Problem: Let f be a real-valued continuous periodic function with period T. Prove that $$\int_{a}^{a+T}f(x)dx = \int_{0}^{T}f(x)dx$$

Any good hints? My following strategy is to try to show that the Riemann integrals are equal by showing that the two partitions for each integrals have equal length $\frac{T}{n}$, and the value $f(x_{k})$ in one partition also exist in another partition for the other integral.

user29163
  • 665

2 Answers2

10

Define $g(a) = \int_a^{a+T} f(x) \, dx$. Then $g$ is differentiable and $$g'(a) = f(a+T) - f(a) = 0,$$ so $g$ is constant.

J. J.
  • 9,432
1

You can also use a variable change, but you have to be a bit careful about clipping, because $a$ is not a priori a multiple of $T$ :

First, let come back to an integral near $[0,T]$ :let $N=\lfloor \frac{a}{T}\rfloor$, such that $0 \leq a - NT < T$, you can do the variable change $u = x - NT$, $f$ being periodic then $f(u)=f(x)$ and $$\int_a^{a+T} f(x)dx = \int_{a-NT}^{a-NT+T} f(u)du$$

Now, you know that $0 \leq a-NT \leq T \leq a-NT+T$ . So, $a-NT+T$ is greater than $T$, thus you need to cut the "excedent", shift it again, and restick it to your main integral : $$\int_{a-NT}^{a-NT+T} f(x)dx = \int_{a-NT}^{T} f(x)dx + \int_{T}^{a-NT+T} f(x)dx$$

Do a variable change of $v=x-T$ again in the second integral, it's still invariant by $f$ being just a translation by a multiple of the period, and restick the two parts :

$$\int_{a-NT}^{T} f(x)dx + \int_{T}^{a-NT+T} f(x)dx=\int_{a-NT}^{T} f(x)dx + \int_{0}^{a-NT} f(v)dv = \int_{0}^{T}f(x)dx$$

yago
  • 2,120
  • Perfect, thank you. I need to work more with technical arguments like this rather than conceptual ones. – user29163 May 07 '14 at 11:10