Fiveable

Calculus IV Unit 10 Review

QR code for Calculus IV practice questions

10.1 Double integrals over non-rectangular regions

10.1 Double integrals over non-rectangular regions

Written by the Fiveable Content Team • Last updated August 2025
Written by the Fiveable Content Team • Last updated August 2025
Calculus IV
Unit & Topic Study Guides

Double integrals over non-rectangular regions let you compute areas, volumes, and other quantities when the domain of integration isn't a simple rectangle. This is where double integration becomes genuinely useful, since most real regions you'll encounter have curved or angled boundaries.

The core skill here is translating a geometric region into the correct limits of integration. That means classifying the region, identifying boundary functions, and writing the iterated integral with proper bounds.

Non-rectangular Regions

Region Types

A non-rectangular region is any region in the xyxy-plane that can't be described as a rectangle with sides parallel to the axes. To integrate over these regions, you describe them using functions as boundaries rather than constants.

There are two standard classifications:

  • Type I region: The xx-values range over a fixed interval axba \leq x \leq b, and for each xx, the yy-values are sandwiched between two continuous functions: g1(x)yg2(x)g_1(x) \leq y \leq g_2(x). Think of this as slicing the region with vertical lines. Each vertical slice starts at g1(x)g_1(x) (the bottom curve) and ends at g2(x)g_2(x) (the top curve).
  • Type II region: The yy-values range over a fixed interval cydc \leq y \leq d, and for each yy, the xx-values are bounded by h1(y)xh2(y)h_1(y) \leq x \leq h_2(y). Here you're slicing with horizontal lines. Each horizontal slice starts at h1(y)h_1(y) (the left curve) and ends at h2(y)h_2(y) (the right curve).

Some regions can be described as both Type I and Type II. Others fit naturally into only one type, or need to be split into subregions.

Sketching Regions

Sketching is not optional. It's how you figure out which type of region you're dealing with and what the boundary functions are. Here's the process:

  1. Plot each boundary curve in the xyxy-plane.
  2. Find the intersection points of the boundary curves to determine the limits on xx (or yy).
  3. Shade the enclosed region.
  4. Decide whether vertical slices (Type I) or horizontal slices (Type II) give cleaner bounds. If one variable's bounds would require splitting into multiple pieces, try the other order.
  5. Read off the boundary functions and their domains from the sketch.
Region Types, Double Integrals over General Regions · Calculus

Iterated Integrals Over Non-rectangular Regions

Setting Up Iterated Integrals

An iterated integral evaluates a double integral by integrating one variable at a time. The key difference from rectangular regions is that the inner limits of integration are now functions, not constants.

For a Type I region, you integrate yy first (inner integral), with limits that depend on xx, then integrate xx (outer integral) over constant limits:

abg1(x)g2(x)f(x,y)dydx\int_a^b \int_{g_1(x)}^{g_2(x)} f(x,y)\, dy\, dx

For a Type II region, you integrate xx first (inner integral), with limits that depend on yy, then integrate yy (outer integral) over constant limits:

cdh1(y)h2(y)f(x,y)dxdy\int_c^d \int_{h_1(y)}^{h_2(y)} f(x,y)\, dx\, dy

The outer integral always has constant limits. The inner integral has variable limits given by the boundary functions. Getting this backwards is one of the most common mistakes.

Region Types, Double Integrals over General Regions · Calculus

Fubini's Theorem

Fubini's Theorem guarantees that if f(x,y)f(x,y) is continuous over a closed, bounded region RR, then the double integral Rf(x,y)dA\iint_R f(x,y)\, dA can be evaluated as an iterated integral. If the region can be described as both Type I and Type II, you can choose either order of integration and get the same answer:

  • Type I: Rf(x,y)dA=abg1(x)g2(x)f(x,y)dydx\iint_R f(x,y)\, dA = \int_a^b \int_{g_1(x)}^{g_2(x)} f(x,y)\, dy\, dx
  • Type II: Rf(x,y)dA=cdh1(y)h2(y)f(x,y)dxdy\iint_R f(x,y)\, dA = \int_c^d \int_{h_1(y)}^{h_2(y)} f(x,y)\, dx\, dy

This flexibility matters. Sometimes one order of integration leads to an integral you can evaluate in closed form, while the other order does not. Choosing wisely can save you significant work.

Examples

Example 1 (Type I): Let R={(x,y)0x1,  x2yx}R = \{(x,y) \mid 0 \leq x \leq 1,\; x^2 \leq y \leq \sqrt{x}\}.

The region sits between the parabola y=x2y = x^2 (below) and the curve y=xy = \sqrt{x} (above), with xx running from 0 to 1. These curves intersect at (0,0)(0,0) and (1,1)(1,1). Vertical slices give clean bounds, so the iterated integral is:

01x2xf(x,y)dydx\int_0^1 \int_{x^2}^{\sqrt{x}} f(x,y)\, dy\, dx

Example 2 (Type II): Let R={(x,y)0y1,  yxy2+1}R = \{(x,y) \mid 0 \leq y \leq 1,\; y \leq x \leq y^2 + 1\}.

For each fixed yy, xx ranges from the line x=yx = y (left boundary) to the parabola x=y2+1x = y^2 + 1 (right boundary), with yy running from 0 to 1. Horizontal slices work naturally here:

01yy2+1f(x,y)dxdy\int_0^1 \int_y^{y^2+1} f(x,y)\, dx\, dy

Example 3 (Switching order): Suppose you need to evaluate 01x1ey2dydx\int_0^1 \int_x^1 e^{y^2}\, dy\, dx. The inner integral x1ey2dy\int_x^1 e^{y^2}\, dy has no elementary antiderivative in yy, so you can't evaluate it directly.

  1. Sketch the region: 0x10 \leq x \leq 1, xy1x \leq y \leq 1. This is the triangle above the line y=xy = x and below y=1y = 1.
  2. Rewrite as Type II: for each yy from 0 to 1, xx runs from 0 to yy.
  3. The switched integral is 010yey2dxdy\int_0^1 \int_0^y e^{y^2}\, dx\, dy.
  4. Now the inner integral is just 0yey2dx=yey2\int_0^y e^{y^2}\, dx = y\, e^{y^2}, which you can integrate in yy using substitution (u=y2u = y^2).

This is exactly the kind of situation where choosing the right order of integration makes the problem solvable.