No history yet

Three Dimensional Cartesian Integrals

Beyond Area: Integrals in 3D

You're familiar with how double integrals can find the area of a 2D region or the volume under a 3D surface. A triple integral takes the next logical step: it sums up the values of a function throughout a three-dimensional volume. Instead of chopping a region into tiny rectangles, we chop a solid object into tiny boxes.

The general form of a triple integral over a solid region EE looks like this:

Ef(x,y,z)dV\iiint_E f(x, y, z) \,dV

Just as a double integral of f(x,y)=1f(x,y)=1 gives the area of a region, a triple integral of f(x,y,z)=1f(x,y,z)=1 gives the volume of a solid. If f(x,y,z)f(x,y,z) represents the density of a substance at a point (x,y,z)(x,y,z), the triple integral gives the total mass of the object.

Tackling General Regions

Most objects aren't simple boxes. For a general solid, the limits of integration become functions. The key is to describe the solid's boundaries systematically. The most common approach is to set up the integral in the order dzdydxdz \,dy \,dx. This treats the solid as a stack of infinitesimally thin columns.

Here’s the step-by-step process:

  1. Find the z-bounds: Imagine a vertical line passing through the solid. The lower surface it enters is your lower z-bound, z=g1(x,y)z = g_1(x,y), and the upper surface it exits is your upper z-bound, z=g2(x,y)z = g_2(x,y).
  2. Find the xy-bounds: onto the xy-plane. This creates a 2D shadow, region DD. The bounds for dydy and dxdx are determined by this 2D region, just like a standard double integral.

This turns a triple integral into an that we can solve from the inside out.

Ef(x,y,z)dV=D[g1(x,y)g2(x,y)f(x,y,z)dz]dA\iiint_E f(x,y,z) \,dV = \iint_D \left[ \int_{g_1(x,y)}^{g_2(x,y)} f(x,y,z) \,dz \right] dA

Example: Volume of a Wedge

Let's find the volume of the solid wedge bounded by the planes z=0z=0, z=yz=y, x=0x=0, y=2y=2, and x+y=4x+y=4.

  1. Sketch the Region: First, visualize the solid. The planes z=0z=0 (the xy-plane) and z=yz=y form the bottom and top surfaces. The planes x=0x=0, y=2y=2, and x+y=4x+y=4 form the vertical walls.
  1. Set up the integral:
    • z-bounds: Looking at the solid, a vertical line enters at z=0z=0 and exits at z=yz=y. So, our inner integral is 0ydz\int_0^y dz.
    • xy-bounds: The projection onto the xy-plane is a trapezoid. We can describe it with yy varying from 22 to 44. For a given yy in this range, xx goes from the y-axis (x=0x=0) to the line x=4yx=4-y. So, the outer integrals are 2404ydxdy\int_2^4 \int_0^{4-y} \dots dx \,dy.

Since we want the volume, our function is f(x,y,z)=1f(x,y,z)=1. The complete iterated integral is:

V=2404y0y1dzdxdyV = \int_{2}^{4} \int_{0}^{4-y} \int_{0}^{y} 1 \,dz \,dx \,dy
  1. Solve the integral:
    • Innermost (z): 0y1dz=[z]0y=y\int_{0}^{y} 1 \,dz = [z]_0^y = y
    • Middle (x): 04yydx=y[x]04y=y(4y)=4yy2\int_{0}^{4-y} y \,dx = y[x]_0^{4-y} = y(4-y) = 4y - y^2
    • Outermost (y): 24(4yy2)dy=[2y2y33]24\int_{2}^{4} (4y - y^2) \,dy = [2y^2 - \frac{y^3}{3}]_2^4
    • Final Answer: (2(16)643)(2(4)83)=(32643)(883)=24563=72563=163(2(16) - \frac{64}{3}) - (2(4) - \frac{8}{3}) = (32 - \frac{64}{3}) - (8 - \frac{8}{3}) = 24 - \frac{56}{3} = \frac{72-56}{3} = \frac{16}{3}.

The volume of the wedge is $16/3$ cubic units.

The process of setting up a triple integral is often more challenging than solving it. A clear sketch and a systematic approach to finding the bounds are your most important tools.

From Volume to Mass

Calculating volume is just one application. If a solid has a variable , we can find its total mass by integrating the density function. If ρ(x,y,z)\rho(x,y,z) is the density at point (x,y,z)(x,y,z), then the mass MM is:

M=Eρ(x,y,z)dVM = \iiint_E \rho(x,y,z) \,dV

For example, if the wedge from before had a density given by ρ(x,y,z)=x\rho(x,y,z) = x, its total mass would be found by solving:

M=2404y0yxdzdxdyM = \int_{2}^{4} \int_{0}^{4-y} \int_{0}^{y} x \,dz \,dx \,dy

The process is identical, but the integration at each step becomes slightly more complex due to the non-constant integrand.

Now, let's test your understanding of setting up and interpreting these integrals.

Quiz Questions 1/6

What does the triple integral E1dV\iiint_E 1 \,dV calculate for a solid region E?

Quiz Questions 2/6

If a solid object E has a variable density given by the function ρ(x,y,z)\rho(x,y,z), which integral represents the total mass of the object?

Triple integrals are a powerful extension of the concepts you already know, allowing you to analyze and quantify properties of three-dimensional objects in space.