CALCULUS 2 • APPLICATIONS OF INTEGRATION

Area Between Multiple Intersections — Finding the Area Between Curves That Intersect at More Than Two Points

Master the technique of splitting integrals at each intersection to compute total enclosed area between complex curves.

Historical Context & Motivation

The problem of computing the area enclosed between two curves has roots stretching back to antiquity, when Greek mathematicians first attempted to measure regions bounded by parabolas and other conic sections. Archimedes famously used his method of exhaustion to determine the area of a parabolic segment, foreshadowing the integral calculus that would emerge two millennia later. As mathematics matured through the Renaissance and into the seventeenth century, the need to handle increasingly complex curve configurations — where two functions cross each other repeatedly — became essential for problems in optics, astronomy, and engineering.

The formal development of integration by Isaac Newton and Gottfried Wilhelm Leibniz in the late 1600s provided the machinery to handle arbitrary regions between curves. However, it was the systematic treatment of piecewise integration over subintervals — splitting a complicated area calculation at each point where the curves cross — that enabled mathematicians and scientists to handle real-world scenarios where two quantities alternate in dominance. This idea is central to probability theory (computing probabilities between density curves), economics (surplus calculations), and physics (work done by competing forces).

c. 250 BCE
Archimedes — Method of Exhaustion
Archimedes computes the area of a parabolic segment by inscribing triangles, establishing the foundational idea that curved regions can be measured through successive approximation.
1665–1687
Newton & Leibniz — Invention of Calculus
The Fundamental Theorem of Calculus connects antiderivatives to areas, making it possible to compute areas between curves analytically using definite integrals.
1748
Euler — Introductio in Analysin Infinitorum
Euler's treatise systematizes the study of functions and their intersections, including trigonometric and polynomial curves that cross at multiple points.
1823
Cauchy — Rigorous Definite Integral
Cauchy provides the first rigorous definition of the definite integral as a limit of sums, formalizing the technique of splitting integrals at points of intersection.

The central question this lesson addresses is: when two curves intersect at more than two points, how do we correctly account for the regions where each curve is on top, and how do we assemble the total enclosed area? The naive approach of integrating a single expression over the entire domain fails because the sign of f(x) − g(x) changes at each intersection, leading to erroneous cancellation. The resolution lies in a disciplined approach: find all intersection points, test which function dominates on each subinterval, and sum the absolute differences.

Core Principles & Definitions

Before diving into computation, it is essential to internalize several foundational ideas that govern the process of finding area between curves with multiple intersections. These principles generalize the simpler two-intersection case you have likely already mastered, but they require more careful bookkeeping and a methodical workflow.

1

Intersection Points as Boundaries

The points where f(x) = g(x) partition the x-axis into subintervals. On each subinterval, one function is strictly above the other — the dominance does not change within a subinterval.
2

Absolute Difference Principle

Area is always non-negative. On each subinterval [xₖ, xₖ₊₁], compute ∫|f(x) − g(x)| dx by placing the upper function first: ∫(top − bottom) dx.
3

Additivity of Area

The total enclosed area equals the sum of the individual areas over all subintervals. Each enclosed 'lobe' contributes independently to the total.
4

Test Point Strategy

To determine which function is on top in a given subinterval, evaluate both f and g at any convenient test point within that interval and compare the values.
5

Symmetry Exploitation

When the curves and their intersections exhibit symmetry (even functions, periodic functions), you can compute one lobe and multiply, significantly reducing computation.
KEY TAKEAWAY
Think of two curves crossing multiple times like two roads that weave over and under each other via a series of overpasses and underpasses. If you want to know the total area of land sandwiched between the roads, you must measure each enclosed pocket separately — a single measurement from start to finish would incorrectly cancel out pockets on alternating sides. In the same way, you must split the integral at every crossing point and sum the positive areas from each subinterval.

Visual Explanation

