Tested tool guide
Tested browser tools
Checked August 16, 2026
What Solid of Revolution Visualizer does, with a checked example
A bowl, a cone, a sphere, a vase - each is a curve spun around an axis, and this visualizer performs exactly that sweep: draw a curve, set the bounds, choose an axis, and watch an animation grow the 3D solid while the volume is computed by slicing it into disks, washers, or shells. One catch dominates every mistake in this topic: the radius gets squared. Volume is pi times the integral of [f(x)]^2, not of f(x), so doubling a curve's height multiplies the volume by four, not two.
Worked example
A concrete input and expected output from the current implementation.
Input
y = x^2, rotate about the x-axis, x from 0 to 1, disk method
->
Expected output
A paraboloid bowl rendered in 3D; volume = pi/5 ≈ 0.628 cubic units.
Each slice perpendicular to the x-axis is a disk of radius x^2, so V = pi * integral of (x^2)^2 dx from 0 to 1 = pi * integral of x^4 dx = pi/5. Squaring the radius is the step students skip most often.