MULTIVARIABLE CALCULUS • MULTIPLE INTEGRALS

Area & Average Value: Double Integrals — Area and average value using double integrals

Learn how double integrals measure flat regions and compute average values across two-dimensional domains.

Historical Context & Motivation

Finding the area of a region and the average height of a surface are two of the oldest problems in mathematics. Ancient Greek mathematicians measured areas using exhaustion — filling shapes with smaller and smaller triangles — long before calculus was invented. When Isaac Newton and Gottfried Leibniz developed single-variable calculus in the 1600s, they gave us the definite integral, a powerful tool for computing area under a curve. But the real world has two dimensions — think of farmland, lake surfaces, or temperature maps — so mathematicians needed a way to extend integration to regions in the xy-plane.

~250 BC
Method of Exhaustion
Archimedes approximates areas of curved regions by inscribing polygons with ever more sides, anticipating the idea of a limit.
1680s
Single-Variable Calculus
Newton and Leibniz independently develop the definite integral, enabling exact computation of area under a curve y = f(x).
1760s
Euler's Multi-Dimensional Work
Leonhard Euler begins evaluating integrals over two-dimensional domains while studying fluid flow and vibrating membranes.
1810s
Rigorous Double Integrals
Augustin-Louis Cauchy and later Bernhard Riemann formalize the double integral as a limit of sums over tiny rectangles, giving it a solid mathematical foundation.

The core question that the double integral answers is: How do we add up values of a function across a two-dimensional region? Whether you want the area of an oddly-shaped plot of land or the average temperature over an entire lake, double integrals are the tool that gets the job done.

Core Principles & Definitions

Before you dive into calculations, it helps to understand the key ideas behind double integrals for area and average value. There are really only a handful of concepts you need, and they all build on ideas you already know from single-variable calculus.

1

Region of Integration (R)

The flat, two-dimensional region in the xy-plane over which you integrate. It can be a rectangle, a circle, or any bounded shape.
2

The Integrand f(x, y)

The function whose values you sum over the region. When f(x, y) = 1 everywhere, the double integral simply gives the area of R.
3

Iterated Integration

A double integral is evaluated by performing two single integrals, one inside the other — first with respect to one variable, then the other.
4

Area via Double Integral

Setting f(x, y) = 1 in a double integral over R yields the area of that region: Area = ∬ 1 dA.
5

Average Value

The average value of f over R equals the total integral divided by the area. It generalizes the single-variable average-value formula to two dimensions.
KEY TAKEAWAY
Think of a double integral like this: Imagine you have a huge checkerboard covering a region. You write a number on every tiny square (the value of f there), then add them all up. The double integral is the exact total when the squares become infinitely small. If every square has the value 1, you are just counting squares — and that gives you the area of the region. Dividing the total by the number of squares gives you the average value.

Visual Explanation

Partitioning a Region into Tiny Rectangles

The diagram below shows a curved region R in the xy-plane. To set up a double integral, we cover R with a grid of tiny rectangles. Each rectangle has area Δx × Δy. We multiply the function value at each rectangle by its area, then sum everything up. As the rectangles shrink to zero, that sum becomes the double integral.

The curved boundary encloses region R. The highlighted purple square shows one small piece with area ΔA = Δx × Δy. Summing over all such pieces and taking the limit gives ∬R f(x, y) dA.

Notice that some rectangles along the boundary only partly overlap R. In theory, we ignore the parts outside R. As Δx and Δy approach zero, those boundary errors vanish, and the sum converges to the exact value of the double integral over R.

Mathematical Framework

There are two main formulas to master in this lesson. The first computes area and the second computes average value. Both rely on the double integral, which we evaluate as an iterated integral — two nested single integrals.

