Achievable logoAchievable logo
AP Calculus AB
Sign in
Sign up
Purchase
Textbook
Practice exams
Support
How it works
Exam catalog
Mountain with a flag at the peak
Textbook
Introduction
1. Limits
2. Derivative basics
3. Advanced differentiation
4. Contextual uses
5. Analytical uses
6. Integration
7. Differential equations
8. Applications of integrals
8.1 Average value of a function
8.2 Motion with integrals
8.3 Area between curves
8.4 Volume
9. Testing details tag
10. test
Wrapping up
Achievable logoAchievable logo
8.3 Area between curves
Achievable AP Calculus AB
8. Applications of integrals
Our AP Calculus AB course is currently in development and is a work-in-progress.

Area between curves

9 min read
Font
Discuss
Share
Feedback

What you’ll learn:

  • How to use definite integrals to find the area between two curves
  • When to integrate with respect to x or y
  • Handling curves that intersect multiple times

Recall that the definite integral can be used to represent area under a curve. When finding the area between curves, imagine slicing the region into many thin rectangles.

  • If the slices are vertical (parallel to the y-axis), integrate with respect to x.

  • If the slices are horizontal (parallel to the x-axis), integrate with respect to y.

Vertical slices

If f(x) is always above g(x) for all x on interval [a,b], then

Area=∫ab​(f(x)−g(x))dx

Just remember that f(x) is the top function, or

A=∫ab​(Top function - bottom function)dx

Examples

Often times you’ll have to first find the intersection points to determine the interval.

1. Find the area of the region bounded by y=x2 and y=x+2.

Solution

Find where the two curves intersect by setting them equal:

x2=x+2

x2−x−2=0

(x+1)(x−2)=0

x=−1,2

Between x=−1 and x=2, the curve y=x+2 is always above/greater than the curve y=x2, so the area can be found by

A=∫−12​(x+2−x2)dx

Evaluating,

A=2x2​+2x−3x3​​−12​

=29​​

AP tip:

The area of a region bounded by two curves is always positive (no net signed area) so if you arrive at a negative answer, re-check the integral set-up.

2. Find the area of the region bounded above by the curves y=x3 and y=2−x and below by y=x2−2x.

Solution

(spoiler)

Make sure to choose the correct region described in the problem:

Using vertical slices to find the area of a region
Using vertical slices to find the area of a region

The region must be split into 2 integrals

  1. Blue: On the interval [0,1], the region is formed by top function y=x3 and bottom function y=x2−2x
  2. Green: On the interval [1,2], the top function is y=2−x and the bottom one is y=x2−2x again.

Then the total area is

∫01​(x3−(x2−2x))dx+∫12​(2−x−(x2−2x))dx

Integrate carefully (or use Desmos) to get

A=1225​​

Horizontal slices

Sometimes it’s easier to find the area by slicing the region into horizontal rectangles and integrating with respect to y. For example, take a look at the region bounded by the two curves

x=y2

y=−x+2

Using horizontal slices to find the area would be easier
Using horizontal slices to find the area would be easier

Notice that from x=0 to x=1, the region is bound by only the parabola x=y2. In terms of x, the top function is y=x​ and the bottom one is y=−x​.

On the other hand, from x=1 to x=4, the top function is the line y=−x+2 while the bottom function is the lower half of x=y2, or y=−x​.

We could set up the integral as such:

∫01​(x​−(−x​)dx+∫14​(−x+2−(−x​)dx

But this quickly becomes tedious for more complicated functions. Instead, if we choose to slice the region into horizontal rectangles, then the area can be found by integrating with respect to y:

Given two curves x=f(y) and x=g(y) where f(y)≥g(y) for all y in [c,d],

Area=∫y=cy=d​(f(y)−g(y))dy

Just remember that f(y) is the rightmost function, or

A=∫cd​(Right function - left function)dy

Examples

Let’s redo the problem presented above.

1. Find the area of the region bounded by x=y2 and y=−x+2.

Solution

Rewrite y=−x+2 to be a function of y:

x=2−y

As shown on the graph, the line x=2−y is the right function while the parabola x=y2 is the left function. Finding the intersection points algebraically,

2−y=y2

y2+y−2=0

(y−1)(y+2)=0

y=1,−2

So the interval to integrate over is from y=−2 to y=1. The area is

∫−21​(2−y−y2)dy

=29​​

2. Let R be the region bounded above by the curves y=x1​−1 and y=2x and below by the x-axis. Find the area of R in two ways:

a) Vertical slices
b) Horizontal slices

Solutions

a) Vertical slices

(spoiler)

Region R is as shown:

Region R
Region R

The curve y=x1​−1 intersects the x-axis at

x1​−1=0

x1​=1

x=1

The line y=2x crosses the x-axis at x=0.

The curve and the line intersect at

x1​−1=2x

1−x=2x2

2x2+x−1=0

(x+1)(2x−1)=0

x=−1,0.5

We only need the intersection point that’s involved in region R, or x=0.5.

Using vertical slices and integrating with respect to x, region R has area

A=∫00.5​(2x)dx+∫0.51​(x1​−1)dx

=x2​00.5​+[ln(x)−x]​0.51​

=[(0.5)2−02]+[(ln(1)−1)−(ln(0.5)−0.5)]

≈0.443​

b) Horizontal slices

(spoiler)

Rewriting the two functions in terms of y,

  1. Line y=2x becomes x=21​y and is the left function.
  2. Rational function y=x1​−1 is the right function and becomes

y=x1​−1

y+1=x1​

x(y+1)=1

x=y+11​

The x-axis y=0 becomes the lower bound of integration, while the intersection point between the line and the rational function is the upper bound.

Previously, we found the two curves to intersect at x=0.5 for region R. This corresponds to y=1. So the integral setup for the area is

∫01​(y+11​−21​y)dy

=ln∣y+1∣−41​y2​01​

=[ln(2)−41​(1)2)]−[ln(1)−41​(0)2]

≈0.443

Multiple intersection points

Over an interval, functions can switch from being the top function to the bottom one or from left to right.

Find the area of the region bounded by y=sin(x) and y=cos(x) from x=0 to x=π.

Solution

Here’s the region to find the area of:

Switching top and bottom
Switching top and bottom

Over the interval [0,π],sin(x) and cos(x) meet at x=4π​. Before that intersection point, cos(x) is the top function and after that, it becomes the bottom function. So the integral set-up is

∫0π/4​(cos(x)−sin(x))dx+∫π/4π​(sin(x)−cos(x))dx

=(sin(x)+cos(x))​0π/4​+(−cos(x)−sin(x))​π/4π​

[(sin(π/4)+cos(π/4))−(sin(0)+cos(0))]+[(−cos(π)−sin(π))−(−cos(π/4)−sin(π/4))]

=22​​

On a calculator-allowed problem, you can also enter the split integral as a single one involving an absolute value function:

∫0π​∣sin(x)−cos(x)∣dx

Sign up for free to take 5 quiz questions on this topic

All rights reserved ©2016 - 2026 Achievable, Inc.