4

The theorem states

If $f$ is bounded on $[a,b]$, then $f$ is integrable on $[a,b]$ $\iff$ for all $\epsilon > 0$ there is a partition $P$ of $[a,b]$ such that

$$U(f,P) - L(f,P) < \epsilon$$

The proof is on page 220. I believe I have the 2nd ed of the book.

One of the steps really confused me in which he writes

"$\inf \{ U(f,P')\} - \sup\{ L(f,P')\} < \epsilon$, since this is true for all $\epsilon > 0$, it follows that $\inf \{ U(f,P')\} = \sup\{ L(f,P')\}$

I do not understand how this follows, how did this become an equality?

Lemon
  • 12,664

2 Answers2

8

This is a cute strategy in analysis: to prove that $x = y$, you instead prove that $|x - y| < \epsilon$ for all $\epsilon > 0$. Because if $x \neq y$, then taking $\epsilon = |x - y|$ would falsify the inequality. In your case, $x = \inf U(f,P')$ and $y = \sup L(f,P')$.

In your question, the absolute values are omitted because $x > y$ already; this is because we always have $U(f,P') \geq L(f,P')$ for the same partition, which is the intuition behind the use of "upper" and "lower" in the names of these quantities.

kahen
  • 15,760
Ryan Reich
  • 6,306
  • 1
    But he didn't use absolute values at all – Lemon Mar 10 '13 at 20:32
  • 2
    Absolute values aren't needed because the difference in question is non-negative. All the numbers $U(f,P)$ (as $P$ varies) are $\geq$ all the numbers $L(f,P)$, so the infimum of the former is at least as large as the supremum of the latter. – Andreas Blass Mar 10 '13 at 20:34
  • Can expand on the $\epsilon = |x - y| $ part a bit? I am still have trouble seeing the conclusion – Lemon Mar 10 '13 at 21:06
  • 1
    @sizz: Suppose you know that $|x-y| \lt \epsilon$ for all $\epsilon > 0$. If $x \ne y$, you can take $\epsilon = |x-y|$ (because $x-y$ is not $0$), and you get $|x-y| < |x-y|$, a contradiction which came from assuming $x \ne y$. – Javier Mar 10 '13 at 21:45
  • Oh I see, he omitted a lot of steps here... – Lemon Mar 10 '13 at 22:21
  • It's better than what you wrote, Ryan. For any two partitions, $P$ and $Q$ you have that $U(f,P) \geq L(f,Q)$. Because there is some common refinement $R$ of both $P$ and $Q$ and hence we must have that $U(f,P) \geq U(f,R) \geq L(f,R) \geq L(f,Q)$. – kahen Mar 10 '13 at 22:23
  • More generally, if $a < b+ \epsilon$ for all $\epsilon > 0$, then $a \leq b$. This is used all the time in analysis. – Jesse Madnick Mar 10 '13 at 22:29
  • So basically we have $0 < |x - y| < \epsilon $ for all $\epsilon$. Then we choose $\epsilon = |x - y|$ to get a contradiction to the fact that $x \neq y$? Now I actually don't understand the point of the theorem. – Lemon Mar 12 '13 at 05:06
  • In the theorem, $x$ and $y$ depend on $\epsilon$ so it doesn't follow that $x = y$ (after getting $\epsilon$, you have to find an appropriate partition); the theorem is basically saying that the limit of Riemann sums exists. However, in the step that you asked about, you've got some partition $P'$ already and the claim is that some quantities depending on its upper and lower sums are equal; this is proved by showing that their difference is less than every positive number, hence zero. (Since otherwise it would be positive, so not less than itself.) – Ryan Reich Mar 12 '13 at 13:25
1

This is called a Darboux integral and to show that $\inf \{ U(f,P')\} \geq \sup\{ L(f,P')\}$ you first have to show that for a refinement $P'$ of a partition $P$ you always have $$U(f,P) \geq U(f,P') \geq L(f,P') \geq L(f,P).$$ Then to show that all the upper integrals are bigger than all the lower integrals you can use the fact that for any two partitions $P_1$ and $P_2$ there is always a partition $P'$ that is a refinement of both of them, $P' = P_1 \cup P_2$ for example.

Now assume we have $0 \leq \inf \{ U(f,P')\} - \sup\{ L(f,P')\} < \epsilon$ for every $\epsilon > 0$ as assumed in the question. That doesn't leave room for the difference to be anything other than zero since $\epsilon$ can be chosen arbitrarily small.

Gibarian
  • 709