AREA OF A REGION R
Area(R) = ∬_R 1 dA = ∫_a^b ∫_{g₁(x)}^{g₂(x)} 1 dy dx
R is the region in the xy-plane; a and b are the x-bounds; g₁(x) is the lower curve; g₂(x) is the upper curve. Setting the integrand equal to 1 means we are just summing up area elements dA.
AVERAGE VALUE OF f OVER R
f̄ = (1 / Area(R)) × ∬_R f(x, y) dA
f̄ is the average value of f over R. You first compute the double integral of f over R, then divide by the area of R. This is the 2D version of the single-variable formula (1/(b−a)) ∫_a^b f(x) dx.
ITERATED INTEGRAL — dy dx ORDER
∬_R f(x, y) dA = ∫_a^b [ ∫_{g₁(x)}^{g₂(x)} f(x, y) dy ] dx
Integrate with respect to y first (treating x as a constant), then integrate the result with respect to x. Alternatively, you can reverse the order and integrate dx dy if the bounds are easier that way.
💡 Why set f = 1 for area?
In single-variable calculus, ∫_a^b 1 dx = b − a gives the length of an interval. In two dimensions, ∬R 1 dA sums up tiny area elements dA across the entire region R, giving the total area. The integrand 1 simply says 'count every piece of area equally.'

Types of Integration Regions

The trickiest part of setting up a double integral is describing the region R with the correct limits. Regions come in two main types, depending on which variable's bounds are functions and which are constants.

Type I (left): x ranges from a to b; for each x, y ranges from g₁(x) to g₂(x). Integrate dy first, then dx. Type II (right): y ranges from c to d; for each y, x ranges from h₁(y) to h₂(y). Integrate dx first, then dy.
Comparison of Type I and Type II regions
FeatureType I RegionType II Region
Outer integral variablex (constant limits a to b)y (constant limits c to d)
Inner integral variabley (limits depend on x)x (limits depend on y)
Slice directionVertical stripsHorizontal strips
Best used whenTop and bottom boundaries are easy functions of xLeft and right boundaries are easy functions of y

Choosing the right type often simplifies the computation dramatically. Sometimes you can express a region as either type, but one order of integration leads to a much easier inner integral. Always sketch the region first and decide which slicing direction makes the bounds simpler.

Worked Examples

Example 1 — Finding Area with a Double Integral

Find the area of the region R bounded by y = x² and y = x + 2.

Area Between y = x² and y = x + 2
1
Step 1 — Find Intersection PointsSet x² = x + 2, which gives x² − x − 2 = 0. Factor: (x − 2)(x + 1) = 0, so x = −1 and x = 2.
Intersection at x = −1 and x = 2
2
Step 2 — Identify the Region TypeBetween x = −1 and x = 2, the line y = x + 2 is above the parabola y = x². So this is a Type I region with g₁(x) = x² (lower) and g₂(x) = x + 2 (upper).
3
Step 3 — Write the Double Integral for AreaArea = ∫ from −1 to 2 ∫ from x² to (x + 2) 1 dy dx.
4
Step 4 — Evaluate the Inner Integral∫ from x² to (x + 2) 1 dy = (x + 2) − x² = x + 2 − x².
Inner result: x + 2 − x²
5
Step 5 — Evaluate the Outer Integral∫ from −1 to 2 (x + 2 − x²) dx = [x²/2 + 2x − x³/3] from −1 to 2. At x = 2: 4/2 + 4 − 8/3 = 2 + 4 − 8/3 = 18/3 − 8/3 = 10/3. At x = −1: 1/2 − 2 + 1/3 = 3/6 − 12/6 + 2/6 = −7/6. So Area = 10/3 − (−7/6) = 20/6 + 7/6 = 27/6.
Area = 27/6 = 9/2 = 4.5 square units

Example 2 — Average Value of a Function

Find the average value of f(x, y) = x + y over the rectangular region R = [0, 2] × [0, 3].

Average Value of f(x, y) = x + y over [0, 2] × [0, 3]
1
Step 1 — Find the Area of RR is a rectangle with width 2 and height 3, so Area(R) = 2 × 3 = 6.
Area = 6
2
Step 2 — Set Up the Double IntegralR (x + y) dA = ∫ from 0 to 2 ∫ from 0 to 3 (x + y) dy dx.
3
Step 3 — Inner Integral (with respect to y)∫ from 0 to 3 (x + y) dy = [xy + y²/2] from 0 to 3 = 3x + 9/2.
Inner result: 3x + 9/2
4
Step 4 — Outer Integral (with respect to x)∫ from 0 to 2 (3x + 9/2) dx = [3x²/2 + 9x/2] from 0 to 2 = 3(4)/2 + 9(2)/2 = 6 + 9 = 15.
Total integral = 15
5
Step 5 — Divide by Areaf̄ = 15 / 6 = 5/2.
Average value = 5/2 = 2.5

