Math graphic
📐 Concept diagram

05-02 - The Definite Integral

Phase: 5 | Subject: 05-02 Prerequisites: 05-01-antiderivatives.md (indefinite integrals) Next subject: 05-03-the-fundamental-theorem-of-calculus.md


Learning Objectives

By the end of this subject, you will be able to:

  1. Understand the definite integral as area under a curve
  2. Use sigma notation for Riemann sums
  3. Evaluate left, right, and midpoint Riemann sums
  4. Understand the limit definition of the definite integral
  5. Apply basic properties of definite integrals

Core Content

From Indefinite to Definite

Indefinite integral: ∫f(x)dx = F(x) + C (family of antiderivatives) Definite integral: ∫[a to b] f(x)dx = F(b) - F(a) (a NUMBER — the signed area)

Area Under a Curve

The definite integral ∫[a to b] f(x)dx represents the net signed area between the curve y = f(x), the x-axis, and the vertical lines x = a and x = b.

Signed area: Areas above the x-axis are positive, areas below are negative.

Example: ∫[0 to 2] x dx = [x²/2][0 to 2] = 4/2 - 0 = 2 This is the area of a triangle: (1/2) × base × height = (1/2) × 2 × 2 = 2. ✓

Riemann Sums

Approximate area using rectangles.

Left Riemann sum: Use function value at the LEFT endpoint of each subinterval. Right Riemann sum: Use function value at the RIGHT endpoint. Midpoint Riemann sum: Use function value at the MIDPOINT.

Setup

  1. Partition [a, b] into n subintervals of equal width Δx = (b - a)/n
  2. Sample point xᵢ* in each subinterval
  3. Sum: Σ f(xᵢ*)·Δx

Example: Approximate ∫[0 to 2] x² dx with n = 4 left endpoints.

Δx = 2/4 = 0.5 Points: 0, 0.5, 1, 1.5 f(0) = 0, f(0.5) = 0.25, f(1) = 1, f(1.5) = 2.25 Sum = (0 + 0.25 + 1 + 2.25) × 0.5 = 3.5 × 0.5 = 1.75

True value: ∫[0 to 2] x² dx = [x³/3][0 to 2] = 8/3 ≈ 2.667 Left sum underestimates for increasing function.

Limit Definition

$∫[a to b] f(x)dx = $lim(n→∞)$ Σ(i=1 to n) f(xᵢ*)·Δx
$

As n → ∞, the approximation becomes exact.

Properties of Definite Integrals

  1. ∫[a to a] f(x)dx = 0
  2. ∫[a to b] f(x)dx = -∫[b to a] f(x)dx
  3. ∫[a to b] [f(x) ± g(x)]dx = ∫[a to b] f(x)dx ± ∫[a to b] g(x)dx
  4. ∫[a to b] k·f(x)dx = k·∫[a to b] f(x)dx
  5. ∫[a to b] f(x)dx = ∫[a to c] f(x)dx + ∫[c to b] f(x)dx
  6. If f(x) ≥ 0 on [a, b], then ∫[a to b] f(x)dx ≥ 0
  7. If f(x) ≤ g(x) on [a, b], then ∫[a to b] f(x)dx ≤ ∫[a to b] g(x)dx


Key Terms

Worked Examples

Example 1: Geometric interpretation

Find ∫[-2 to 2] |x| dx.

Split at x = 0: ∫[-2 to 0] (-x)dx + ∫[0 to 2] x dx = [-x²/2][-2 to 0] + [x²/2][0 to 2] = (0 - (-2)) + (2 - 0) = 2 + 2 = 4

This is the area of two triangles: each has base 2, height 2. Total = 2 × (1/2 × 2 × 2) = 4. ✓

Example 2: Using properties

If ∫[1 to 3] f(x)dx = 5 and ∫[3 to 5] f(x)dx = 7, find ∫[1 to 5] f(x)dx.

∫[1 to 5] = ∫[1 to 3] + ∫[3 to 5] = 5 + 7 = 12

Example 3: Definite integral evaluation

∫[0 to 4] (x² − 2x)dx

= [x³/3 − x²][0 to 4] = (64/3 − 16) − (0 − 0) = 64/3 − 48/3 = 16/3


