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

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:

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:

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:

For a half-circle above the x-axis:

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:

  1. Sketch the region — plot the bounding curves/planes. Label intersection points.
  2. Choose projection plane — almost always xy-plane unless told otherwise.
  3. Determine outer variable — pick x or y based on which gives simpler bounds. Usually the variable with "simpler" limits goes outside.
  4. Find inner bounds — solve bounding equations for the inner variable. Express as functions of the outer variable.
  5. 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

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.