Splitting up an interval of integration

"Don't panic!"
Messages
600
Reaction score
8
How does one prove the following relation?

\int_{a}^{b}f(x)dx= \int_{a}^{c}f(x)dx + \int_{c}^{b}f(x)dx

Initially, I attempted to do this by writing the definite integral as the limit of a Riemann sum, i.e.

\int_{a}^{b}f(x)dx= \lim_{n\rightarrow\infty}\frac{(b-a)}{n}\sum_{k=1}^{n}f(x^{\ast}_{k})

Where x^{\ast}_{k}\in\left[x_{k}, x_{k+1} \right].

Then,

\int_{a}^{c}f(x)dx + \int_{c}^{b}f(x)dx= \\ = \lim_{n\rightarrow\infty}\frac{(c-a)}{n}\sum_{k=1}^{n}f(x^{\ast}_{k}) +\lim_{n\rightarrow\infty}\frac{(b-c)}{n}\sum_{k=1}^{n}f(x^{\ast}_{k}) \\ = \lim_{n\rightarrow\infty}\frac{(c-a)+ (b-c)}{n}\sum_{k=1}^{n}f(x^{\ast}_{k}) \\ = \lim_{n\rightarrow\infty}\frac{(b-a)}{n}\sum_{k=1}^{n}f(x^{\ast}_{k} = \int_{a}^{b}f(x)dx

But I have a feeling that this isn't correct?!
 
Physics news on Phys.org
Your feeling is correct!
The two Riemann sums are not the same because they're taken in different intervals and so, in general, the terms aren't equal and so you can't factor them!
Consider two functions h(x) and k(x) defined as:
<br /> h(x)=\left\{ \begin{array}{cc} f(x) \ \ \ \ x \in (a,c) \\ 0 \ \ \ \ otherwise \end{array} \right.<br />
and
<br /> k(x)=\left\{ \begin{array}{cc} f(x) \ \ \ \ x \in [c,b) \\ 0 \ \ \ \ otherwise \end{array} \right.<br />.
Its obvious that f(x)=h(x)+k(x) when x \in (a,b). Use this for the proof!
 
Last edited:
Ah, ok. thanks for your help.

Would this be correct then?

\int_{a}^{b}f(x)dx = \int_{a}^{b}\left(h(x)+k(x)\right)dx = \\ = \int_{a}^{b}h(x)dx +\int_{a}^{b}k(x)dx = \int_{a}^{c}h(x)dx +\int_{c}^{b}k(x)dx = \int_{a}^{c}f(x)dx +\int_{c}^{b}f(x)dx

As h(x) is zero outside the interval (a,c) and so will provide no further contributions after this point in the integral, and similarly for k(x).
 
Yes, that's it!
 
Last edited:
Ok, cool. Thanks very much for your help with this, much appreciated!
 
Back
Top