Method guideCalculus IFoundational9 min read

Area between curves without guessing top and bottom

Find intersections, choose a slice direction, and integrate the positive geometric difference across each interval.

A=ab(topbottom)dxA=\int_a^b(\text{top}-\text{bottom})\,dx
Method guide

How to recognize the method, run it, and know when it is the wrong choice.

Reviewed July 11, 2026
SetupStart here

Sketch or compare function values after finding intersections. If the ordering changes, split the integral where the curves cross.

01

Bounds come from intersections

Solve f(x) = g(x) to locate the region’s horizontal extent. A picture alone may hide an intersection or suggest an inaccurate bound.

Use test points between intersections to determine which curve is above.

02

Vertical or horizontal slices

Vertical slices use top minus bottom and dx. Horizontal slices use right minus left and dy. Choose the direction that describes the region with fewer pieces.

The integral adds thin rectangle areas, so every factor should have a geometric role.

03

Geometric area stays nonnegative

A signed integral can be negative when the order is reversed. Area requires a nonnegative difference on each subinterval, or an absolute value handled by splitting at crossings.

Worked exampleParabola and line

Find the area between y = x and y = x² on [0, 1].

1x=x2x=0,1x=x^2\Longrightarrow x=0,1

Confirm the intersections.

2xx2on [0,1]x\ge x^2\quad\text{on }[0,1]

The line is the top function.

3A=01(xx2)dxA=\int_0^1(x-x^2)\,dx

Integrate top minus bottom.

ResultA=16\boxed{A=\frac16}
Watch for

Common mistakes

  1. Choosing bounds from the drawing without solving intersections.
  2. Using bottom minus top and reporting a negative area.
  3. Failing to split where the curve order changes.
Keep

Three takeaways

  1. Intersections determine natural bounds.
  2. Slice direction determines top/bottom or right/left.
  3. Area is geometric and nonnegative.