Measure Theory and Lebesgue Integration - MIT Media Lab

28
Measure Theory and Lebesgue Integration Joshua H. Lifton Originally published 31 March 1999 Revised 5 September 2004

Transcript of Measure Theory and Lebesgue Integration - MIT Media Lab

Page 1: Measure Theory and Lebesgue Integration - MIT Media Lab

Measure Theory and Lebesgue Integration

Joshua H. Lifton

Originally published 31 March 1999Revised 5 September 2004

Page 2: Measure Theory and Lebesgue Integration - MIT Media Lab

Abstract

This paper originally came out of my 1999 Swarthmore College Math-ematics Senior Conference. I’ve made minor touch-ups to make it morepresentable.

This paper begins where the Swarthmore College Mathematics and Statis-tics course Math 47: Introduction to Real Analysis left off. Namely, basicmeasure theory is covered with an eye toward exploring the Lebesgue inte-gral and comparing it to the Riemann integral. Knowledge of the notationand techniques used in an introductory analysis course is assumed through-out.

Page 3: Measure Theory and Lebesgue Integration - MIT Media Lab

Contents

Acknowledgments ii

1 How to Count Rectangles: A Review of Integration 11.1 Riemann Revisited . . . . . . . . . . . . . . . . . . . . . . . . 11.2 Shortcomings of Riemann Integration . . . . . . . . . . . . . 11.3 A New Way to Count Rectangles: Lebesgue Integration . . . 2

2 Measure Theory 42.1 Measure . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 42.2 Outer and Inner Measure . . . . . . . . . . . . . . . . . . . . 52.3 Shortcomings of Outer and Inner Measure . . . . . . . . . . . 7

3 Measurable Sets & Measurable Functions 83.1 Measurable Sets . . . . . . . . . . . . . . . . . . . . . . . . . 83.2 Measurable Functions . . . . . . . . . . . . . . . . . . . . . . 93.3 Simple Functions . . . . . . . . . . . . . . . . . . . . . . . . . 12

4 The Lebesgue Integral 134.1 Integrating Bounded Measurable Functions . . . . . . . . . . 134.2 Criteria for Integrability . . . . . . . . . . . . . . . . . . . . . 144.3 Properties of the Lebesgue Integral . . . . . . . . . . . . . . . 164.4 Integrating Unbounded Measurable Functions . . . . . . . . . 17

5 Comparison of Lebesgue and Riemann Integrals 185.1 Summary of Events . . . . . . . . . . . . . . . . . . . . . . . . 185.2 Convergence of the Lebesgue Integral . . . . . . . . . . . . . . 185.3 Convergence of the Riemann Integral . . . . . . . . . . . . . . 215.4 A Final Comparison . . . . . . . . . . . . . . . . . . . . . . . 22

References 24

i

Page 4: Measure Theory and Lebesgue Integration - MIT Media Lab

Acknowledgments

Many thanks to all members of the Swarthmore College Mathematics andStatistics Department for their encouragement and tolerance of my mathe-matics education.

ii

Page 5: Measure Theory and Lebesgue Integration - MIT Media Lab

Chapter 1

How to Count Rectangles: AReview of Integration

1.1 Riemann Revisited

The development of the integral in most introductory analysis courses iscentered almost exclusively on the Riemann integral. This relatively intu-itive approach begins by taking a partition P = {x0, . . . , xn} of the domainof the real-valued function f in question. Given P , the Riemann sum of fis simply

n∑i=1

(xi − xi−1) · f(ci) where xi−1 < ci < xi.

The integral of f , if it exists, is the limit of the Riemann sum as n →∞.

1.2 Shortcomings of Riemann Integration

Although the Riemann integral suffices in most daily situations, it fails tomeet our needs in several important ways. First, the class of Riemannintegrable functions is relatively small.

Second and related to the first, the Riemann integral does not havesatisfactory limit properties. That is, given a sequence of Riemann integrablefunctions {fn} with a limit function f = lim

n→∞fn, it does not necessarily

follow that the limit function f is Riemann integrable.Third, all Lp spaces except for L∞ fail to be complete under the Riemann

integral.Examples 1.1 and 1.2 illustrate some of these problems.

1

Page 6: Measure Theory and Lebesgue Integration - MIT Media Lab

Example 1.1 Consider the sequence of functions {fn} over the intervalE = [0, 1].

fn(x) =

