Fiveable

Calculus IV Unit 9 Review

QR code for Calculus IV practice questions

9.2 Evaluation of double integrals over rectangles

9.2 Evaluation of double integrals over rectangles

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

Iterated Integrals

Double integrals over rectangles let you calculate quantities like area and volume by breaking a two-variable problem into two one-variable integrals. You evaluate them one at a time: compute the inner integral first, then feed that result into the outer integral.

Definition and Notation

An iterated integral is written as:

abcdf(x,y)dydx\int_a^b \int_c^d f(x,y)\, dy\, dx

You can also write it with explicit parentheses to make the evaluation order clearer:

ab(cdf(x,y)dy)dx\int_a^b \left(\int_c^d f(x,y)\, dy\right) dx

Here's how to evaluate one:

  1. Inner integral first. Integrate f(x,y)f(x,y) with respect to yy from cc to dd, treating xx as a constant. This produces a function of xx alone.
  2. Outer integral second. Integrate that result with respect to xx from aa to bb. This gives you a number.

Quick example: Evaluate 0102xy2dydx\int_0^1 \int_0^2 xy^2\, dy\, dx.

  1. Inner integral (with respect to yy, treating xx as constant):

02xy2dy=xy3302=x83=8x3\int_0^2 xy^2\, dy = x \cdot \frac{y^3}{3}\Big|_0^2 = x \cdot \frac{8}{3} = \frac{8x}{3}

  1. Outer integral (with respect to xx):

018x3dx=83x2201=43\int_0^1 \frac{8x}{3}\, dx = \frac{8}{3} \cdot \frac{x^2}{2}\Big|_0^1 = \frac{4}{3}

Types of Limits of Integration

  • Constant limits are fixed values that don't depend on the other variable. The example above, 0102xy2dydx\int_0^1 \int_0^2 xy^2\, dy\, dx, has all constant limits. This is the standard setup for rectangular regions.
  • Variable limits depend on the outer variable. For instance, 010xy2dydx\int_0^1 \int_0^x y^2\, dy\, dx has an upper limit of xx on the inner integral, meaning the range of yy changes as xx changes.
  • Variable limits show up when the region of integration is not a rectangle. For this unit (rectangular regions), you'll mostly work with constant limits on both integrals.
Definition and Notation, HartleyMath - Double Integrals over Rectangular Regions

Reversing Order of Integration

Swapping the Order of Integration

For rectangular regions with constant limits, Fubini's Theorem guarantees that you can swap the order of integration freely, as long as f(x,y)f(x,y) is continuous on the rectangle:

abcdf(x,y)dydx=cdabf(x,y)dxdy\int_a^b \int_c^d f(x,y)\, dy\, dx = \int_c^d \int_a^b f(x,y)\, dx\, dy

This is useful when one order leads to a much simpler antiderivative than the other. When you reverse the order:

  • The old inner limits become the new outer limits (and vice versa).
  • The differentials swap: dydxdy\, dx becomes dxdydx\, dy.

For non-rectangular regions (variable limits), reversing the order requires you to re-derive the limits from the geometry of the region, which is more involved.

Definition and Notation, HartleyMath - Double Integrals over Rectangular Regions

Visualizing the Change of Order

Think of the two orders as slicing the region in different directions:

  • dydxdy\, dx order: You slice the region into thin vertical strips. For each fixed xx, you integrate along yy (bottom to top), then sweep those strips from left to right.
  • dxdydx\, dy order: You slice into thin horizontal strips. For each fixed yy, you integrate along xx (left to right), then sweep those strips from bottom to top.

Both approaches cover the same region and yield the same answer. The choice comes down to which integrand is easier to handle in a given order.

Applications of Double Integrals

Area Calculation

To find the area of a planar region RR, integrate the constant function 1 over that region:

Area=R1dA\text{Area} = \iint_R 1\, dA

Example: Find the area of the region bounded by y=x2y = x^2 and y=4y = 4.

The curves intersect where x2=4x^2 = 4, so x=2x = -2 and x=2x = 2. Using symmetry (or just integrating from 2-2 to 22), set up:

22x24dydx\int_{-2}^{2} \int_{x^2}^{4} dy\, dx

The inner integral gives 4x24 - x^2, and then 22(4x2)dx=323\int_{-2}^{2}(4 - x^2)\, dx = \frac{32}{3}.

Note: this particular example uses variable limits, so it goes beyond a purely rectangular region. On a rectangle like [a,b]×[c,d][a,b] \times [c,d], the area is simply (ba)(dc)(b-a)(d-c).

Volume Calculation

The most common application over rectangles is computing volume. If a surface z=f(x,y)0z = f(x,y) \geq 0 sits above a rectangular base R=[a,b]×[c,d]R = [a,b] \times [c,d], the volume of the solid between the surface and the xyxy-plane is:

V=Rf(x,y)dAV = \iint_R f(x,y)\, dA

Here f(x,y)f(x,y) gives the height of the surface above each point (x,y)(x,y) in the base.

Example: Find the volume under z=xyz = xy over the rectangle [0,2]×[0,1][0,2] \times [0,1].

  1. Set up the integral: 0201xydydx\int_0^2 \int_0^1 xy\, dy\, dx
  2. Inner integral: 01xydy=xy2201=x2\int_0^1 xy\, dy = x \cdot \frac{y^2}{2}\Big|_0^1 = \frac{x}{2}
  3. Outer integral: 02x2dx=x2402=1\int_0^2 \frac{x}{2}\, dx = \frac{x^2}{4}\Big|_0^2 = 1

The volume is 11 cubic unit. You can verify this by reversing the order of integration and confirming you get the same result.