MULTIVARIABLE CALCULUS • PROBLEM-SOLVING & MODELING TOOLS

Sketching Regions & Bounds — Sketch regions and determine bounds for multiple integrals

Learn to visualize two-dimensional regions and translate their boundaries into the limits of double integrals.

Historical Context & Motivation

Calculating the area under a curve is one of the oldest challenges in mathematics, dating back to ancient Greece. When mathematicians began working with functions of two or more variables, they needed a way to add up values across two-dimensional regions rather than simple intervals on a number line. This leap from single-variable to multivariable integration required mathematicians to describe the shape of a region in precise algebraic terms—what we now call bounds of integration.

~250 BCE
Archimedes and Area Methods
Archimedes used the method of exhaustion to compute areas and volumes of curved shapes, foreshadowing integral calculus by nearly two thousand years.
1680s
Newton & Leibniz Invent Calculus
Isaac Newton and Gottfried Wilhelm Leibniz independently developed single-variable calculus, introducing the definite integral with fixed numerical bounds on a single axis.
1740s
Euler Extends to Multiple Variables
Leonhard Euler began evaluating integrals over two-dimensional regions, recognizing that the limits for one variable often depend on the other variable.
1810s
Riemann Formalizes Double Integrals
Bernhard Riemann provided a rigorous framework for integrating over arbitrary regions in the plane, establishing the importance of clearly specifying the region of integration.

The central question that drives this lesson is straightforward: given a region in the xy-plane described by curves or lines, how do you turn that geometric picture into the precise lower and upper limits of a double integral? Mastering this skill is the gateway to computing volumes, masses, and probabilities across irregular shapes.

Core Principles & Definitions

Before you can set up a double integral, you need to understand a few foundational ideas. These concepts act like a checklist: once you internalize them, sketching regions and writing bounds becomes almost mechanical.

1

Region of Integration (R)

The region of integration is the flat area in the xy-plane over which you are summing (integrating). It is bounded by curves, lines, or a combination of both.
2

Type I Region (Vertical Slices)

A Type I region is bounded on the left and right by constants x = a and x = b, and on the bottom and top by curves y = g₁(x) and y = g₂(x). You integrate y first, then x.
3

Type II Region (Horizontal Slices)

A Type II region is bounded below and above by constants y = c and y = d, and on the left and right by curves x = h₁(y) and x = h₂(y). You integrate x first, then y.
4

Order of Integration

The order of integration refers to which variable you integrate first (the inner integral). Choosing the right order can simplify the problem dramatically.
KEY TAKEAWAY
Think of a double integral like mowing a rectangular lawn in strips. With vertical slices (Type I), you mow up and down for each position across the lawn. With horizontal slices (Type II), you mow left and right for each position along the lawn's depth. If the lawn has a weird curved edge, the length of each strip changes—that's why the inner bounds are functions, not just numbers.

Visual Explanation — Seeing the Region

The diagram below shows the region bounded by y = x² (a parabola) and y = x (a straight line). The two curves intersect at (0, 0) and (1, 1). A representative vertical strip is drawn in cyan to show how a Type I slice moves through the region.

The shaded region R lies between the parabola y = x² (pink) and the line y = x (violet). The cyan strip at x = 0.5 shows a typical vertical slice: it starts at y = x² (bottom) and ends at y = x (top). As x sweeps from 0 to 1, these slices cover the entire region.

Notice that every vertical strip starts at the lower curve y = x² and ends at the upper curve y = x. Because those curves depend on x, the inner bounds are functions of x. The outer bounds are the x-values where the curves meet: x = 0 and x = 1. This is what makes it a Type I setup.

Mathematical Framework

A double integral over a region R can be written as an iterated integral in two ways, depending on whether you slice the region vertically (Type I) or horizontally (Type II). Here are the standard forms.

