Area Between Curves
Area Between Curves
Finding the area between two curves is a direct application of definite integrals. Instead of finding the area under a single curve down to the x-axis, we calculate the area of the region bounded between an upper curve and a lower curve.
The Formula
If a function f(x) is greater than or equal to another function g(x) on an interval [a,b] (meaning f(x) is the "top" curve and g(x) is the "bottom" curve), the area A between them is:
A=∫ab[f(x)−g(x)]dx
Steps to Find the Area
- Find the intersection points: Set the two equations equal to each other to find where the curves intersect. These x-values will usually be your limits of integration, a and b.
- Determine the upper and lower functions: Pick a test point between a and b to see which function has the higher y-value.
- Set up the integral: Subtract the lower function from the upper function.
- Integrate and evaluate: Compute the definite integral.
Example 1: Bounded by Two Functions
Problem: Find the area between y=x2 and y=x+2.
Step 1: Find intersections. Set the equations equal to each other: x2=x+2 x2−x−2=0 (x−2)(x+1)=0 The curves intersect at x=−1 and x=2. These are our bounds.
Step 2: Determine upper and lower functions. Pick a test point in the interval [−1,2], such as x=0:
- y=(0)2=0
- y=(0)+2=2
Since 2>0, y=x+2 is the upper function and y=x2 is the lower function.
Step 3 & 4: Set up and evaluate the integral. A=∫−12[(x+2)−x2]dx A=[2x2+2x−3x3]−12 Evaluate at the upper bound (x=2): 24+4−38=2+4−38=310 Evaluate at the lower bound (x=−1): 21−2−(−31)=21−2+31=−67 Subtract the lower bound result from the upper bound result: A=310−(−67)=620+67=627=29
Example 2: Functions that Cross Over
Problem: Find the area enclosed by y=sinx and y=cosx on the interval [0,π].
Step 1: Find intersections. Set sinx=cosx. On the interval [0,π], this occurs at x=4π. Because the curves cross, the upper and lower functions will switch. We must split the integral into two parts: [0,4π] and [4π,π].
Step 2: Determine upper and lower functions for each interval.
- On [0,4π]: cosx≥sinx (e.g., at x=0, cos(0)=1, sin(0)=0).
- On [4π,π]: sinx≥cosx (e.g., at x=2π, sin(2π)=1, cos(2π)=0).
Step 3 & 4: Set up and evaluate the integrals.
First Region: A1=∫0π/4(cosx−sinx)dx=[sinx+cosx]0π/4 A1=(22+22)−(0+1)=2−1
Second Region: A2=∫π/4π(sinx−cosx)dx=[−cosx−sinx]π/4π A2=(−(−1)−0)−(−22−22)=1−(−2)=1+2
Total Area: A=A1+A2=(2−1)+(1+2)=22