Finding Limits of Integration from Plane- Calculus
What the Hell Are Limits of Integration Anyway?
When you set up a double integral, you're essentially asking: "Sum up everything in this region." The limits of integration tell your integral exactly where that region starts and ends.
For a single integral ∫f(x)dx, limits are just two numbers: the bottom and top. For double integrals ∬f(x,y)dA, you need limits for both x and y. That's where people get lost.
In multivariable calculus, regions often come defined by planes, curves, or inequalities. Your job is to translate those geometric descriptions into bounds you can plug into an integral.
Finding Limits from Plane Equations
A plane in 3D looks like ax + by + cz = d. When you project that region onto the xy-plane (the most common approach), you're working with the inequality formed by treating z as dependent.
The Basic Procedure
- Identify the region you're integrating over
- Determine which variable you'll integrate first (usually y)
- Find the "inner" limits: the curves that bound y at each x
- Find the "outer" limits: the range of x across the entire region
Here's the thing most textbooks skip: draw it first. No exceptions. You cannot reliably find limits by staring at equations.
Common Region Types and Their Limits
Regions Bounded by a Plane and Coordinate Planes
Consider the plane x + y + z = 1 in the first octant (where x, y, z ≥ 0). To find volume under this plane, project onto the xy-plane.
The intersection with z = 0 gives you x + y = 1, or y = 1 - x.
Your limits become:
- x ranges from 0 to 1
- For each x, y ranges from 0 to 1 - x
- z is handled by the integrand (integrating from 0 to 1 - x - y)
The double integral for volume is:
∫₀¹ ∫₀^(1-x) (1 - x - y) dy dx
Regions Between Two Curves
When a region has curves as boundaries, solve for the inner variable. If y = √x and y = x² bound the region:
Find where they intersect: √x = x² gives x = 0 and x = 1.
Since √x sits above x² in [0,1], your limits are:
- x: 0 to 1
- y: x² to √x
Switching the Order of Integration
Sometimes the given limits are garbage. The integral might be impossible to solve analytically, or the bounds describe the region in a way that makes your integrand messy.
You can always switch the order. Just redraw the region and re-express the limits.
If you have:
∫₀¹ ∫ₑˣ f(x,y) dy dx
The region is bounded by y = eˣ, y = e, x = 0, x = 1.
To switch: solve for x in terms of y. x = ln(y). The new outer limits for y are e⁰ = 1 to e¹ = e. For each y, x goes from 0 to ln(y).
New integral: ∫₁ᵉ ∫₀^ln(y) f(x,y) dx dy
Polar Coordinates: When Circles Show Up
Regions with circular symmetry scream for polar coordinates. The limits change completely.
In polar: x = r cos θ, y = r sin θ, dA = r dr dθ
For a circle of radius R centered at origin:
- r goes from 0 to R
- θ goes from 0 to 2π
For a half-circle above the x-axis:
- r: 0 to R
- θ: 0 to π
The dA becomes r dr dθ, not dr dθ. People forget the r constantly.
Table: Common Region Shapes and Their Limits
| Region Description | x-limits | y-limits |
|---|---|---|
| Under plane z = f(x,y) over rectangle [a,b]×[c,d] | a to b | c to d |
| Between y = g₁(x) and y = g₂(x), x ∈ [a,b] | a to b | g₁(x) to g₂(x) |
| Inside circle r = R (polar) | 0 to 2π (θ) | 0 to R (r) |
| Inside cardioid r = 1 + cos θ (polar) | -π/2 to π/2 (or 0 to 2π) | 0 to 1 + cos θ |
| Under paraboloid z = x² + y², above xy-plane | -√(1-y²) to √(1-y²) | -1 to 1 |
Getting Started: A Step-by-Step Process
Here's how to actually find limits when given a region:
- Sketch the region — plot the bounding curves/planes. Label intersection points.
- Choose projection plane — almost always xy-plane unless told otherwise.
- Determine outer variable — pick x or y based on which gives simpler bounds. Usually the variable with "simpler" limits goes outside.
- Find inner bounds — solve bounding equations for the inner variable. Express as functions of the outer variable.
- Verify — check that your limits actually describe the region. Does the inner variable stay between its bounds for all outer variable values?
Where People Screw Up
- Wrong intersection points — always solve for where boundaries actually meet.
- Forgetting to include all boundaries — regions need all edges defined.
- Assuming x-limits are always outer — sometimes y-limits are simpler. Switch it.
- Losing the r in polar — dA = r dr dθ. The r is not optional.
- Not checking region orientation — "above" vs "below" a curve changes inequality direction.
When You Have Multiple Regions
If your region isn't "nice" (simple boundaries for one variable), split it. A region with an indentation might need to be broken into two or three integrals that get added together.
Example: region bounded by y = x, y = 2x, and x² + y² = 4 in the first quadrant needs splitting at where the circle intersects y = 2x.
You add the integrals. That's it. No magic.
Final Take
Finding limits of integration is a translation problem. You have a picture (or should), and you need to write inequalities that describe it. The calculus part is trivial by comparison.
Draw first. Solve equations second. Check your work third.