The following diagram illustrates two curves — a cubic polynomial and a linear function — that intersect at three points. The three intersection points create two enclosed lobes. Notice how the dominant curve switches at each crossing: in the left lobe the linear function sits above the cubic, while in the right lobe the cubic rises above the line. Each lobe must be integrated separately with the correct integrand order.

Two curves f(x) (cyan) and g(x) (pink) intersect at three points x₁, x₂, x₃ marked by amber dots. Lobe A (left) has g above f, while Lobe B (right) has f above g. Each lobe is integrated separately with the appropriate integrand order.

The diagram makes a crucial point visible: if you were to integrate f(x) − g(x) from x₁ to x₃ without splitting, the positive contribution of Lobe B would partially cancel the negative contribution where g(x) > f(x) in Lobe A, yielding a number smaller than the actual geometric area. The correct approach requires computing each lobe's area with the absolute value of the difference, then summing. In the notation of the diagram, the total area is A = ∫ from x₁ to x₂ of |f(x) − g(x)| dx + ∫ from x₂ to x₃ of |f(x) − g(x)| dx.

Mathematical Framework

We now formalize the procedure. Suppose f and g are continuous on [a, b] and intersect at points x₁ < x₂ < ⋯ < xₙ, where we set x₀ = a and xₙ₊₁ = b if the problem specifies explicit endpoints, or we simply use the intersection points as the full set of boundaries for the enclosed lobes.

GENERAL AREA FORMULA
A = Σ (k=0 to n) ∫ from xₖ to xₖ₊₁ |f(x) − g(x)| dx
where x₀, x₁, …, xₙ₊₁ are the ordered intersection points (or specified endpoints), and the absolute value ensures each sub-area is non-negative.

In practice, you eliminate the absolute value by determining which function is larger on each subinterval. If f(x) ≥ g(x) on [xₖ, xₖ₊₁], the integrand becomes f(x) − g(x); if g(x) ≥ f(x), it becomes g(x) − f(x). This yields the practical computation formula below.

PRACTICAL COMPUTATION
A = Σ (k=0 to n) ∫ from xₖ to xₖ₊₁ [upper(x) − lower(x)] dx
where upper(x) is the function with the greater value on [xₖ, xₖ₊₁] and lower(x) is the one with the lesser value, determined by evaluating both functions at a test point in the subinterval.
FINDING INTERSECTION POINTS
f(x) = g(x) ⟹ f(x) − g(x) = 0 ⟹ solve for x₁, x₂, …, xₙ
The equation f(x) − g(x) = 0 may be solved by factoring, the quadratic formula, trigonometric identities, or numerical methods depending on the complexity of the functions involved.
Common Pitfall
A frequent error is integrating f(x) − g(x) over the entire interval without splitting. When the curves cross, the integral ∫ from a to b [f(x) − g(x)] dx computes the signed (net) area, not the geometric area. Regions where g > f produce negative contributions that cancel part of the positive regions, giving a result that is too small or even zero when the lobes happen to be equal in size.

Step-by-Step Procedure & Classification

Below is the systematic procedure you should follow for every problem involving area between curves with multiple intersections. Internalizing this workflow prevents sign errors and ensures completeness.

  1. Step 1 — Set up the equation f(x) = g(x) and solve for all intersection points. Factor, use the quadratic formula, or apply algebraic/trigonometric identities as needed.
  2. Step 2 — Order the intersection points from smallest to largest: x₁ < x₂ < ⋯ < xₙ. These define n − 1 enclosed lobes (assuming the curves actually enclose area between consecutive crossings).
  3. Step 3 — Test each subinterval by choosing a convenient sample point cₖ ∈ (xₖ, xₖ₊₁). Evaluate f(cₖ) and g(cₖ) to determine which function is on top.
  4. Step 4 — Write the integral for each subinterval as ∫ from xₖ to xₖ₊₁ [upper − lower] dx, ensuring the integrand is non-negative.
  5. Step 5 — Evaluate each integral using the Fundamental Theorem of Calculus, and sum all the results to obtain the total area.
