← MathScape

Washer Method

MATH162
Reference: Stewart 5.2  •  Chapter: 5  •  Section: 2

Navigation: Wiki Home > Skills > Washer Method

Washer Method

Solids with Holes

What happens when you rotate a region around an axis it doesn't touch? You get a solid with a hollow core—like a donut, a pipe, or a vase. The cross-sections are no longer solid disks but washers (annular rings).

A washer is the region between two concentric circles. Its area is simply the outer circle's area minus the inner circle's area: $\pi R^2 - \pi r^2$.

The key insight: Two radii matter—the outer radius (to the farther curve) and the inner radius (to the closer curve). Subtract the inner from the outer.

Prerequisite Map

This skill
Washer Method
Unlocks
Shell MethodVolume Applications

Before You Start

Self-check: Can you answer these questions? If not, review the linked prerequisites first.

Question If you struggle...
Find the volume when $y = x^2$ (from $x=0$ to $x=1$) is rotated about the $x$-axis Review Disk Method
What is the area of the region between two concentric circles with radii 3 and 5? This is a washer! Answer: $\pi(5^2) - \pi(3^2) = 16\pi$
If a region is bounded by $y = 2x$ and $y = x^2$, which curve is on top for $0 < x < 2$? Sketching regions is essential for identifying radii
Refresh: The Disk Method

When rotating about the $x$-axis with radius $r = f(x)$:

$$V = \pi\int_a^b [f(x)]^2\,dx$$

The washer method extends this by subtracting the volume of the "hole."

Refresh: Sketching to Identify Radii

To find outer and inner radii:

  1. Draw the region in the $xy$-plane
  2. Draw the axis of rotation
  3. At a typical $x$-value, draw a line from the axis to each curve
  4. The longer distance is the outer radius $R$
  5. The shorter distance is the inner radius $r$

Key: The radius is a distance, so it's always positive. Use absolute value thinking if curves are on opposite sides of the axis.

Quick Reference

Property Value
Concept Applications of Integration
Course MATH162
Section Stewart 5.2
Difficulty Intermediate
Time ~25 minutes

Key Concepts

The Washer Method Formula

When a region between two curves is rotated about an axis, the cross-sections are washers:

$$\boxed{V = \pi\int_a^b \left([R(x)]^2 - [r(x)]^2\right)\,dx}$$

where:

                      Outer curve
    y                    ↓
    |         ___________
    |        /           \
    |   ____/   Region    \_____   ← Inner curve
    |        to rotate
    +---------------------------→ x
                axis of rotation

    Cross-section (perpendicular to axis):

         ┌─────────────┐
         │   ┌─────┐   │
         │   │     │   │    Washer = outer disk − inner disk
         │   │  ○  │   │    Area = πR² − πr²
         │   │     │   │
         │   └─────┘   │
         └─────────────┘
              ↑     ↑
              r     R

When to Use Washers vs. Disks

How do you know if you need washers or disks? Ask yourself: Does the region touch the axis of rotation?

Situation Method
Region touches the axis Disk (no hole)
Region does NOT touch the axis Washer (has a hole)
Region between two curves, axis inside Washer
Region between two curves, axis outside Washer

Simple test: If there's empty space between the region and the axis, you need washers.

Identifying Inner and Outer Radii

  1. Draw a cross-section perpendicular to the axis of rotation
  2. Mark both curves where they intersect this cross-section
  3. Measure distances from the axis:

Rotation About the $x$-Axis

For region between $y = f(x)$ (top) and $y = g(x)$ (bottom), rotating about $x$-axis:

$$V = \pi\int_a^b \left([f(x)]^2 - [g(x)]^2\right)\,dx$$

Rotation About Other Lines

About $y = k$ (horizontal line):

$$R = \vert f(x) - k\vert , \quad r = \vert g(x) - k\vert $$

About $x = h$ (vertical line): Switch to integrating with respect to $y$:

$$V = \pi\int_c^d \left([R(y)]^2 - [r(y)]^2\right)\,dy$$

The Algorithm

  1. Sketch the region and axis of rotation
  2. Determine if you need washers (region doesn't touch axis)
  3. Identify outer and inner radii in terms of the integration variable
  4. Find limits of integration
  5. Set up and evaluate: $V = \pi\int (R^2 - r^2)\,d(\text{variable})$

Common Pitfalls

Mistake Why It's Wrong Correction
Writing $(R - r)^2$ instead of $R^2 - r^2$ These are NOT equal: $(R-r)^2 = R^2 - 2Rr + r^2$ Area is $\pi R^2 - \pi r^2$, keep separate
Swapping inner and outer radii Gives negative volume or wrong answer Outer is farther from axis, inner is closer
Using disks when washers needed Missing the hollow core If region doesn't touch axis, you need washers
Forgetting which curve is which When axis is above/below region, radii flip Draw the cross-section and measure distances carefully

Practice Problems

Level 1 Basic Washer Identification

The region bounded by $y = 2x$ and $y = x^2$ is rotated about the $x$-axis.

  1. Find the intersection points and sketch the region.
  2. Identify which curve gives the outer radius and which gives the inner radius.
  3. Set up (but do not evaluate) the integral for the volume.
Thought Process

First find where the curves intersect: $2x = x^2$ gives $x^2 - 2x = 0$, so $x(x-2) = 0$. Intersections at $x = 0$ and $x = 2$. For $0 < x < 2$, compare values: at $x = 1$, we have $2(1) = 2 > 1 = 1^2$. So $y = 2x$ is above $y = x^2$. Since we're rotating about the $x$-axis, the farther curve ($y = 2x$) gives the outer radius.

Show Answer

(a) The curves intersect where $2x = x^2$: $$x^2 - 2x = 0 \implies x(x - 2) = 0$$ Intersection points: $(0, 0)$ and $(2, 4)$.

(b) For $0 < x < 2$: $y = 2x$ lies above $y = x^2$.

When rotating about the $x$-axis:

  • Outer radius: $R = 2x$ (the line, which is farther from the axis)
  • Inner radius: $r = x^2$ (the parabola, which is closer to the axis)

(c) The volume integral is:

$$V = \pi\int_0^2 \left[(2x)^2 - (x^2)^2\right]\,dx = \pi\int_0^2 (4x^2 - x^4)\,dx$$

Level 2 Computing a Washer Volume

Find the volume of the solid obtained by rotating the region bounded by $y = 2x$ and $y = x^2$ about the $x$-axis.

Thought Process

From Level 1, we have $R = 2x$ and $r = x^2$. The curves intersect at $x = 0$ and $x = 2$. Now evaluate the integral.

Show Answer

From the setup: $R = 2x$, $r = x^2$, limits from 0 to 2.

$$V = \pi\int_0^2 \left[(2x)^2 - (x^2)^2\right]\,dx = \pi\int_0^2 (4x^2 - x^4)\,dx$$

$$= \pi\left[\frac{4x^3}{3} - \frac{x^5}{5}\right]_0^2 = \pi\left(\frac{32}{3} - \frac{32}{5}\right)$$

$$= \pi \cdot 32\left(\frac{1}{3} - \frac{1}{5}\right) = \pi \cdot 32 \cdot \frac{2}{15} = \boxed{\frac{64\pi}{15}}$$

Level 3 Rotation About a Horizontal Line

Find the volume of the solid obtained by rotating the region bounded by $y = 2x$ and $y = x^2$ about the line $y = 5$.

Thought Process

The curves intersect at $(0,0)$ and $(2,4)$. The axis $y = 5$ is above both curves. The outer radius is the distance from $y = 5$ to the lower curve ($y = x^2$): $R = 5 - x^2$. The inner radius is the distance from $y = 5$ to the upper curve ($y = 2x$): $r = 5 - 2x$.

Show Answer

The region lies below the axis $y = 5$. The curves intersect at $x = 0$ and $x = 2$.

  • Outer radius: $R = 5 - x^2$ (distance to parabola, which is farther from the axis)
  • Inner radius: $r = 5 - 2x$ (distance to line, which is closer to the axis)

$$V = \pi\int_0^2 \left[(5 - x^2)^2 - (5 - 2x)^2\right]\,dx$$

Expand each term:

  • $(5 - x^2)^2 = 25 - 10x^2 + x^4$
  • $(5 - 2x)^2 = 25 - 20x + 4x^2$

Subtract: $$(5 - x^2)^2 - (5 - 2x)^2 = (25 - 10x^2 + x^4) - (25 - 20x + 4x^2)$$ $$= -10x^2 + x^4 + 20x - 4x^2 = x^4 - 14x^2 + 20x$$

Integrate: $$V = \pi\int_0^2 (x^4 - 14x^2 + 20x)\,dx = \pi\left[\frac{x^5}{5} - \frac{14x^3}{3} + 10x^2\right]_0^2$$

$$= \pi\left(\frac{32}{5} - \frac{112}{3} + 40\right) = \pi\left(\frac{96 - 560 + 600}{15}\right) = \boxed{\frac{136\pi}{15}}$$

Level 4 Rotation About a Vertical Line

Find the volume of the solid obtained by rotating the region bounded by $y = 2x$ and $y = x^2$ about the line $x = -2$.

Thought Process

The axis is vertical, so we should integrate with respect to $y$. Express $x$ in terms of $y$: from $y = 2x$, we get $x = y/2$; from $y = x^2$, we get $x = \sqrt{y}$.

The curves intersect at $(0,0)$ and $(2,4)$, so $y$ ranges from 0 to 4.

For a horizontal slice at height $y$, the cross-section is a washer. We need to identify which curve is farther from the axis $x = -2$.

Show Answer

Step 1: Express both curves as functions of $y$:

  • $y = 2x \Rightarrow x = \frac{y}{2}$
  • $y = x^2 \Rightarrow x = \sqrt{y}$ (taking positive root since $x \geq 0$ in our region)

Step 2: The region extends from $y = 0$ to $y = 4$.

Step 3: For $0 < y < 4$, compare $\sqrt{y}$ and $\frac{y}{2}$: At $y = 1$: $\sqrt{1} = 1 > 0.5 = \frac{1}{2}$.

So $x = \sqrt{y}$ is to the right of $x = \frac{y}{2}$ in this region.

Step 4: Radii from the axis $x = -2$:

  • Outer radius: $R = \sqrt{y} - (-2) = \sqrt{y} + 2$
  • Inner radius: $r = \frac{y}{2} - (-2) = \frac{y}{2} + 2$

Step 5: Set up and evaluate: $$V = \pi\int_0^4 \left[(\sqrt{y} + 2)^2 - \left(\frac{y}{2} + 2\right)^2\right]\,dy$$

Expand:

  • $(\sqrt{y} + 2)^2 = y + 4\sqrt{y} + 4$
  • $\left(\frac{y}{2} + 2\right)^2 = \frac{y^2}{4} + 2y + 4$

Subtract: $$(\sqrt{y} + 2)^2 - \left(\frac{y}{2} + 2\right)^2 = y + 4\sqrt{y} + 4 - \frac{y^2}{4} - 2y - 4 = 4\sqrt{y} - y - \frac{y^2}{4}$$

Integrate: $$V = \pi\int_0^4 \left(4y^{1/2} - y - \frac{y^2}{4}\right)\,dy = \pi\left[\frac{8y^{3/2}}{3} - \frac{y^2}{2} - \frac{y^3}{12}\right]_0^4$$

$$= \pi\left(\frac{8(8)}{3} - \frac{16}{2} - \frac{64}{12}\right) = \pi\left(\frac{64}{3} - 8 - \frac{16}{3}\right) = \pi\left(\frac{64 - 16}{3} - 8\right) = \pi\left(16 - 8\right) = \boxed{8\pi}$$

Level 5 Volume of a Torus

A torus is the donut-shaped solid formed by rotating a circle of radius $r$ about a line at distance $R$ from the center of the circle (where $R > r$).

  1. Set up the washer integral for the volume of a torus.
  2. Evaluate the integral (hint: recognize a known area).
  3. Verify your answer makes sense when $r$ is small compared to $R$.
Thought Process

Place the circle with center at $(R, 0)$ in the $xy$-plane. The equation of this circle is $(x - R)^2 + y^2 = r^2$. Solve for $x$: $x = R \pm \sqrt{r^2 - y^2}$.

When rotated about the $y$-axis:

  • Outer radius: $R + \sqrt{r^2 - y^2}$
  • Inner radius: $R - \sqrt{r^2 - y^2}$

The integral will have a term $\sqrt{r^2 - y^2}$ which, when integrated, gives a semicircle area.

Show Answer

(a) Setting up the integral:

Place the circle with center at $(R, 0)$, equation $(x - R)^2 + y^2 = r^2$.

Solving for $x$: $x = R \pm \sqrt{r^2 - y^2}$

The circle extends from $y = -r$ to $y = r$.

At height $y$:

  • Outer radius: $R_{\text{out}} = R + \sqrt{r^2 - y^2}$
  • Inner radius: $R_{\text{in}} = R - \sqrt{r^2 - y^2}$

$$V = \pi\int_{-r}^{r}\left[(R + \sqrt{r^2 - y^2})^2 - (R - \sqrt{r^2 - y^2})^2\right]\,dy$$

(b) Evaluating the integral:

Expand using $(a + b)^2 - (a - b)^2 = 4ab$:

$$(R + \sqrt{r^2 - y^2})^2 - (R - \sqrt{r^2 - y^2})^2 = 4R\sqrt{r^2 - y^2}$$

So: $$V = \pi\int_{-r}^{r} 4R\sqrt{r^2 - y^2}\,dy = 4\pi R\int_{-r}^{r}\sqrt{r^2 - y^2}\,dy$$

The integral $\int_{-r}^{r}\sqrt{r^2 - y^2}\,dy$ represents the area under the curve $x = \sqrt{r^2 - y^2}$ from $y = -r$ to $y = r$. This curve is the right half of a circle of radius $r$ centered at the origin.

The area under this curve equals the area of a semicircle: $\frac{1}{2}\pi r^2$.

$$V = 4\pi R \cdot \frac{\pi r^2}{2} = \boxed{2\pi^2 R r^2}$$

(c) Sanity check:

When $r$ is small, the torus is like a thin tube bent into a circle of radius $R$. The cross-sectional area of the tube is $\pi r^2$, and the length of the tube (circumference of the circle) is $2\pi R$.

$$V \approx \text{(cross-section)} \times \text{(length)} = \pi r^2 \cdot 2\pi R = 2\pi^2 R r^2 \checkmark$$

This matches our formula exactly—it's not just an approximation, but the exact answer!

Mastery Checklist

Mental Model

The Pipe Cross-Section: Think of cutting a pipe perpendicular to its length. You see a ring (washer) with an outer radius and an inner radius. The area of material is the big circle minus the hole: $\pi R^2 - \pi r^2$. When building a solid of revolution, you're stacking infinitely many of these washer-shaped slices.

Common Pitfall

Don't simplify $R^2 - r^2$ to $(R - r)^2$!

$$\pi R^2 - \pi r^2 \neq \pi(R - r)^2$$

The correct factorization (if useful) is: $$\pi(R^2 - r^2) = \pi(R + r)(R - r)$$


Connections

Looking back:

Looking ahead:

When to use which method:


Previous Up Next
Disk Method Skills Index Known Cross-Sections

Last updated: 2026-01-23