Iterated Integrals

2 min read Last updated Sat Jun 27 2026 08:46:52 GMT+0000 (Coordinated Universal Time)

An iterated integral evaluates a double integral one variable at a time.

For ff defined on R=[a,b]×[c,d]R = [a,b] \times [c,d]:

abcdf(x,y)  dydx\int_a^b \int_c^d f(x,y)\;\text{d}y\,\text{d}x

The inner integral is computed first, treating xx as a constant. The result is a function of xx alone.

Fubini’s Theorem

If ff is continuous on R=[a,b]×[c,d]R = [a,b] \times [c,d], then:

Rf(x,y)dA=abcdf(x,y)  dydx=cdabf(x,y)  dxdy\iint_R f(x,y)\,\text{d}A = \int_a^b \int_c^d f(x,y)\;\text{d}y\,\text{d}x = \int_c^d \int_a^b f(x,y)\;\text{d}x\,\text{d}y

The order of integration can be swapped freely.

Order Reversal

For non-rectangular regions, limits depend on variables. Swapping integration order requires re-expressing the region’s bounds.

For the region {(x,y):axb,  g1(x)yg2(x)}\{(x, y) : a \leq x \leq b,\; g_1(x) \leq y \leq g_2(x)\}:

  1. Find the full range of yy: cydc \leq y \leq d.
  2. For fixed yy, find the range of xx: h1(y)xh2(y)h_1(y) \leq x \leq h_2(y).
  3. Rewrite: cdh1(y)h2(y)f(x,y)  dxdy\displaystyle\int_c^d \int_{h_1(y)}^{h_2(y)} f(x,y)\;\text{d}x\,\text{d}y.

For the triangular region {0y1,  yx1}\{0 \leq y \leq 1,\; y \leq x \leq 1\}:

01y1f(x,y)  dxdy=010xf(x,y)  dydx\int_0^1 \int_y^1 f(x,y)\;\text{d}x\,\text{d}y = \int_0^1 \int_0^x f(x,y)\;\text{d}y\,\text{d}x

Both integrals cover the triangle {0x1,  0yx}\{0 \leq x \leq 1,\; 0 \leq y \leq x\}.

Example

010xy  dydx\int_0^1 \int_0^x y\;\text{d}y\,\text{d}x

Inner integral:

0xy  dy=[y22]0x=x22\int_0^x y\;\text{d}y = \left[\frac{y^2}{2}\right]_0^x = \frac{x^2}{2}

Outer integral:

01x22  dx=[x36]01=16\int_0^1 \frac{x^2}{2}\;\text{d}x = \left[\frac{x^3}{6}\right]_0^1 = \frac{1}{6}
Was this helpful?