Finding the Area Between Curves That Intersect at More Than Two Points
| English | Chinese | Pinyin |
|---|---|---|
| subintervals | 子区间 | zi qū jiān |
When the curves keep crossing
- Sometimes two curves cross more than twice, and the "top" curve swaps along the way.
- A single top-minus-bottom integral would then get the sign wrong on part of the region.
- The fix: split the region at each crossing and integrate each piece separately.
- Add the pieces' (positive) areas to get the total.
Find every intersection first
- Solve $f(x)=g(x)$ completely — find all the crossing points on the interval, not just the outer two.
- These crossings are the boundaries of the subintervals 子区间 where the ordering is fixed.
- Order them left to right along the $x$-axis.
- Each adjacent pair of crossings frames one piece of the region.
A cubic crossing a line 3 times
y = ax³ + bx
$y=x^3$ and $y=x$ cross at $-1,0,1$; the top curve switches at $0$, so the area needs two pieces.
Where do $y=x^3$ and $y=x$ cross?
$x^3=x\Rightarrow x(x-1)(x+1)=0$.
The intersection points divide the region into ____ where the ordering is fixed.
On each subinterval one curve is consistently on top.
Split where top and bottom switch
- On each subinterval, one curve is consistently on top — test a point to see which.
- Set up a separate integral of (upper $-$ lower) for each subinterval, using the correct top curve there.
- Because the top curve switches between pieces, the integrands differ from piece to piece.
- The full area is the sum of these separate integrals.
You split the region at each intersection because...
Where curves swap, part of the region would count negative.
Using one integral of $f-g$ across all crossings (curves swapping) gives...
Sign-cancellation understates the true area.
Add the absolute areas
- Each subinterval integral, done with the correct top-minus-bottom, is positive.
- Sum them: $A=\displaystyle\sum \int_{\text{piece}} (\text{upper}-\text{lower})\,dx$.
- Equivalently, $A=\displaystyle\int_a^b |f(x)-g(x)|\,dx$ — the absolute gap, integrated.
- Both viewpoints give the same total geometric area.
For $y=x^3$ and $y=x$ on $[-1,1]$, each piece has area $\tfrac14$. Find the total area.
$\tfrac14+\tfrac14=\tfrac12$.
Integrating $|f(x)-g(x)|$ over the whole interval gives the same total area as splitting.
The absolute value handles the switching automatically.
Do not use one integral of $f-g$ across all crossings — where the curves swap, part of the region contributes a negative value and cancels real area. You must split at every intersection and take upper-minus-lower correctly on each piece (or integrate $|f-g|$). Find all the crossings, not just the endpoints.
Area between $y=x^3$ and $y=x$ on $[-1,1]$.
- Crossings: $x^3=x\Rightarrow x(x^2-1)=0\Rightarrow x=-1,0,1$ — three points.
- On $(-1,0)$: $x^3>x$ (test $-0.5$). On $(0,1)$: $x>x^3$ (test $0.5$). The top curve switches at $0$.
- $A=\displaystyle\int_{-1}^{0}(x^3-x)\,dx+\int_{0}^{1}(x-x^3)\,dx=\tfrac14+\tfrac14=\tfrac12$.
When curves intersect more than twice, find all intersection points, split the region into subintervals, and integrate upper minus lower on each (the top curve switches between them). Sum the pieces — equivalently, integrate $|f(x)-g(x)|$. One straight integral of $f-g$ would wrongly cancel area.