TYPE I — INTEGRATE y FIRST
∬_R f(x, y) dA = ∫ from a to b [ ∫ from g₁(x) to g₂(x) f(x, y) dy ] dx
a, b = constant x-limits (left and right boundaries); g₁(x) = lower curve; g₂(x) = upper curve. The inner integral sweeps y from bottom to top for each fixed x.
TYPE II — INTEGRATE x FIRST
∬_R f(x, y) dA = ∫ from c to d [ ∫ from h₁(y) to h₂(y) f(x, y) dx ] dy
c, d = constant y-limits (bottom and top boundaries); h₁(y) = left curve; h₂(y) = right curve. The inner integral sweeps x from left to right for each fixed y.
AREA OF REGION R
Area(R) = ∬_R 1 dA
When f(x, y) = 1, the double integral simply calculates the area of the region R. This is often a good first exercise for checking your bounds.
💡 Which Type Should I Use?
Sketch the region first. If the top and bottom boundaries are easy to express as functions of x, use Type I. If the left and right boundaries are easier to express as functions of y, use Type II. Some regions work well either way; others strongly favor one type.

Detailed Breakdown — Type I vs. Type II

The diagram below places the same triangular region side by side, sliced vertically (Type I) on the left and horizontally (Type II) on the right. The triangle has vertices at (0, 0), (2, 0), and (0, 4). Study how the bounds differ depending on the slicing direction.

Left: Type I slices the triangle with vertical strips from y = 0 up to y = 4 − 2x, with x running from 0 to 2. Right: Type II slices horizontally from x = 0 to x = (4 − y)/2, with y running from 0 to 4. Both set-ups describe the same region.
Comparison of Type I and Type II integration setups
FeatureType I (dy dx)Type II (dx dy)
Outer variablex (left → right)y (bottom → top)
Inner variabley (bottom → top)x (left → right)
Outer boundsConstants a ≤ x ≤ bConstants c ≤ y ≤ d
Inner boundsFunctions of x: g₁(x) ≤ y ≤ g₂(x)Functions of y: h₁(y) ≤ x ≤ h₂(y)
Best when...Top/bottom curves are easy functions of xLeft/right curves are easy functions of y

Worked Example

Let's find the area of the region bounded by y = x² and y = 2x. We'll set up and evaluate the double integral using a Type I approach.

Area Between y = x² and y = 2x
1
Step 1 — Find the Intersection PointsSet x² = 2x. Then x² − 2x = 0, so x(x − 2) = 0. The solutions are x = 0 and x = 2. Plugging back in, we get the points (0, 0) and (2, 4).
Intersections: (0, 0) and (2, 4)
2
Step 2 — Sketch and Identify Which Curve Is on TopBetween x = 0 and x = 2, test a point like x = 1: y = 1² = 1 and y = 2(1) = 2. Since 2 > 1, the line y = 2x is above the parabola y = x² in this interval. The upper curve is y = 2x; the lower curve is y = x².
Upper: y = 2x, Lower: y = x²
3
Step 3 — Write the Type I BoundsThe outer variable x goes from 0 to 2 (the x-coordinates of the intersections). For each fixed x, y sweeps from x² (bottom) up to 2x (top).
∫₀² ∫_{x²}^{2x} dy dx
4
Step 4 — Evaluate the Inner Integral∫ from x² to 2x of dy = [y] evaluated from x² to 2x = 2x − x².
Inner integral = 2x − x²
5
Step 5 — Evaluate the Outer Integral∫₀² (2x − x²) dx = [x² − x³/3] from 0 to 2 = (4 − 8/3) − (0 − 0) = 12/3 − 8/3 = 4/3.
Area = 4/3 square units
Quick Check
You can verify the area using the single-variable formula ∫₀² (2x − x²) dx directly—it gives the same answer. Double integrals become essential when the integrand is more complex, like f(x, y) = xy instead of 1.

Common Strengths, Limitations & Pitfalls

Choosing between Type I and Type II—or recognizing when you need to split a region—can make or break a problem. The table below highlights common scenarios and the best strategy for each.

