Volume of Revolution Calculator (Disk/Washer Method)

Calculate the volume of a solid of revolution using the disk or washer method with Simpson's rule numerical integration. Supports linear, quadratic, square root, sine, and custom polynomial functions.

Volume of Revolution
20.11
π × ∫[0, 2] R² dx (Simpson's rule, n = 100)
∫ (R² − r²) dx
6.40
Raw integral value before multiplying by π
Volume / π
6.40
Volume expressed as a multiple of π
Average Cross-Section
10.05
Volume / interval length = 20.11 / 2.00
Interval Width
2.00
[0, 2]
Function
f(x) = 1x² + 0x + 0
Revolved around axis

Cross-Section Table (Step-by-Step)

xf(x)RπR²
0.000.000.000.00
0.200.040.040.01
0.400.160.160.08
0.600.360.360.41
0.800.640.641.29
1.001.001.003.14
1.201.441.446.51
1.401.961.9612.07
1.602.562.5620.59
1.803.243.2432.98
2.004.004.0050.27

Radius Profile

x=0.00
R=0.00
x=0.20
R=0.04
x=0.40
R=0.16
x=0.60
R=0.36
x=0.80
R=0.64
x=1.00
R=1.00
x=1.20
R=1.44
x=1.40
R=1.96
x=1.60
R=2.56
x=1.80
R=3.24
x=2.00
R=4.00
Planning notes, formulas, and examples

About the Volume of Revolution Calculator (Disk/Washer Method)

A solid of revolution is a three-dimensional shape formed by rotating a two-dimensional curve around an axis. This fundamental concept from integral calculus allows you to compute volumes of shapes like spheres, cones, paraboloids, toroids, and any surface generated by revolving a function f(x) around a line.

The disk method applies when the solid has no hole: you slice it into thin circular disks of radius R(x) = |f(x) − k| (where y = k is the axis of rotation), each with area πR², and integrate from a to b: V = π ∫ₐᵇ R(x)² dx. The washer method extends this to shapes with a hole: you have an outer function f(x) and an inner function g(x), and V = π ∫ₐᵇ [R(x)² − r(x)²] dx, where R is the outer radius and r is the inner radius.

This calculator uses Simpson's rule — a highly accurate numerical integration method — to evaluate the integral. Simpson's rule approximates the integrand using parabolic arcs over each pair of subintervals, achieving fourth-order accuracy (error ~ O(h⁴)). You can control the number of subdivisions for higher precision.

Five built-in function types are supported: linear (mx + b), quadratic (ax² + bx + c), square root (a√x), sine (a·sin(bx)), and custom polynomial (c₀ + c₁x + c₂x² + c₃x³). The washer method allows you to specify both outer and inner functions independently. A cross-section table shows the disk/washer area at each sample point, and a radius profile visualization shows how the solid's radius changes across the interval.

Classic presets include generating a sphere from a semicircle, a cone from a linear function, a paraboloid, and a washer-method example with two different functions.

When This Page Helps

Volume-of-revolution problems combine function setup, radius interpretation, and definite integration, so most mistakes happen before the integral is even evaluated. This calculator helps you test the geometry of a disk or washer setup, compare built-in function families, and see how the chosen interval and axis of rotation affect the final solid, which is especially useful in calculus classes and engineering modeling.

How to Use the Inputs

  1. Select a function type for f(x): linear, quadratic, √x, sin, or custom polynomial.
  2. Enter the function parameters (slope, coefficients, amplitude, etc.).
  3. Set the integration interval [a, b].
  4. Choose the axis of rotation (x-axis or a custom y = k line).
  5. For the washer method, also configure the inner function g(x).
  6. Adjust the number of subdivisions for precision (higher = more accurate).
  7. Or click a preset to load a classic solid of revolution.
  8. View the computed volume, cross-section table, and radius profile.
Formula used
Disk method: V = π ∫ₐᵇ [f(x) − k]² dx Washer method: V = π ∫ₐᵇ ([f(x) − k]² − [g(x) − k]²) dx Simpson's rule: ∫ₐᵇ h(x) dx ≈ (Δx/3)[h(x₀) + 4h(x₁) + 2h(x₂) + 4h(x₃) +... + h(xₙ)] where Δx = (b − a)/n and n is even

Example Calculation

Result: Volume ≈ 20.1062 (= 32π/5)

Revolving y = x² from x = 0 to x = 2 around the x-axis: V = π ∫₀² (x²)² dx = π ∫₀² x⁴ dx = π[x⁵/5]₀² = π(32/5) = 32π/5 ≈ 20.1062. Simpson's rule with 100 subdivisions gives this result to high accuracy.

Tips & Best Practices

  • A sphere of radius r is generated by revolving f(x) = √(r² − x²) around the x-axis from −r to r. Use the custom polynomial mode with c₀ = r², c₂ = −1.
  • Increasing subdivisions improves accuracy but takes more computation. 100 is usually sufficient; 1000 gives near-exact results.
  • The washer method is required whenever the region being revolved doesn't touch the axis of rotation.
  • For revolution around x = k (a vertical line), you would need to express x as a function of y — this calculator handles horizontal-axis revolution.
  • Simpson's rule is exact for polynomials up to degree 3, so it gives perfect results for linear and quadratic integrands.

Choosing Disk or Washer Method

The real decision in a volume-of-revolution problem is whether each cross-section is a full disk or a washer with a hole. If the region touches the axis of rotation, the inner radius is zero and the disk method is enough. If the region stays away from the axis or is bounded by two curves, you need a washer setup so the inner radius is subtracted from the outer radius before integrating.

Reading Radius From the Graph

Most setup errors happen when students confuse the function value with the radius. The radius is the distance from the curve to the axis of rotation, so revolving around $y = k$ means the effective radius is $|f(x) - k|$. This calculator makes that explicit in the cross-section table, where you can inspect $R$, $r$, and the resulting area at sample points instead of treating the integral as a black box.

Why Numerical Integration Still Helps

Even when an antiderivative exists, Simpson's rule is valuable because it lets you test a setup quickly and compare exact reasoning against a numerical result. That is especially helpful for sinusoidal or custom polynomial profiles, where the geometry matters as much as the algebra. The radius profile also shows how the solid changes across the interval, which is useful for understanding why certain regions produce spheres, cones, paraboloids, or more unusual bodies.

Sources & Methodology

Last updated:

Frequently Asked Questions

  • The disk method computes the volume of a solid of revolution by slicing it into thin circular disks perpendicular to the axis of rotation. Each disk has area πR² and thickness dx. The volume is V = π ∫ R² dx.