{2n if 1

2n ≤ x ≤ 12n−1

0 otherwise

The limit function of this sequence is simply f = 0. In this example, eachfunction in the sequence is integrable as is the limit function. However, thelimit of the sequence of integrals is not equal to the integral of the limit ofthe sequence. That is,

limn→∞

∫ 1

0fn(x) dx = 1 6= 0 =

∫ 1

0limn→∞

fn(x) dx.

We will return to this function as an example of how the Lebesgue integralfails as well.

Example 1.2 Consider the sequence of functions {dn} over the intervalE = [0, 1].

dn(x) =

{1 if x ∈ {rn}0 otherwise

where {rn} is the set of the first n elements of some decided upon enumera-tion of the rational numbers. Each function dn is Riemann integrable sinceit is discontinuous only at n points. The limit function D = lim

n→∞dn is given

by

D(x) =

{1 if x is rational0 if x is irrational

This function, known as the Dirichlet function, is discontinuous everywhereand therefore not Riemann integrable. Another way of showing that D(x) isnot Riemann integrable is to take upper and lower sums, which result in 1and 0, respectively.

1.3 A New Way to Count Rectangles: LebesgueIntegration

An equally intuitive, but long in coming method of integration, was pre-sented by Lebesgue in 1902. Rather than partitioning the domain of thefunction, as in the Riemann integral, Lebesgue chose to partition the range.Thus, for each interval in the partition, rather than asking for the value of

Page 7: Measure Theory and Lebesgue Integration - MIT Media Lab

the function between the end points of the interval in the domain, he askedhow much of the domain is mapped by the function to some value betweentwo end points in the range. See Figure 1.1.

domain

range

domain

range

Figure 1.1: Two ways to count rectangles – partitioning the range as opposedto partitioning the domain of a function.

Partitioning the range of a function and counting the resultant rectanglesbecomes tricky since we must employ some way of determining (or measur-ing) how much of the domain is sent to a particular portion of a partitionof the range. Measure theory addresses just this problem.

As it turns out, the Lebesgue integral solves many of the problems leftby the Riemann integral. With this in mind, we now turn to measure theory.

Page 8: Measure Theory and Lebesgue Integration - MIT Media Lab

Chapter 2

Measure Theory

Measure theory is a rich subject in and of itself. However, we present it hereexpressly for the purpose proposed at the end of §1.3; to define the “length”of an arbitrary set so as to formalize the idea of the Lebesgue integral. Assuch, only the very basics of measure theory are presented here and manyof the rote proofs are left to the reader.

2.1 Measure

Given an interval E = [a, b] and a set S of subsets of E which is closed undercountable unions, we define the following.

Definition 2.1 A set function on S is a function which assigns to eachset A ∈ S a real number.

Definition 2.2 A set function µ on S is called a measure if the followingproperties hold.

• Semi-Positive-Definite: 0 ≤ µ(A) ≤ b− a for all A ∈ S.

• Trivial Case: µ(∅) = 0.

• Monotonicity: µ(A) ≤ µ(B) for all A,B ∈ S,A ⊂ B

• Countable Additivity: if A =⋃∞

n=1 An, then µ(A) =∑∞

n=1 µ(An),where An ∈ S for n = 1, 2, . . . and An

⋂Am = ∅ for n 6= m.

As can be seen from the definition, the concept of measure is a generalone indeed.

4

Page 9: Measure Theory and Lebesgue Integration - MIT Media Lab

Example 2.3 Examples of measure abound. To begin at the beginning, con-sider the trivial measure: µ(A) = 0 for all A ∈ S.

Example 2.4 Let {x1, . . . , xn} ⊂ E be a finite set of points and E = [a, b].Let a < xi < xj < b for all i < j. Consider the set A = E/{x1, . . . , xn}, theinterval E without the points x1, . . . , xn. Let our measure be such that themeasure of any interval with endpoints x < y is y − x. Then,

m(A) = m([a, x1) ∪ (x1, x2) ∪ . . . ∪ (xn−1, xn) ∪ (xn, b])= m([a, x1)) + m((x1, x2)) + . . . + m((xn−1, xn)) + m((xn, b])= (x1 − a) + (x2 − x1) + . . . + (xn − xn−1) + (b− xn)= b− a

= m(E).

Notice that the only complication which may arise in this example is how wedefine our set of subsets, S. We will explore this further in §2.3.

2.2 Outer and Inner Measure

To keep us grounded in reality, we would like to use a measure which putsour intuitive notion of length at ease. Thus we define the following.

Definition 2.5 The outer measure of any interval I on the real numberline with endpoints a < b is b− a and is denoted as m∗(I).

We would like to generalize this definition of outer measure to all sets ofreal numbers, not just intervals. To do this, we use the following theorem,upon which the remainder of our work depends heavily.

Theorem 2.6 Every non-empty open set G ⊂ R can be uniquely expressedas a finite or countably infinite union of pairwise disjoint open intervals.Proof Idea: Let x ∈ G and consider the open interval Ix = (ax, bx) con-structed from

ax = glb{y | (y, x) ⊂ G}

andbx = lub{z | (x, z) ⊂ G}.

Ix is called the component of x in G. G = ∪x∈GIx is exactly the decom-position of G we are looking for. It is straight-forward to show that, given

Page 10: Measure Theory and Lebesgue Integration - MIT Media Lab

x1, x2 ∈ G, either Ix1 and Ix2 are disjoint or they are equal. The countabil-ity of this collection of open intervals follows easily from their disjointness;simply pick one rational number from each interval and use it to label thatinterval. Since the intervals are disjoint, no two will have the same labeland since the rationals are countable, so will be the intervals which they la-bel. Uniqueness of the decomposition is, as usual, a straight-forward proofby contradiction.

With this theorem, it is possible to extend the definition of outer measureto open sets of real numbers.

Definition 2.7 The outer measure m∗(G) of an open set G ⊂ E is givenby

∑i m

∗(Ii) where the Ii form the unique decomposition of G into a finite ora countably infinite union of pairwise disjoint open intervals. See Theorem2.6.

From this directly follows a definition of outer measure for any set.

Definition 2.8 The outer measure m∗(A) of any set A ⊂ R is given byglb{m∗(G)|A ⊂ G and G open in E}.

Now that outer measure is well-defined for arbitrary subsets of E, weturn to a closely related measure, inner measure.

Definition 2.9 The inner measure of any set A ⊂ E, denoted m∗(A),is defined as m∗(E) − m∗(E/A), where E/A is the compliment of A withrespect to E.

Intuitively, the inner measure is in some ways “measuring” the same thingas the outer measure, only in a more roundabout way. We cannot take itfor granted, however, that the inner and outer measures of any given set arethe same, although we are very interested in the cases when they are, aswe shall soon see. For now, though, let us state without proof some simpleobservations regarding inner and outer measure.

Lemma 2.10 The measures m∗ and m∗ both exhibit monotonicity. Thatis, given A ⊂ B ⊂ E, it follows that,

• m∗(A) ≤ m∗(B)

• m∗(A) ≤ m∗(B)

Page 11: Measure Theory and Lebesgue Integration - MIT Media Lab

Lemma 2.11 Given a set A ⊂ E, it follows that m∗(A) ≤ m∗(A).

Lemma 2.12 The outer measure m∗ exhibits subadditivity. That is, when-ever {An |n = 1, 2, . . .} is a set of subsets of E, then

m∗(∞⋃

n=1

An) ≤∞∑

n=1

m∗(An).

2.3 Shortcomings of Outer and Inner Measure

Now that we have some concrete measures to work with, we must exam-ine whether they satisfy our needs. The first shortcoming we discover ispresented below.

Theorem 2.13 The outer measure, m∗, is not countably additive on theset of all subsets of E.Proof Idea: By construction. It is possible to construct pairwise disjointsets An such that E = ∪∞n=1An and m∗(E) 6=

∑∞n=1 m∗(An).

This is rather disappointing. It would be nice to have a measure whichis defined on all subsets of E and still satisfies our intuition enough to use itas the basis for the development of the Lebesgue integral. However, it turnsout that the set of subsets of E on which the outer measure m∗ is countablyadditive is large enough to make it worth our while to continue using theouter measure. We discuss this point in Chapter 3.

Page 12: Measure Theory and Lebesgue Integration - MIT Media Lab

Chapter 3

Measurable Sets &Measurable Functions

3.1 Measurable Sets

Let’s look at a certain subset of all the sets on which inner and outer measureare well-defined – the set of Lebesgue measurable sets.

Definition 3.1 A set A ⊂ E is Lebesgue measurable, or measurable,if m∗(A) = m∗(A), in which case the measure of A is denoted simply bym(A) and is given by m(A) = m∗(A) = m∗(A).

A straight-forward extension of this definition applies to unbounded sets,

Definition 3.2 The measure for an unbounded set A is defined simply as,

m(A) = limn→∞

m(A⋂

[−n, n]).

Lemma 3.3 Measurable sets have the following properties.

• A set A ⊂ E is measurable if and only if

m∗(A) + m∗(E/A) = b− a,

where a and b are the endpoints of the interval E.

• A set A ⊂ E is measurable if and only if its complement E/A ismeasurable.

Proof: The lemma follows directly from the definition of measurable (3.1).

8

Page 13: Measure Theory and Lebesgue Integration - MIT Media Lab

Example 3.4 Referring back to Example 2.4, we see that a set consistingof an interval which is missing a finite number of points has the same outermeasure as the interval itself. That is,

m∗(E/{xi, . . . , xn}) = m∗(E).

Thus, by Lemma 3.3, E/{xi, . . . , xn} is measurable if and only ifm∗({xi, . . . , xn}) = 0.

The following theorem takes us back to where we left off at the end of§2.3.

Theorem 3.5 The outer measure, m∗, is countably additive on the set ofall measurable subsets of E. That is, whenever {An |n = 1, 2, . . .} is a setof measurable subsets of E, then

m∗(∞⋃

n=1

An) =∞∑

n=1

m∗(An)

Proof Idea: Although the proof of this theorem is not difficult, it is some-what lengthy in its technical detail and is therefore left for the enrichmentof the reader.

So, knowing that we intend to define the Lebesgue integral in terms of theouter measure, it seems that the size of the class of “Lebesgue integrable”functions may somehow be limited by the fact that, as far as we know, theouter measure is only defined on measurable sets. We will return to thisidea in Chapter 4.

3.2 Measurable Functions

Definition 3.6 Let A be a bounded measurable subset of R and f : A → Ra function. Then f is said to be measurable on A if {x ∈ A | f(x) > r}is measurable (as a set) for every real number r.

There are many equivalent definitions of measurable which follow similarlines. In this definition we see the beginnings of being able to “count therectangles” created by partitioning the range of a function rather than thedomain. See Figure 3.1.

Page 14: Measure Theory and Lebesgue Integration - MIT Media Lab

domain

range

r

Figure 3.1: The function f is measurable if the shaded region of the domainis measurable as a set for all choices of the real number r.

Example 3.7 Consider again the sequence of functions over E = [0, 1]defined in Example 1.1,

fn(x) =

{2n if 1

2n ≤ x ≤ 12n−1

0 otherwise

We want to show that each fn is a measurable function. There are threecases to consider, corresponding to three possible choices for the real numberr. They are,

• r ≥ 2n : The set {x ∈ E | fn(x) > r} is the null set and is thereforemeasurable.

• 0 ≤ r < 2n : The set {x ∈ E | fn(x) > r} is the closed interval[ 12n , 1

2n−1 ] and is therefore measurable (with a measure of 12n ).

• r < 0 : The set {x ∈ E | fn(x) > r} is the entire interval E and istherefore measurable.

Thus, each fn is a measurable function.

Page 15: Measure Theory and Lebesgue Integration - MIT Media Lab

Example 3.8 Consider again the sequence of functions over E = [0, 1]defined in Example 1.2,

dn(x) =

{1 if x ∈ {rn}0 otherwise

We want to show that each dn is a measurable function. There are threecases to consider, corresponding to three possible choices for the real numberr. They are,

• r ≥ 1 : The set {x ∈ E | dn(x) > r} is the null set and is thereforemeasurable.

• 0 ≤ r < 1 : The set {x ∈ E | dn(x) > r} is the set of the first n rationalnumbers (in a decided upon enumeration) and is therefore measurable(with a measure of 0).

• r < 0 : The set {x ∈ E | dn(x) > r} is the entire interval E and istherefore measurable.

Thus, each dn is a measurable function.

The above examples naturally bring up the question of whether or notthe limit function of a sequence of measurable functions is itself a measurablefunction. Clearly, the limit function in Example 3.7 is measurable since itis the trivial function. But what of the Dirichlet function in Example 3.8?The following lemma answers this question.

Lemma 3.9 If each function in a sequence {fn} is measurable on a set Aand if f is the pointwise limit function of {fn}, then f is measurable on Aas well.Proof: The proof of the lemma requires a close examination of the defini-tions of limit and measurable, as follows. Let x ∈ A and r ∈ R such thatf(x) > r. Let p be a natural number such that f(x) > r + 1/p. Then, bydefinition of limit, there exists a natural number N such that for all n > N ,fn(x) > r + 1/p. Thus,

f(x) = limn→∞

fn(x) > r + 1/p > r.

This implies that

{x ∈ A | f(x) > r} =∞⋃

p=1

∞⋃N=1

∞⋂n=N+1

{x ∈ A | fn(x) > r + 1/p}.

Since this set is measurable and r was arbitrary, it follows that f is measur-able.

Page 16: Measure Theory and Lebesgue Integration - MIT Media Lab

3.3 Simple Functions

Similar to the way which step functions are put to use in the development theRiemann integral, our development of the Lebesgue integral will make useof a pedestrian class of measurable functions, aptly named simple functions.

Definition 3.10 A simple function f : A → R is a measurable functionwhich takes on finitely many values.

We’ve already seen simple functions in Examples 1.1 and 1.2. The utility ofsimple functions becomes apparent in the following theorem.

Theorem 3.11 A function f : A → R is measurable if and only if it is thepointwise limit of a sequence of simple functions.Proof Idea: (⇒) The forward direction of the proof involves constructinga sequence of simple functions whose limit is the given measurable functionf . This construction is omitted for brevity.(⇐) The reverse direction is given by Lemma 3.9.

Example 3.12 Example 3.8 combined with Theorem 3.11 (or even justLemma 3.9) tells us that the Dirichlet function is indeed measurable.

Page 17: Measure Theory and Lebesgue Integration - MIT Media Lab

Chapter 4

The Lebesgue Integral

4.1 Integrating Bounded Measurable Functions

We introduce the Lebesgue integral by first restricting our attention tobounded measurable functions. The approach here is almost identical tothat used in constructing the Riemann integral except that here we parti-tion the range rather than the domain of the function.

Let f : A → R be a bounded measurable function on a bounded mea-surable subset A of R. Let l = glb{f(x) |x ∈ A} and u > lub{f(x) |x ∈ A}where u is arbitrary insofar as it is greater than the least upper bound of fon A.

As with the Riemann integral, we’ll define the Lebesgue integral of fover an interval A as the limit of some “Lebesgue sum”.

Definition 4.1 The Lebesgue sum of f with respect to a partition P ={y0, . . . , yn} of the interval [l, u] is given as

L(f, P ) =n∑

i=1

y∗i m({x ∈ A | yi−1 ≤ f(x) < yi})

where y∗i ∈ [yi−1, yi] for i = 1, . . . , n and f is a bounded measurable functionover a bounded measurable set A ⊂ R.

This is the new way to count rectangles; the y∗i is the height of the rectangleand the m({x ∈ A | yi−1 ≤ f(x) < yi}) serves as the base of the rectangle.The definition of the actual Lebesgue integral is virtually identical to thatof the Riemann integral.

13

Page 18: Measure Theory and Lebesgue Integration - MIT Media Lab

Definition 4.2 A bounded measurable function f : A → R is Lebesgueintegrable on A if there is a number L ∈ R such that, given ε > 0, thereexists a δ > 0 such that |L(f, P ) − L| < ε whenever ||P || < δ. L is knownas the Lebesgue integral of f on A and is denoted by

∫A f dm.

4.2 Criteria for Integrability

As with the definition of the Riemann integral, the definition of the Lebesgueintegral does not illuminate us as to whether a given function is Lebesgueintegrable and, if it is, what the Lebesgue integral is. The following theorem,presented without proof, fills this gap.

Theorem 4.3 A bounded measurable function f is Lebesgue integrable ona bounded measurable set A if and only if, given ε > 0, there exist simplefunctions f and f such that

f ≤ f ≤ f

and ∫A

f dm−∫

Af dm < ε.

Corollary 4.4 If f is a bounded measurable function on a bounded mea-surable set A, then f is Lebesgue integrable on A. Furthermore,∫

Af dm =lub

{∫A

f dm | f is simple and f ≤ f

}=glb

{∫A

f dm | f is simple and f ≥ f

}.

Proof Idea: This corollary is a result of the proof of Theorem 4.3.

Example 4.5 Let’s find the Lebesgue integral of the Dirichlet function (seeExample 1.2). We know by Example 3.12 that the Dirichlet function ismeasurable. Thus, by Corollary 4.4, it is Lebesgue integrable. Specifically,we claim that

∫[0,1] D dm = 0. Looking back to the definition of the Lebesgue

integral (4.2), we must show that, given ε > 0, there exists a δ > 0 such that|L(D,P )| < ε whenever the width of the partition P is less than δ. Referringto Definition 4.1 for |L(D,P )|, this means that we must find δ such that

|L(D,P )| =n∑

i=1

y∗i m({x ∈ [0, 1] | yi−1 ≤ D(x) < yi}) < ε,

Page 19: Measure Theory and Lebesgue Integration - MIT Media Lab

where P = {y0 = 0, . . . , yn = 2} is a partition of the interval [0, 2] in therange, y∗i ∈ [yi−1, yi] for i = 1, . . . , n, and the absolute value signs have beenomitted since all quantities here are inherently positive. We accomplish thisby picking δ = ε/3. Then

|L(D,P )| =n∑

i=1

y∗i m({x ∈ [0, 1] | yi−1 ≤ D(x) < yi})

=y∗1 m({x ∈ [0, 1] | 0 ≤ D(x) < ε/3})+ y∗j m({x ∈ [0, 1] | yj−1 ≤ D(x) < yj}),

where yj−1 ≤ 1 < yj. All other terms in the sum vanish because D(x) onlytakes on two values, 0 and 1. The first term achieves its maximum wheny∗1 = ε/3 and when m({x ∈ [0, 1] | 0 ≤ D(x) < ε/3} = 1. Thus,

|L(D,P )| =n∑

i=1

y∗i m({x ∈ [0, 1] | yi−1 ≤ D(x) < yi})

≤[ε/3] + [y∗j m({x ∈ [0, 1] | yj−1 ≤ D(x) < yj})].

Also, we know that y∗j < 1 + ε/3. Finding an upper bound on

m({x ∈ [0, 1] | yj−1 ≤ D(x) < yj})

is equivalent to asking for an upper bound on the measure of the rationalnumbers in the interval [0, 1]. Since any non-empty open interval centeredon a rational number contains other rational numbers, an upper bound onthe measure of the rational numbers is simply the sum of the measures ofall the intervals surrounding the rationals. That is, given an enumerationof the rationals, let the nth rational number be contained in an interval ofmeasure ε/3n+1. In this way,

m({x ∈ [0, 1] | yj−1 ≤ D(x) < yj}) <∞∑

n=1

ε

3n+1=

ε

6,

and we finally get that

|L(D,P )| ≤ε/3 + y∗j m({x ∈ [0, 1] | yj−1 ≤ D(x) < yj})<ε/3 + (1 + ε/3)(ε/6)

=ε/3 + ε/3 + ε2/18<ε,

Page 20: Measure Theory and Lebesgue Integration - MIT Media Lab

where we have assumed without loss of generality that ε < 1. This completesthe proof that

∫[0,1] D dm = 0. Combined with Lemma 3.3, we also know

that the irrationals must have measure 1 on the interval [0, 1]. This resultmakes intuitive sense since the rationals are countably infinite whereas theirrationals are uncountably infinite.

4.3 Properties of the Lebesgue Integral

It is comforting to know that the Lebesgue integral shares many propertieswith the Riemann integral.

Theorem 4.6 Let f and g be bounded measurable functions on a boundedmeasurable set A. Then,

• Monotonicity: If f ≤ g, then∫A f dm ≤

∫A g dm.

• Linearity: ∫A(f + g) dm =

∫A

f dm +∫

Ag dm

and ∫A

cf dm = c

∫A

f dm for c ∈ R.

• For any numbers l, u ∈ R such that l ≤ f ≤ u, it follows thatl ·m(A) ≤

∫A f dm ≤ u ·m(A).

• |∫A f dm| ≤

∫A |f | dm.

• If A and B are disjoint bounded measurable sets and f : A ∪B → Ris a bounded measurable function, then∫

A∪Bf dm =

∫A

f dm +∫

Bf dm.

• Countable Additivity: If A = ∪∞i=1Ai where the Ai are pairwise disjointbounded measurable sets, then∫

Af dm =

∞∑i=1

∫Ai

f dm.

Further comparison of the Riemann and the Lebesgue integral is madein Chapter 5.

Page 21: Measure Theory and Lebesgue Integration - MIT Media Lab

4.4 Integrating Unbounded Measurable Functions

Thus far, we have restricted ourselves to integrating bounded measurablefunctions. The generalization of the Lebesgue integral to unbounded mea-surable functions is straight-forward but will not be given in full detail here.In general, though, it involves the introduction of ±∞ as possible values ofthe integral. As it turns out, all of the properties of the Lebesgue integrallisted in §4.3 hold for unbounded measurable functions as well.

Page 22: Measure Theory and Lebesgue Integration - MIT Media Lab

Chapter 5

Comparison of Lebesgue andRiemann Integrals

5.1 Summary of Events

Having achieved what we first set out to do – to define an integral based ona new way of counting rectangles, let us look back at the motivation behindthis endeavor. As outlined in §1.2, we are striving to define an integral suchthat the class of integrable functions is large and well-behaved. Ideally, wewould like the class of integrable functions to have nice limit properties; thatthe integral of the limit is the limit of the integral. Examples 1.1 and 1.2show that this is not in general true of the Riemann integral.

Aside from examining the convergence properties of the Lebesgue in-tegral, we are also interested in how it behaves relative to the Riemannintegral. Is a Riemann integrable function Lebesgue integrable and, if so,what are the values of the respective integrals?

5.2 Convergence of the Lebesgue Integral

The following lemmas and theorems build upon each other and end witha broad statement which identifies when the limit and Lebesgue integraloperations are interchangeable.

Lemma 5.1 Let g be a non-negative measurable function on a bounded mea-surable set A. If {An} are measurable subsets of A such that

A1 ⊂ A2 ⊂ A3 ⊂ · · · ,

18

Page 23: Measure Theory and Lebesgue Integration - MIT Media Lab

and if L ∈ R is such that L ≥∫An

g dm for all n, then L ≥∫∪An

g dm.Proof Idea: (Proof by belief). Given that the Lebesgue integral dependson the measure of subsets of the domain of the function, and that measurefollows our intuition, this lemma is easy to believe without proof.

Theorem 5.2 (Monotone Convergence Theorem) Let A be a bounded mea-surable subset of R and {fn} be a sequence of measurable functions on Asuch that 0 ≤ f1 ≤ f2 ≤ · · · . Let f be the pointwise limit of {fn}. That is,

limn→∞

fn(x) = f(x)

for all x ∈ E. Then f is integrable and

limn→∞

∫A

fn dm =∫

Af dm.

Proof: By Lemma 3.9, f is measurable since each fn is measurable. Mono-tonicity of the Lebesgue integral (Theorem 4.6) implies that

{∫A fn dm

}is

an increasing sequence. So, not discounting ∞ as a possibility, this sequencehas a limit L. Since f ≥ fn implies that

∫A f dm ≥

∫A fn dm for all n, it

follows that∫A f dm ≥ L.

On the other hand, we can also show that∫A f dm ≤ L. Let c ∈ (0, 1)

and let g : A → R be a simple function such that 0 ≤ g ≤ f . Considerthe sets An = {x | fn(x) ≥ cg(x)}, which happen to satisfy the hypotheses ofLemma 5.1. The reason for including c is so that cg < f , which implies that⋃∞

n=1 An = A. For any n = 1, 2, · · · , we have

L = limn→∞

∫A

fn dm ≥∫

An

fn dm ≥ c

∫An

g dm.

By Lemma 5.1, L ≥ c∫∪An

g dm. Since⋃∞

n=1 An = A and c ∈ (0, 1) wasarbitrary, it follows that L ≥

∫∪An

g dm. By Corollary 4.4,∫A

f dm = lub

{∫A

f dm | f is simple and f ≤ f

},

we get L ≥∫A f dm.

Combining the above two inequalities gives L =∫A f dm, as desired.

Lemma 5.3 (Fatou’s Lemma) Let A ⊂ R be a bounded measurable set. If{fn} is a sequence of non-negative measurable functions on A and

f(x) = limn→∞

fn(x) ≡ limn→∞

{glb fk(x) | k ≥ n}

Page 24: Measure Theory and Lebesgue Integration - MIT Media Lab

for every x ∈ A, then∫A f dm ≤ lim

n→∞

∫A fn dm.

Proof: Letgn(x) = glb{fk(x) | k ≥ n}

for each n = 1, 2, · · · and for each x ∈ A. Each gn is a measurable functionsince the set

{x | gn(x) > r} =∞⋃

k=n

{x | fk(x) > r}

is measurable. Notice that gn ≤ fn for all n and that {gn} is a monotonicallyincreasing sequence of non-negative functions.

By definition,

limn→∞

gn(x) = limn→∞

{glb fk(x) | k ≥ n} ≡ limn→∞

fn(x) = f(x).

Therefore, by the Monotone Convergence Theorem (5.2),

limn→∞

∫A

gn dm =∫

Af dm.

This, combined with∫A

gn(x) dm ≤∫

Afn(x) dm for each n and each x ∈ A

due to the monotonicity (Theorem 4.6) of the Lebesgue integral, leads to

limn→∞

∫A

gn dm =∫

Af dm ≤ lim

n→∞

∫A

fn dm,

as desired.

Theorem 5.4 (Lebesgue Dominated Convergence Theorem) Let A ∈ R bea bounded measurable set and let {fn} be a sequence of measurable functionson A such that lim

n→∞fn(x) = f(x) for all x ∈ A. If there exists a function

g whose Lebesgue integral is finite such that |fn(x)| ≤ g(x) for all n and allx ∈ A, then

limn→∞

∫A

fn dm =∫

Af dm.

Proof: To begin, the functions fn and f have finite Lebesgue integrals sinceg does (this fact does take some proof, but is omitted here). By our choiceof g we have fn + g ≥ 0 on the set A. So,∫

A(f + g) dm ≤ lim

n→∞

∫A(fn + g) dm

Page 25: Measure Theory and Lebesgue Integration - MIT Media Lab

by Fatou’s Lemma (5.3) and hence,∫A

f dm ≤ limn→∞

∫A

fn dm

by the linearity of the Lebesgue integral (Theorem 4.6).The same argument can be used with the function g − fn to obtain

−∫

Af dm ≤ lim

n→∞

(−

∫A

fn dm

).

But since

limn→∞

(−

∫A

fn dm

)= lim

n→∞

{glb

(−

∫A

fk dm

)| k ≥ n

}= lim

n→∞

{lub

∫A

fk dm | k ≥ n

}≡ lim

n→∞

∫A

fn dm,

it follows that ∫A

f dm ≥ limn→∞

∫A

fn dm.

Finally, combining the above two inequalities,∫A

f dm ≤ limn→∞

∫A

fn dm ≤ limn→∞

∫A

fn dm ≤∫

Af dm,

shows that limn→∞

∫A fn dm exists and is equal to

∫A f dm, as desired.

5.3 Convergence of the Riemann Integral

Now that we have a grasp of the convergence properties of the Lebesgueintegral, let’s compare it with those of the Riemann integral. The Riemannequivalent to the Lebesgue Dominated Convergence Theorem (5.4), is statedbelow in Theorem 5.5.

Theorem 5.5 Let a, b ∈ R, a < b, and let {fn} be a uniformly convergentsequence of Riemann integrable functions on [a, b] such thatlimn→∞

fn(x) = f(x) for all x ∈ [a, b]. Then

limn→∞

∫ b

afn(x) dx =

∫ b

af(x) dx.

Page 26: Measure Theory and Lebesgue Integration - MIT Media Lab

Recall that {fn} is uniformly convergent if, given ε > 0, there exists anatural number N such that |f(x) − fn(x)| < ε whenever n > N , for allx ∈ [a, b]. Clearly, the hypotheses placed on {fn} in order for the LebesgueDominated Convergence Theorem to hold are much less stringent than re-quiring {fn} to converge uniformly. Thus, we can at least expect that theclass of Lebesgue integrable functions has somewhat better limit propertiesthan those of the class of Riemann integrable functions. In fact, we havealready witnessed this in Example 4.5 with the Dirichlet function.

5.4 A Final Comparison

The following theorem, stated without proof, explicitly relates the Riemannand Lebesgue integrals.

Theorem 5.6 If f is Riemann integrable on [a,b], then f is Lebesgue inte-grable on [a,b], and ∫ b

af(x) dx =

∫[a,b]

f dm.

What’s more, we’ve already seen that the converse of this theorem isn’t true.Thus, not only does the class of Lebesgue integrable functions have betterlimit properties, but it is also larger than the class of Riemann integrablefunctions.

As promised in §1.2, we now turn to the Lebesgue integral to re-examinethe function given in Example 1.1.

Example 5.7 Consider the sequence of functions {fn} over the intervalE = [0, 1].

fn(x) =

{2n if 1

2n ≤ x ≤ 12n−1

0 otherwise

The limit function of this sequence is simply f = 0. In this example, eachfunction in the sequence is Riemann integrable, as is the limit function.However, the limit of the sequence of Riemann integrals is not equal to theRiemann integral of the limit of the sequence. That is,

limn→∞

∫ 1

0fn(x) dx = 1 6= 0 =

∫ 1

0limn→∞

fn(x) dx.

By Theorem 5.6, it is also the case that

limn→∞

∫[0,1]

fn dm = 1 6= 0 =∫

[0,1]limn→∞

fn(x) dx.

Page 27: Measure Theory and Lebesgue Integration - MIT Media Lab

This example goes to show that, although the Lebesgue integral is su-perior to the Riemann integral insofar as the size of the class of integrablefunctions and the limit properties of these functions, there are still functionswhich defy Lebesgue integration.

One point we have not yet touched on is the effect of the Lebesgue inte-gral on the Lp spaces. It turns out that L2 is complete under the Lebesgueintegral. This is of considerable importance, especially when dealing withthe theory behind Fourier series. However interesting that topic may be,though, it will have to wait for another time.

Page 28: Measure Theory and Lebesgue Integration - MIT Media Lab

References

[1] HJ Wilcox, DL Myers, An Introduction to Lebesgue Integrationand Fourier Series, Dover Publications, Inc., New York, 1978.

[2] M Rosenlicht, Introduction to Analysis, Dover Publications, Inc.,New York, 1968.

24