Strengths, Limitations & Comparisons

Double integrals for area and average value are versatile, but like any tool they work best in certain situations. The table below highlights when they shine and where they hit limitations.

Strengths and limitations of double integrals for area and average value
AspectStrengthLimitation
Region flexibilityWorks for any bounded region — curved, polygonal, or irregular.Setting up correct bounds for complex shapes can be challenging.
Coordinate systemsCan switch to polar coordinates for circular/radial regions.Some regions don't fit neatly into Cartesian or polar coordinates.
Average valueGives a single number summarizing f over an entire 2D region.Hides local variation — two very different functions can share the same average.
Computation difficultyMany integrals can be solved exactly using antiderivatives.Some integrands (like e^(−x²)) have no closed-form antiderivative; numerical methods may be needed.
WHEN TO USE WHAT
If a region can be described between two curves that are functions of a single variable, a plain single integral (∫ top − bottom dx) already gives the area. A double integral becomes essential when you want to integrate a function other than 1 over that same region, or when the region is easier to describe in two iterated integrals. Think of the double integral as the Swiss Army knife — it can do what a single integral does and much more.

Connection to Advanced Topics

Everything you learn about double integrals sets the stage for more powerful techniques. Below is a quick look at how area and average value with double integrals connect to ideas you will encounter later in multivariable calculus and beyond.

How this lesson's ideas extend to more advanced mathematics
This LessonWhere It Leads
∬ 1 dA for area of a flat regionTriple integrals (∭ 1 dV) for volume of a 3D solid
Average value f̄ = (1/Area) ∬ f dAWeighted averages and probability density functions in statistics
Iterated integrals in Cartesian coordinatesDouble integrals in polar coordinates (r dr dθ) for circular regions
Switching order of integrationFubini's Theorem and conditions under which order doesn't matter
Area and average value over bounded regionsSurface integrals and flux integrals in vector calculus

One particularly exciting extension is using double integrals in polar coordinates. If the region R is a disk or a sector of a circle, switching from dx dy to r dr dθ can turn a nightmare integral into something elegant. The change-of-variables formula introduces a factor of r, so dA = r dr dθ, which you will practice soon in your course.

Practice Problems

Try these five problems, arranged from conceptual to challenging. Work through each one, then check the detailed answer.

PROBLEM 1CONCEPTUAL
Explain why ∬R 1 dA gives the area of R. What role does the integrand 1 play, and what would change if the integrand were 3 instead?
PROBLEM 2BASIC CALCULATION
Use a double integral to find the area of the triangular region with vertices (0, 0), (4, 0), and (0, 3).
PROBLEM 3INTERMEDIATE
Find the average value of f(x, y) = xy over the region R bounded by y = 0, y = x, and x = 4.
PROBLEM 4APPLIED
A rectangular metal plate occupies the region [0, 2] × [0, 1] (units in meters). Its temperature at point (x, y) is T(x, y) = 20 + 6x²y degrees Celsius. What is the average temperature across the plate?
PROBLEM 5CRITICAL THINKING
The region R is bounded by y = x and y = x². (a) Set up and evaluate the double integral to find Area(R). (b) Find the average value of f(x, y) = x over R. (c) Without computing, explain whether the average value of f(x, y) = y over R would be larger, smaller, or equal to the average of f(x, y) = x. Justify your reasoning using symmetry or the shape of R.

Lesson Summary

A double integral sums the values of a function f(x, y) over a two-dimensional region R by partitioning R into infinitely many tiny rectangles with area dA = dx dy. When the integrand is 1, the double integral computes the area of R: Area(R) = ∬R 1 dA. The average value of f over R is found by dividing the total double integral by the area: f̄ = (1/Area(R)) × ∬R f dA.

To evaluate a double integral, write it as an iterated integral by choosing an order of integration. A Type I region has y-bounds that depend on x, so you integrate dy first, then dx. A Type II region has x-bounds that depend on y, so you integrate dx first, then dy. Sketching the region before setting up bounds is always a wise first step. These ideas extend naturally to polar coordinates and triple integrals in more advanced coursework.

Varsity Tutors • Multivariable Calculus • Area & Average Value: Double Integrals