A complete decision flowchart for computing the area between two curves that intersect at multiple points. The diamond tests which function dominates each subinterval, ensuring the integrand is always non-negative.

Problems with multiple intersections can be classified by the number and type of crossings. The simplest generalization beyond two intersections involves three intersection points yielding two lobes, commonly arising when a polynomial of degree three crosses a line. More complex scenarios include trigonometric functions crossing polynomials periodically, or two oscillatory functions generating many enclosed lobes. The key insight is that the procedure is identical regardless of the number of intersections — the difficulty lies in solving the intersection equation and in the algebra of evaluating additional integrals.

Worked Example

Find the total area enclosed between f(x) = x³ − 4x and g(x) = 0 (the x-axis).

Area Between y = x³ − 4x and the x-axis
1
Step 1 — Find Intersection PointsSet f(x) = g(x): x³ − 4x = 0. Factor out x: x(x² − 4) = 0, which gives x(x − 2)(x + 2) = 0. The three intersection points are x = −2, x = 0, and x = 2.
x₁ = −2, x₂ = 0, x₃ = 2
2
Step 2 — Determine Which Function Is on TopOn (−2, 0): test x = −1. f(−1) = (−1)³ − 4(−1) = −1 + 4 = 3 > 0 = g(−1). So f is above g on this interval. On (0, 2): test x = 1. f(1) = 1 − 4 = −3 < 0 = g(1). So g is above f on this interval.
Interval (−2, 0): f on top. Interval (0, 2): g on top.
3
Step 3 — Set Up the IntegralsA = ∫ from −2 to 0 [f(x) − g(x)] dx + ∫ from 0 to 2 [g(x) − f(x)] dx = ∫ from −2 to 0 (x³ − 4x) dx + ∫ from 0 to 2 (−x³ + 4x) dx.
4
Step 4 — Evaluate the First Integral∫ from −2 to 0 (x³ − 4x) dx = [x⁴/4 − 2x²] from −2 to 0 = (0 − 0) − (16/4 − 2·4) = 0 − (4 − 8) = 0 − (−4) = 4.
A₁ = 4
5
Step 5 — Evaluate the Second Integral∫ from 0 to 2 (−x³ + 4x) dx = [−x⁴/4 + 2x²] from 0 to 2 = (−16/4 + 2·4) − (0) = (−4 + 8) = 4.
A₂ = 4
6
Step 6 — Sum the AreasTotal area A = A₁ + A₂ = 4 + 4 = 8. Note that the symmetry of the odd function x³ − 4x about the origin causes the two lobes to have equal area. We could have exploited this by computing one lobe and doubling.
Total Area = 8 square units
Verification Check
If you had naively computed ∫ from −2 to 2 (x³ − 4x) dx, you would get [x⁴/4 − 2x²] from −2 to 2 = (4 − 8) − (4 − 8) = 0. This result is zero because the two lobes cancel — the integral gives net signed area, not geometric area. This perfectly illustrates why splitting at intersection points is essential.

Common Pitfalls, Comparisons & Tips

Understanding where students typically go wrong — and how the multiple-intersection case compares to simpler scenarios — solidifies your command of the technique.

Comparison of the two-intersection case versus the multiple-intersection case
AspectTwo Intersections (Simple Case)Multiple Intersections
Number of integralsOne integral over [x₁, x₂]n − 1 integrals over [x₁,x₂], [x₂,x₃], …, [xₙ₋₁,xₙ]
Sign of integrandConsistent (one function is always on top)Alternates — must test each subinterval
Risk of cancellationNone (single lobe)High — unsigned integral cancels lobes
Symmetry shortcutsRarely applicableOften exploitable (odd functions, periodicity)
Algebra difficultySolve a quadratic or simple equationMay require factoring cubics, trig identities, or numerical methods
KEY TAKEAWAY
In signal processing, when you compute the total energy difference between two waveforms, you cannot simply subtract one signal from the other and integrate — regions where the second signal is stronger would cancel out the regions where the first is stronger. Engineers compute the integral of the absolute difference to get the true cumulative discrepancy. The area-between-curves-with-multiple-intersections problem is mathematically identical: you must handle each segment where the dominance switches independently.

