Triple integrals extend double integrals into three dimensions, letting you compute volumes, masses, and other properties of 3D regions. Setting them up correctly requires understanding the geometry of the region and choosing the right coordinate system and integration order.
Rectangular and General Regions
Defining Rectangular and General Regions
A rectangular region (also called a box region) has constant limits on every variable. This is the simplest case because the bounds don't depend on each other, so you can integrate in any order.
Here are all constants. The region is literally a rectangular box in 3D space.
A general region has at least some limits that are functions of the other variables. This means the shape of the region changes as you move along one or more axes, so the order of integration matters.
The key rule: a variable's limits can only depend on variables that appear in outer integrals. In the expression above, the -limits can depend on and (both integrated outside), and the -limits can depend on (integrated outermost), but the -limits must be constants.
Classifying General Regions
General regions are classified by which variable has the "dependent" bounds. The classification determines which variable you should integrate first (innermost).
- Type 1 (z-simple): The region is bounded above and below by surfaces and . You integrate first, then project the region onto the -plane to find the remaining bounds.
- Type 2 (y-simple): The region is bounded by surfaces and . You integrate first, then project onto the -plane.
- Type 3 (x-simple): The region is bounded by surfaces and . You integrate first, then project onto the -plane.
Many regions can be described as more than one type. Choosing the right type often makes the integral much easier to evaluate.

Coordinate Systems
Cylindrical Coordinates
Cylindrical coordinates are the natural choice when the region has symmetry around the -axis (think: cylinders, cones, paraboloids centered on the -axis).
- is the distance from the -axis in the -plane ()
- is the angle in the -plane, measured counterclockwise from the positive -axis
- is the same vertical coordinate as in rectangular
Conversion formulas:
The volume element picks up a factor of :
That extra comes from the Jacobian of the transformation and must always be included.

Spherical Coordinates
Spherical coordinates work best for regions with symmetry about the origin (spheres, cones, hemispheres).
- is the distance from the origin ()
- is the same azimuthal angle as in cylindrical (angle in the -plane)
- is the polar angle measured down from the positive -axis ()
Conversion formulas:
The volume element is:
The factor is the Jacobian for this transformation. Forgetting it is one of the most common mistakes on exams.
Integration Techniques
Jacobian and Change of Variables
The Jacobian is the determinant of the matrix of partial derivatives for a coordinate transformation. It tells you how volume elements scale when you switch coordinate systems.
For a transformation , the change of variables theorem says:
The absolute value of the Jacobian determinant replaces the volume element. For the standard coordinate systems:
- Cylindrical: Jacobian = , so
- Spherical: Jacobian = , so
You can also define custom transformations for regions that don't fit standard systems. The process is the same: compute the Jacobian matrix, take its determinant, and multiply the integrand by the absolute value.
Determining Bounds of Integration
Setting up the correct bounds is usually the hardest part of a triple integral. Here's a systematic approach:
- Sketch the region (or at least identify its bounding surfaces).
- Choose a coordinate system based on the geometry. Cylindrical symmetry suggests cylindrical coordinates; spherical symmetry suggests spherical.
- Pick the innermost variable and find its bounds in terms of the remaining variables by solving for where the region starts and ends along that direction.
- Project the region onto the plane of the two remaining variables. This projection gives you a 2D region to set up as a double integral.
- Find the bounds for the middle variable in terms of the outermost variable.
- The outermost variable always has constant bounds.
Example: For a sphere of radius centered at the origin, spherical coordinates give constant bounds on every variable:
In rectangular coordinates, the same sphere would require variable bounds ( depends on and , etc.), making the integral much harder. This is exactly why choosing the right coordinate system matters so much.