# Area between curves expressed as functions of x

> AP Calculus BC · Applications of Integration (Unit 8)
> Source: https://www.owlsprep.com/study/ap-calculus-bc-u8-area-between-curves-expressed-as/

This guide covers calculating area between two curves expressed as functions of $x$, including finding intersection bounds, handling crossing curves, distinguishing total vs net area, and common AP exam mistakes. Worked examples illustrate all core problem types.

**Prerequisites:** Definite integration of polynomial, trigonometric, and transcendental functions; Finding intersection points of two functions by solving algebraic equations; Fundamental Theorem of Calculus Part 2 for evaluating definite integrals

## Learning objectives

- Derive the area formula for two functions of x from Riemann sums
- Find intersection points to determine integration bounds
- Calculate area over fixed intervals and between intersecting curves
- Distinguish total geometric area from net signed area for crossing curves
- Avoid common exam pitfalls in area calculation problems

## Core Concept of Area Between Two Curves

This is a core, frequently tested application of definite integration, making up 10-15% of Unit 8 exam weight for AP Calculus BC, appearing in both multiple-choice and free-response sections annually. Intuitively, it is the total non-negative 2D space bounded above by $y=f(x)$ and below by $y=g(x)$, generalizing the concept of area under a curve (which is just area between a curve and $y=0$).

The core reasoning comes from Riemann sums: we split the region into infinitely many thin vertical rectangles of width $dx$, calculate each rectangle's area as height × width, then sum all areas via integration.

**Area between two curves (functions of x)** — The total non-negative geometric area bounded by two curves expressed as $y = f(x)$ and $y = g(x)$ over an interval of $x$-values, calculated by summing the areas of thin vertical rectangles spanning from the lower to upper curve.

*Notation:* $A = \int_a^b [f_{\text{top}}(x) - f_{\text{bottom}}(x)] dx$

*Calculator:* allowed

## Area Over a Fixed Interval

The simplest case is when you are given a pre-defined interval $[a, b]$, and one function is always greater than or equal to the other across the entire interval. The formula comes from taking the limit of a Riemann sum approximation:

$$A = \int_a^b \left[ f_{\text{top}}(x) - f_{\text{bottom}}(x) \right] dx$$

Area is always non-negative, so the order of subtraction is critical. This formula works regardless of where the curves are relative to the x-axis: if both are below the x-axis, the difference between the higher (less negative) and lower (more negative) function is still positive, so you will get a positive area.

**Worked example:** Find the area of the region bounded by $f(x) = 3x + 1$ and $g(x) = x^2$ on the interval $[0, 3]$.

1. First confirm which function is upper on $[0, 3]$. Test $x=1$: $f(1)=4$, $g(1)=1$, so $f(x) > g(x)$ across the entire interval.
2. Identify bounds $a=0$, $b=3$, $f_{\text{top}} = 3x+1$, $f_{\text{bottom}} = x^2$.
3. Set up the integral:
4. $$A = \int_0^3 \left[(3x + 1) - x^2\right] dx = \int_0^3 \left(-x^2 + 3x + 1\right) dx$$
5. Find the antiderivative:
6. $$F(x) = -\frac{x^3}{3} + \frac{3x^2}{2} + x$$
7. Evaluate using FTC Part 2: $F(3) = -9 + 13.5 + 3 = 7.5 = \frac{15}{2}$, and $F(0)=0$, so $A = \frac{15}{2}$.

> **Exam tip:** If you are unsure which function is upper, always test at least one point in the interval before setting up the integral. This 2-second check eliminates the most common 1-point deduction on the AP exam: swapping upper and lower functions.

*Calculator:* allowed

## Area of Closed Regions with Intersection Bounds

In most AP problems, you will not be given a pre-defined interval. Instead, you must first find the bounds of integration by calculating where the two curves intersect. For two continuous curves that form a single closed region, they will intersect exactly twice, so the two x-coordinates of intersection are your lower and upper bounds of integration. After finding intersections, you still confirm which function is upper between the bounds, then apply the basic area formula just as you would for a fixed interval.

