Search Knowledge

© 2026 LIBREUNI PROJECT

Mathematics / Analysis I: Calculus

Integration Theory

Integration Theory

While introductory calculus treats integration as “the reverse of differentiation,” Analysis treats it as a foundational process of accumulation. We begin with a rigorous definition of the Riemann Integral using the framework of Darboux sums.

The Riemann-Darboux Integral

Let be a bounded function. We define a partition of as a finite set of points such that .

Lower and Upper Sums

  • Let
  • Let

The Lower Sum and Upper Sum are:

The Integrability Criterion

We define the Lower Integral as the supremum of all lower sums, and the Upper Integral as the infimum of all upper sums. A function is Riemann Integrable if: The common value is denoted .

Important Integrability Results

Not every function is integrable. For example, the Dirichlet function (which is 1 on rationals and 0 on irrationals) is not Riemann integrable because any interval contains both rationals and irrationals, making and .

Theorem: Sufficient Conditions

  1. Every continuous function on is Riemann integrable.
  2. Every monotonic function on is Riemann integrable.
  3. Every bounded function with only finitely many points of discontinuity is Riemann integrable.

Properties of the Integral

The Riemann integral satisfies several fundamental algebraic properties:

  • Linearity: .
  • Additivity: .
  • Monotonicity: If on , then .

Mean Value Theorem for Integrals

If is continuous on , there exists a point such that: This value is the average value of the function over the interval.

Generalizations: Lebesgue Integration

Riemann integration has limitations, particularly when dealing with sequences of functions. To rectify this, modern analysis uses Lebesgue Integration, which partitions the range (y-axis) of the function rather than the domain (x-axis). This allows for the integration of much “wilder” functions and provides a more robust framework for probability theory and functional analysis.

Python: Computing Riemann Sums

We can visualize the convergence of the lower and upper sums using a simple Python script.

def riemann_sums(f, a, b, n):
    dx = (b - a) / n
    nodes = [a + i * dx for i in range(n + 1)]
    
    lower_sum = 0
    upper_sum = 0
    
    for i in range(n):
        # Sample function at many points to approximate inf/sup
        sample_x = [nodes[i] + j * (dx / 100) for j in range(101)]
        sample_y = [f(x) for x in sample_x]
        
        lower_sum += min(sample_y) * dx
        upper_sum += max(sample_y) * dx
        
    return lower_sum, upper_sum

# Test with f(x) = x^2 on [0, 1]
f = lambda x: x**2
for n in [10, 100, 1000]:
    L, U = riemann_sums(f, 0, 1, n)
    print(f"n={n}: Lower={L:.4f}, Upper={U:.4f}, Diff={U-L:.4f}")

Summary

Integration theory is the science of accumulation. By formalizing the integral using Darboux sums, we create a tool that is not only useful for finding areas but also for defining new types of functions and understanding the convergence of signals and series. It is the precursor to measure theory and the foundation of modern physical laws.

Exercise

Conceptual Check

A function is Riemann-Integrable if which condition holds?