Multiple Integrals
Multiple integrals extend accumulation to regions in the plane and solids in space. A double integral adds contributions over area. A triple integral adds contributions over volume. The same slice-and-sum idea from single-variable integration remains, but the geometry of the region becomes more important.
These integrals compute volume, mass, charge, probability, average value, and moments. They also prepare for vector calculus, where flux and circulation compare integrals over regions, surfaces, and boundaries.
Definitions
The double integral of over a region is
If , it represents volume under the surface above .
An iterated integral over a type I region
is
A triple integral over a solid is
In polar coordinates,
In cylindrical coordinates,
In spherical coordinates,
and
Key results
Fubini's Theorem says that if is continuous on a rectangular region, then a double integral can be evaluated as an iterated integral in either order:
For nonrectangular regions, reversing order requires rewriting the bounds. This is often the hardest part of the problem.
The average value of over a region is
Mass with density over a lamina is
Moments are
The center of mass is
The Jacobian factor is essential in coordinate changes. Polar coordinates use because a small polar rectangle has area approximately . Spherical coordinates use because the small volume element expands with radius and angle.
Symmetry can simplify multiple integrals. If a density or integrand is odd over a symmetric region, the integral may be zero. If the region and integrand are radially symmetric, polar, cylindrical, or spherical coordinates often reduce the algebra.
Changing the order of integration is a geometric skill. The original bounds describe the region in one slicing direction. To reverse the order, draw or describe the same region with the other variable as the outer variable. For a triangle, this often means solving a boundary line for the other variable. For regions bounded by curves, it may require splitting into pieces.
A double integral can also represent area:
A triple integral can represent volume:
These formulas are useful because complicated regions may be easier to measure by integration than by elementary geometry.
For probability densities, a nonnegative function over a region has total probability
Expected values are weighted integrals, such as
This is the same center-of-mass idea with probability replacing physical mass.
Coordinate changes require both new bounds and the Jacobian. It is not enough to replace with ; the area element changes too. The factor in polar coordinates reflects the fact that equal angle increments cover larger arc lengths farther from the origin.
In spherical coordinates, convention matters. Here is measured down from the positive -axis and is measured in the -plane. Some fields use a different convention, so formulas should always be matched to the notation in the problem.
Triple integrals require the same region-first thinking. A solid under a surface might be described by over a base region . A solid between two surfaces might use . For cylindrical or spherical solids, the angular and radial bounds often describe the shape more simply than Cartesian inequalities.
The order of integration can change difficulty dramatically. An integral such as
is hard in the given order because has no elementary antiderivative in . Reversing the triangular region gives
which is easier because the inner integral is with respect to .
Moments of inertia are another application. For a lamina with density , the moment of inertia about the -axis is
and about the -axis is
The extra squared distance factor weights mass farther from the axis more heavily.
Bounds should be checked by projecting the region. In a double integral, the outer bounds describe the shadow of the region on one axis. In a triple integral, one common approach is to project the solid onto a coordinate plane, describe that base region, and then give lower and upper bounds for the third variable.
Visual
| Coordinates | Best for | Area/volume element |
|---|---|---|
| Cartesian | boxes, triangles, simple graphs | , |
| Polar | disks, sectors, circles | |
| Cylindrical | cylinders and vertical symmetry | |
| Spherical | balls, cones, radial symmetry |
Worked example 1: double integral over a triangle
Problem. Evaluate
where is the triangle bounded by , , and .
Method.
- Describe the region:
- Set up the iterated integral:
- Integrate with respect to :
- Substitute :
- Simplify:
- Integrate with respect to :
Checked answer. The double integral is .
Worked example 2: polar integral over a disk
Problem. Evaluate
where is the disk .
Method.
- Use polar coordinates because the region is circular:
- The disk has bounds
- Substitute into the integral:
- Combine powers:
- Integrate in :
- Integrate in :
Checked answer. The value is . The extra factor in is necessary; without it the answer would have the wrong geometry.
The answer can be checked using average value. Over a disk of radius , the average value of is
So the integral equals average value times area , giving again.
This example also shows why polar coordinates are natural for radial functions. The integrand and the region both simplify in polar form, so the only added complexity is the Jacobian factor .
For a noncircular region, polar coordinates may make bounds harder rather than easier. The coordinate system should be chosen because it simplifies the region, the integrand, or both. A disk, annulus, sector, cone, sphere, or cylinder usually signals a polar-type coordinate system; a rectangle or box usually favors Cartesian coordinates.
Multiple integrals also support bounding estimates. If on , then
This is useful for checking signs and approximate sizes before doing detailed computation.
For triple integrals, the analogous bound uses volume:
These estimates are not usually the final answer, but they catch errors such as missing Jacobian factors, reversed bounds, or impossible negative values for positive integrands before the calculation becomes too long to audit line by line with confidence later on.
They also help compare numerical approximations and exact answers reliably later too.
Code
def midpoint_double(f, ax, bx, ay_func, by_func, nx=200, ny=200):
hx = (bx - ax) / nx
total = 0.0
for i in range(nx):
x = ax + (i + 0.5) * hx
ay = ay_func(x)
by = by_func(x)
hy = (by - ay) / ny
for j in range(ny):
y = ay + (j + 0.5) * hy
total += f(x, y) * hx * hy
return total
print(midpoint_double(lambda x, y: x + 2*y, 0, 1, lambda x: 0, lambda x: 1 - x))
Common pitfalls
- Forgetting the Jacobian factor or .
- Reversing order of integration without rewriting bounds.
- Describing a triangular or circular region as if it were a rectangle.
- Integrating in polar coordinates but leaving unchanged instead of converting to .
- Using and inconsistently in spherical coordinates.
- Treating average value as the integral instead of dividing by area or volume.
Connections
- Applications of Integrals: multiple integrals generalize area, volume, mass, and average value.
- Partial Derivatives and the Gradient: surfaces integrated over regions are functions of several variables.
- Vector Calculus: Green's and Divergence Theorems connect multiple integrals to boundary integrals.
- Vectors and Geometry of Space: coordinate geometry supports bounds and changes of variables.