**Worked example:** Find the area of the closed region bounded by $y = 3x$ and $y = x^2 - 2x$.

1. Find intersections by setting the functions equal, rearrange all terms to one side:
2. $$3x = x^2 - 2x \implies x^2 - 5x = 0 \implies x(x - 5) = 0$$
3. Intersections are at $x=0$ and $x=5$, which are our integration bounds.
4. Test a point between 0 and 5 ($x=1$): $y=3(1)=3$, $y=1 - 2 = -1$, so $y=3x$ is the upper function.
5. Set up and evaluate the integral:
6. $$A = \int_0^5 \left[3x - (x^2 - 2x)\right] dx = \int_0^5 \left(5x - x^2\right) dx = \left[\frac{5x^2}{2} - \frac{x^3}{3}\right]_0^5 = \frac{125}{6}$$

> **Exam tip:** Never divide both sides of the intersection equation by a variable (e.g. $x$) to simplify. This eliminates the $x=0$ root, leading to incorrect bounds. Always move all terms to one side and factor instead.

*Calculator:* allowed

## Total Area for Curves That Cross Multiple Times

If two curves intersect more than once between the outermost bounds, the upper and lower functions swap places at each intersection. Because area is always non-negative, integrating the difference of the original functions across the entire interval will give net signed area, where areas below the original upper function cancel out positive areas, which is not the total geometric area that almost all AP questions ask for.

> **info**
>
> Instead, you split the interval at every intersection, calculate the area for each subinterval with the correct upper/lower function for that interval, then add all areas together to get total geometric area.

**Worked example:** Find the total area between $f(x) = x$ and $g(x) = x^3 - x$ on the interval $[0, 2]$.

1. Find all intersections on $[0,2]$ by setting functions equal:
2. $$x = x^3 - x \implies x^3 - 2x = 0 \implies x(x^2 - 2) = 0$$
3. Intersections are at $x=0$ and $x=\sqrt{2} \approx 1.414$, so we split the interval into $[0, \sqrt{2}]$ and $[\sqrt{2}, 2]$.
4. Check upper/lower: $f(x)$ is upper on $[0, \sqrt{2}]$, $g(x)$ is upper on $[\sqrt{2}, 2]$. Set up the sum of integrals:
5. $$A = \int_0^{\sqrt{2}} \left[x - (x^3 - x)\right] dx + \int_{\sqrt{2}}^2 \left[(x^3 - x) - x\right] dx = \int_0^{\sqrt{2}} (2x - x^3) dx + \int_{\sqrt{2}}^2 (x^3 - 2x) dx$$
6. Evaluate each integral: First integral = $1$, Second integral = $1$. Total area $A = 1 + 1 = 2$.

**Check your understanding**

Test your understanding with this AP-style multiple choice question:

1. What is the area of the region bounded by $y = e^x$ and $y = x$ between $x=0$ and $x=1$?

   - A) $e - \frac{3}{2}$
   - B) $e - 1$
   - C) $\frac{3}{2} - e$
   - D) $e + \frac{1}{2}$

   *Why:* Correct! Confirm $e^x > x$ on $[0,1]$, set up $A = \int_0^1 (e^x - x) dx = \left(e^x - \frac{x^2}{2}\right)_0^1 = \left(e - \frac{1}{2}\right) - 1 = e - \frac{3}{2}$.

> **Exam tip:** If a question asks for 'total area', it always requires splitting the integral at every crossing. Only if it explicitly asks for 'net area' do you not split the integral.

*Calculator:* allowed

## Common pitfalls

- **Wrong:** Dividing both sides of an intersection equation like $4x = x^2 - 3x$ by $x$, getting only $x=7$ as a solution and missing $x=0$.
  - Why it fails: Dividing by a variable eliminates the $x=0$ root, which is a valid solution when $x$ is a common factor.
  - Correct: Always rearrange the intersection equation to bring all terms to one side, then factor out common terms instead of dividing.