Strategy guide for choosing integration order
ScenarioRecommendationWhy
Bounds are simple functions of xUse Type IVertical slices have clean algebraic bounds; no need to solve for x.
Bounds are simple functions of yUse Type IIHorizontal slices avoid messy square roots or inverse functions.
Region is not a single Type I or Type IISplit the regionWrite separate integrals for sub-regions and add them.
Inner bounds are constants (rectangle)Either type works equally wellRectangular regions have constant bounds in both orders.
Integrand is hard to integrate in one orderReverse the orderSwitching the order of integration can turn an impossible integral into a straightforward one.
KEY TAKEAWAY
Think of choosing the order of integration like choosing whether to read a spreadsheet row-by-row or column-by-column. The data is the same either way, but one direction might be far easier to process depending on how the information is organized. When in doubt, sketch the region first and draw a test strip in each direction to see which one gives cleaner bounds.

Connection to Advanced Theory — Triple Integrals & Beyond

Everything you have learned about sketching regions and writing bounds in two dimensions extends naturally to three dimensions with triple integrals. Instead of a flat region R in the xy-plane, you work with a solid region E in xyz-space. You slice the solid with planes and express the bounds as functions of two variables for the innermost integral, one variable for the middle, and constants for the outermost.

Double integrals vs. triple integrals
FeatureDouble Integral (2D)Triple Integral (3D)
RegionFlat area R in the xy-planeSolid volume E in xyz-space
Number of integrals2 (inner + outer)3 (inner + middle + outer)
Inner boundsFunctions of one variableFunctions of two variables
Sketching challengeDraw curves in the xy-planeVisualize surfaces in 3D space
Special coordinatesPolar coordinates (r, θ)Cylindrical (r, θ, z) or spherical (ρ, θ, φ)

The skill of sketching and setting up bounds is also crucial when you change coordinate systems. In polar coordinates, a circle centered at the origin has beautifully simple bounds (r from 0 to a, θ from 0 to 2π), whereas in Cartesian coordinates the same circle requires ±√(a² − x²). Learning to recognize which coordinate system simplifies a region's description is one of the most powerful problem-solving tools in multivariable calculus.

Practice Problems

PROBLEM 1CONCEPTUAL
In a Type I double integral, the outer bounds are constants and the inner bounds are functions. Explain in your own words why the inner bounds must be functions of the outer variable rather than constants.
PROBLEM 2BASIC CALCULATION
Set up (but do not evaluate) the Type I double integral for the area of the region bounded by y = 0, y = 3x, and x = 2.
PROBLEM 3INTERMEDIATE
The region R is bounded by y = √x and y = x/2. (a) Find the intersection points. (b) Set up the double integral for the area using Type I bounds. (c) Evaluate the integral.
PROBLEM 4APPLIED
A landscape architect wants to know the area of a garden plot shaped like the region between y = x² − 1 and y = x + 1. Set up and evaluate the appropriate double integral to find this area (in square meters, assuming axes are in meters).
PROBLEM 5CRITICAL THINKING
Consider the integral ∫₀¹ ∫_x^1 sin(y²) dy dx. This integral is difficult to evaluate as written because sin(y²) has no elementary antiderivative with respect to y. Reverse the order of integration and evaluate the resulting integral.

Lesson Summary

Setting up a double integral begins with sketching the region of integration in the xy-plane. Identify the curves that form the boundary, locate their intersection points, and decide which curve is on top (or on the right) across the interval. A Type I region uses vertical slices—outer bounds are constant x-values and inner bounds are functions of x. A Type II region uses horizontal slices—outer bounds are constant y-values and inner bounds are functions of y.

The choice between Type I and Type II depends on which gives simpler expressions for the bounds. When one order makes the integrand impossible to antidifferentiate, reversing the order of integration can rescue the problem. These two-dimensional skills extend directly to triple integrals and to polar, cylindrical, and spherical coordinates. Always sketch first, choose your slicing direction, and then translate the picture into algebraic bounds.

Varsity Tutors • Multivariable Calculus • Sketching Regions & Bounds