Formula For Area Between Two Curves
The formula for areabetween two curves is a fundamental tool in integral calculus that allows you to compute the size of the region enclosed by two functions over a given interval. By setting up a definite integral of the difference between the upper (top) curve and the lower (bottom) curve, you can determine the exact area even when the boundaries are not simple geometric shapes. This concept appears frequently in physics, engineering, economics, and any field that requires measuring the space between varying quantities.
Introduction
When two continuous functions, (f(x)) and (g(x)), intersect or run alongside each other on a coordinate plane, the region that lies between them can be irregular. Calculating its area directly with basic geometry is usually impossible, but integration provides a systematic way to sum infinitely thin vertical (or horizontal) slices. The formula for area between two curves emerges from this idea: integrate the vertical distance between the curves across the interval where they bound the region.
Understanding the Concept
Visualizing the Region
Imagine shading the area that lies above (g(x)) and below (f(x)) from (x = a) to (x = b). If (f(x) \ge g(x)) throughout that interval, each vertical slice has a height of (f(x) - g(x)) and an infinitesimal width (dx). Adding up all these slices yields the total area.
When the Curves Cross
If the functions intersect within the interval, the top and bottom roles may switch. In such cases, you must split the integral at each intersection point so that the integrand remains non‑negative (the top curve minus the bottom curve).
Deriving the Formula
Starting from the definition of a definite integral as the limit of Riemann sums:
[ \text{Area} = \lim_{n\to\infty}\sum_{i=1}^{n} \big[f(x_i^)-g(x_i^)\big]\Delta x ]
where (\Delta x = \frac{b-a}{n}) and (x_i^*) is a sample point in the (i^{\text{th}}) subinterval. Recognizing the sum as the Riemann sum for the function (f(x)-g(x)) gives:
[ \boxed{\displaystyle \text{Area} = \int_{a}^{b} \big[f(x)-g(x)\big],dx} ]
If the curves cross, replace the single integral with a sum of integrals over subintervals where the ordering is consistent:
[ \text{Area} = \sum_{k=1}^{m} \int_{x_{k-1}}^{x_{k}} \big|f(x)-g(x)\big|,dx ]
where (x_0, x_1, \dots, x_m) are the sorted intersection points (including (a) and (b)).
Step‑by‑Step Procedure
- Identify the functions (f(x)) and (g(x)) that bound the region.
- Find intersection points by solving (f(x)=g(x)). These values become the limits of integration (or split points).
- Determine which function is on top on each subinterval. Test a point inside the interval or compare the functions algebraically.
- Set up the integral(s): (\displaystyle \int (\text{top} - \text{bottom}),dx).
- Evaluate the definite integral(s) using antiderivatives or numerical methods if needed.
- Interpret the result as the area (always non‑negative).
Quick Checklist - ☐ Functions are continuous on the interval(s).
- ☐ Intersection points are correctly solved.
- ☐ Top minus bottom yields a non‑negative integrand. - ☐ Antiderivatives are computed accurately.
- ☐ Final answer includes appropriate units (if any).
Worked Examples ### Example 1: Simple Polynomial Boundaries
Find the area between (f(x)=x^2+2) and (g(x)=x) from (x=0) to (x=2).
- Intersection: Solve (x^2+2 = x \Rightarrow x^2 - x + 2 = 0). The discriminant is negative, so no real intersections; the given interval ([0,2]) is used directly.
- Top vs. Bottom: Test (x=1): (f(1)=3), (g(1)=1) → (f) is on top.
- Integral:
[ \text{Area}= \int_{0}^{2}\big[(x^2+2)-x\big]dx = \int_{0}^{2}(x^2 - x + 2)dx ] 4. Antiderivative: (\frac{x^3}{3} - \frac{x^2}{2} + 2x). - Evaluate:
[ \left[\frac{8}{3} - \frac{4}{2} + 4\right] - \left[0\right] = \frac{8}{3} - 2 + 4 = \frac{8}{3} + 2 = \frac{14}{3}\approx 4.67 ]
Thus, the area is (\displaystyle \frac{14}{3}) square units.
Example 2: Crossing Curves
Compute the area between (f(x)=\sin x) and (g(x)=\cos x) on ([0,\pi]).
- Intersection: Solve (\sin x = \cos x \Rightarrow \tan x = 1 \Rightarrow x = \frac{\pi}{4}) (within the interval).
- Subintervals: ([0,\frac{\pi}{4}]) and ([\frac{\pi}{4},\pi]). 3. Determine top:
- On ([0,\frac{\pi}{4}]): test (x=0): (\sin0=0), (\cos0=1) → (\cos) is top.
- On ([\frac{\pi}{4},\pi]): test (x=\frac{\pi}{2}): (\sin\frac{\pi}{2}=1), (\cos\frac{\pi}{2}=0) → (\sin) is top.
- Set up integrals: [ \text{Area}= \int_{0}^{\pi/4}(\cos x - \sin x)dx + \int_{\pi/4}^{\pi}(\sin x - \cos x)dx ]
- Antiderivatives:
- (\int(\cos x - \sin x)dx = \sin x + \cos x) - (\int(\sin x - \cos x)dx = -\cos x - \sin x)
- Evaluate:
[ \big[\sin x + \cos x\big]_{0}^{\pi/4} = \left(\frac{\sqrt2}{2}+\frac{\sqrt2}{2}\right) - (0+1) = \sqrt2 -
Continuing Example 2The second integral evaluates to
[\big[-\cos x-\sin x\big]_{\pi/4}^{\pi} =\bigl(-\cos\pi-\sin\pi\bigr)-\bigl(-\cos\frac{\pi}{4}-\sin\frac{\pi}{4}\bigr) =\bigl(1-0\bigr)-\bigl(-\tfrac{\sqrt2}{2}-\tfrac{\sqrt2}{2}\bigr) =1+\sqrt2 . ]
Adding the two pieces gives the total enclosed region
[ \text{Area}= (\sqrt2-1)+(1+\sqrt2)=2\sqrt2\approx 2.828 . ]
Thus the region bounded by (y=\sin x) and (y=\cos x) on ([0,\pi]) occupies (2\sqrt2) square units.
Example 3: Multiple Intersection Points
Suppose we need the area between
[ f(x)=x^3-3x+2,\qquad g(x)=x+1 ]
on the interval where they intersect.
-
Find the intersection points by solving [ x^3-3x+2 = x+1 ;\Longrightarrow; x^3-4x+1 = 0 . ]
The cubic factors as ((x-1)(x^2+x-1)=0), yielding three real solutions
[ x_1=1,\qquad x_{2,3}= \frac{-1\pm\sqrt{5}}{2}. ]
Numerically these are approximately (-1.618) and (2.618). -
Split the domain at these three points, producing two sub‑intervals:
([-1.618,,1]) and ([1,,2.618]). -
Determine which curve lies above on each sub‑interval.
- On ([-1.618,1]) pick (x=0): (f(0)=2), (g(0)=1) → (f) is on top.
- On ([1,2.618]) pick (x=2): (f(2)=0), (g(2)=3) → (g) is on top.
-
Set up the integrals
[ \text{Area}= \int_{-1.618}^{1}!\big[(x^3-3x+2)-(x+1)\big]dx +\int_{1}^{2.618}!\big[(x+1)-(x^3-3x+2)\big]dx . ] -
Integrate (antiderivatives are straightforward polynomials). [ \int (x^3-4x+1),dx = \frac{x^4}{4}-2x^2+x, \qquad \int -(x^3-4x+1),dx = -\frac{x^4}{4}+2x^2-x . ]
-
Evaluate at the limits (using the exact algebraic forms of the roots if desired, or numeric approximations).
Using the decimal approximations:[ \begin{aligned} \text{First part} &\approx \Bigl[\tfrac{x^4}{4}-2x^2+x\Bigr]_{-1.618}^{1} \approx 4.12,\[4pt] \text{Second part} &\approx \Bigl[-\tfrac{x
Latest Posts
Latest Posts
-
4 Basic Types Of Body Tissue
Mar 26, 2026
-
Simplify The Expression With Rational Exponents
Mar 26, 2026
-
Achieve Essentials For Openstax General Chemistry
Mar 26, 2026
-
How To Increase Efficiency Of A Simple Machine
Mar 26, 2026
-
What Is The Equation For Friction
Mar 26, 2026