Connection to Advanced Topics

The technique of splitting at intersection points extends naturally into several advanced areas of mathematics and applied science. Understanding how this foundational idea scales prepares you for more sophisticated problems in later courses.

How the multi-intersection area technique connects to advanced mathematics
This LessonAdvanced Extension
Area between y = f(x) and y = g(x) in Cartesian coordinatesArea enclosed by polar curves r₁(θ) and r₂(θ) using A = ½∫|r₁² − r₂²| dθ, splitting at angles where r₁(θ) = r₂(θ)
Two curves in 2DVolume between two surfaces in 3D using double integrals: V = ∬ |f(x,y) − g(x,y)| dA over the appropriate region
Signed area cancellation issueL¹ norm in functional analysis: ‖f − g‖₁ = ∫|f − g| dx measures total deviation, generalizing the geometric area to a metric on function spaces
Manual intersection-findingNumerical root-finding algorithms (Newton's method, bisection) when intersections have no closed-form solution
Area as a single numberProbability and statistics: area between CDFs measures distributional distance (e.g., Kolmogorov–Smirnov statistic)

Looking ahead, the discipline of splitting domains at boundary curves where an integrand changes character is a recurring motif in analysis. In multivariable calculus, you will encounter regions where the limits of integration change form at curves of intersection between surfaces. In real analysis, the decomposition of a function into its positive and negative parts — f = f⁺ − f⁻ — mirrors exactly the splitting strategy you learned here, and is fundamental to the definition of the Lebesgue integral.

Practice Problems

PROBLEM 1CONCEPTUAL
Two continuous functions f(x) and g(x) intersect at exactly four points on an interval [a, b]. Explain why computing ∫ from a to b [f(x) − g(x)] dx does not, in general, give the total geometric area enclosed between the curves. How many separate integrals would you need to evaluate?
PROBLEM 2BASIC CALCULATION
Find the total area enclosed between y = x² and y = x³ on the interval [0, 1]. Note that these curves intersect at x = 0 and x = 1, but verify whether there are additional intersections within (0, 1).
PROBLEM 3INTERMEDIATE
Find the total area enclosed between y = sin(x) and y = cos(x) on the interval [0, 2π].
PROBLEM 4APPLIED
A company's revenue rate is R(t) = 12t − t² thousand dollars per month and its cost rate is C(t) = 2t + 8 thousand dollars per month, where t is measured in months (0 ≤ t ≤ 10). Find the intersection points of R and C, determine during which months revenue exceeds cost and vice versa, and compute the total area between the two curves. Interpret the result in economic terms.
PROBLEM 5CRITICAL THINKING
Let f(x) = sin(2x) and g(x) = sin(x) on [0, 2π]. (a) Find all intersection points. (b) Set up (but do not necessarily evaluate) all required integrals for the total enclosed area. (c) Explain why the total area can be expressed as twice the area computed on [0, π]. What property of f and g justifies this?

Summary

When two curves intersect at more than two points, computing the total enclosed area requires a systematic approach: find all intersection points by solving f(x) = g(x), order them along the x-axis, test each subinterval to determine which function is on top, and then integrate (upper − lower) on each subinterval. The total area is the sum of all sub-areas, ensuring every contribution is non-negative.

The critical pitfall to avoid is computing a single integral over the entire interval, which yields net signed area instead of geometric area, causing lobes on alternating sides to cancel. Exploiting symmetry — whether from odd/even functions or periodicity — can reduce the number of integrals you need to evaluate. This technique generalizes naturally to polar coordinates, multivariable calculus, and the L¹ norm in functional analysis.

Varsity Tutors • Calculus 2 • Area Between Multiple Intersections