- **Wrong:** Integrating $f(x) - g(x)$ across the entire interval when curves cross, getting a smaller or negative total area.
  - Why it fails: This calculates net signed area, not total geometric area, which is what almost all AP area questions request.
  - Correct: Find all intersections in the interval, split the integral at every intersection, and always subtract lower from upper in each subinterval.
- **Wrong:** For two curves below the x-axis, subtracting the less negative (higher) function from the more negative (lower) function, getting a negative difference.
  - Why it fails: Students incorrectly assume upper functions must be positive, so they mix up the order of subtraction.
  - Correct: Higher y-values are always upper, regardless of sign. Subtract the lower (more negative) y-value from the upper (less negative) y-value to get a positive difference.
- **Wrong:** Using the y-coordinates of intersection points as bounds of integration for functions of x.
  - Why it fails: Confuses x and y coordinates of intersections, mixing up area with respect to x and area with respect to y.
  - Correct: When calculating area for functions of x, bounds of integration are always the x-coordinates of intersection points.
- **Wrong:** When finding area bounded by three curves, using only the outermost intersections as bounds and not checking for upper function changes between them.
  - Why it fails: Students assume only intersections on the outer edge of the region matter, but internal intersections can swap upper/lower functions.
  - Correct: Find all intersections between every pair of bounding curves, sort them by x-value, and test upper/lower for each consecutive subinterval.

## Cheatsheet

| Category | Formula | Notes |
| --- | --- | --- |
| Basic Area (fixed interval, constant upper/lower) | $A = \int_a^b [f_{\text{top}}(x) - f_{\text{bottom}}(x)] dx$ | Always non-negative; works for any sign of top/bottom, as long as top ≥ bottom on $[a,b]$ |
| Find intersection bounds | Set $f(x) = g(x)$, solve for $x$ | Sort solutions smallest to largest; move all terms to one side to factor, don't divide by $x$ to avoid losing roots |
| Total area for crossing curves | $A = \sum \int_{x_i}^{x_{i+1}} (\text{top} - \text{bottom}) dx$ | Split at every intersection; required for geometric total area, which is what most AP questions ask |
| Net area between crossing curves | $A = \int_a^b (f(x) - g(x)) dx$ | Only for net signed area; negative areas cancel positive areas, so answer can be zero or negative |
| Total area between one curve and x-axis | $A = \int_a^b \|f(x)\| dx = \sum \int (\text{top} - \text{bottom}) dx$ | Split at all x-intercepts; lower function is $y=0$ |
| Area under one curve above x-axis | $A = \int_a^b f(x) dx$ | Just area between $f(x)$ and $y=0$ |

## What's next

Mastering area between curves expressed as functions of x is the foundation for all other area and volume applications in Unit 8 of AP Calculus BC. This topic uses core integration logic that transfers directly to every other application of integration you will learn next, so building confidence here eliminates errors in more complex topics later. Next, you will adapt this same reasoning to calculate area between curves expressed as functions of y, which swaps the roles of x and y and requires integration with respect to y. This topic also directly underpins the calculation of volumes of revolution, volumes of known cross-sections, and arc length, all major weighted topics on the AP Calculus BC exam.

- [Area between curves intersecting more than twice](https://www.owlsprep.com/study/ap-calculus-bc-u8-area-between-curves-intersecting-more/)
- [Volumes with cross sections: squares and rectangles](https://www.owlsprep.com/study/ap-calculus-bc-u8-volumes-with-cross-sections-squares/)
- [Volumes with cross sections: triangles and semicircles](https://www.owlsprep.com/study/ap-calculus-bc-u8-volumes-with-cross-sections-triangles/)

---

From [OwlsPrep](https://www.owlsprep.com) — free study guides for A-Level, IB, AP and IGCSE, written against the official syllabus. Canonical page: https://www.owlsprep.com/study/ap-calculus-bc-u8-area-between-curves-expressed-as/