Practice Problems

Problem 1: Evaluate ∫[0 to 1] (3x² + 2x)dx

Answer [x³ + x²][0 to 1] = (1 + 1) - 0 = 2

Problem 2: Evaluate ∫[1 to 4] (4/x)dx

Answer 4[ln|x|][1 to 4] = 4(ln(4) - ln(1)) = 4ln(4) ≈ 5.545

Problem 3: Evaluate ∫[-1 to 1] x³ dx

Answer [x⁴/4][-1 to 1] = 1/4 - 1/4 = 0 (odd function over symmetric interval)

Problem 4: Geometric: ∫[0 to π] sin(x)dx

Answer [-cos(x)][0 to π] = -cos(π) + cos(0) = -(-1) + 1 = 2

Problem 5: If ∫[0 to 2] f(x)dx = 4 and ∫[2 to 5] f(x)dx = 9, find ∫[0 to 5] f(x)dx

Answer 4 + 9 = 13

Summary

Key takeaways:


Pitfalls


Quiz

Q1: ∫[1 to 3] 2x dx equals:

A) 4 B) 6 C) 8 D) 10

Answer and Explanations **Correct: C)** - If you chose C: [x²][1 to 3] = 9 - 1 = 8. Correct! - If you chose A: You may have computed 2 × (3 - 1) = 4, treating it as a rectangle. - If you chose B: The average value of 2x on [1,3] is (f(1)+f(3))/2 = (2+6)/2 = 4, and 4 × 2 = 8. This actually gives the correct answer because 2x is linear — for linear functions, the average-value-times-width equals the integral. B happens to produce the right number but C is the proper evaluation. ✗ - If you chose D: You may have added endpoints: 2 + 6 = 8, then doubled.

Q2: ∫[0 to 2] (x + 1)dx equals:

A) 2 B) 3 C) 4 D) 5

Answer and Explanations **Correct: C)** - If you chose C: [x²/2 + x][0 to 2] = (2 + 2) - 0 = 4. Correct! - If you chose A: You may have computed just the integral of x from 0 to 2: [x²/2] = 2. - If you chose B: You may have used average height: at x=0, y=1; at x=2, y=3. Average = 2. 2 × 2 = 4. That's actually 4, not 3. - If you chose D: You may have added wrong.

Q3: The integral ∫[a to b] f(x)dx represents:

A) The derivative of f(x) B) The net signed area under f(x) from a to b C) The average value of f(x) D) The length of the curve

Answer and Explanations **Correct: B)** - If you chose B: The definite integral gives the net signed area between the curve and x-axis from x=a to x=b. Correct! - If you chose A: That's the derivative, the opposite operation. - If you chose C: Average value = (1/(b-a))∫[a to b] f(x)dx. The integral alone isn't the average. - If you chose D: Arc length requires a different formula involving the derivative.

Q4: If f(x) ≥ 0 on [a, b], then ∫[a to b] f(x)dx is:

A) Always positive B) Always negative C) Always zero D) Could be positive, negative, or zero

Answer and Explanations **Correct: A)** - If you chose A: If f(x) ≥ 0, all the "rectangles" in the Riemann sum have non-negative height. The sum is ≥ 0. If f > 0 somewhere, integral > 0. Correct! - If you chose B: That would require f(x) ≤ 0 everywhere. - If you chose C: That requires f(x) = 0 everywhere. - If you chose D: If f ≥ 0, the integral is always ≥ 0. Not "could be negative."

Q5: ∫[2 to 4] f(x)dx = 6 and ∫[4 to 7] f(x)dx = 9. Then ∫[2 to 7] f(x)dx = ?

A) 3 B) 15 C) 54 D) -15

Answer and Explanations **Correct: B)** - If you chose B: ∫[2 to 7] = ∫[2 to 4] + ∫[4 to 7] = 6 + 9 = 15. Correct! - If you chose A: You subtracted: 9 - 6 = 3. But these are adjacent intervals that should be added. - If you chose C: You multiplied 6 × 9 = 54. Integrals add, they don't multiply. - If you chose D: You got the sign wrong. Both integrals are positive, so their sum is positive.

Next Steps

Next up: 05-03-the-fundamental-theorem-of-calculus.md