Skip to main content

Cone Calculator

Right circular cone. Volume is one third π r squared h. Slant height is the hypotenuse of r and h. Lateral and total surface follow from that slant. Units are whatever you typed.

Rated 4.7 out of 5 based on 336 reviews

Results

How to compute cone volume and surface

  1. Enter a radius greater than 0. The default is 3.
  2. Enter a height greater than 0. The default is 4, so slant height is 5.
  3. Read volume, slant height, lateral area, and total surface area.
  4. Keep radius and height in the same unit. Volume is then that unit cubed.

Right circular cone

Volume and surface from radius and perpendicular height

VolumeV = (1/3) π r² h
Slant heightl = hypot(r, h)
Lateral areaπ r l
Total surfaceπ r (r + l), base included
Default exampler = 3, h = 4, l = 5, V = 12π
πJavaScript Math.PI

What this cone page computes

A right circular cone has a circular base and an apex above the center. You type radius and perpendicular height. Volume is (1/3) π r² h. The slant is the generator from the base rim to the apex. The page includes the base in total surface area. An oblique cone or a frustum is not modeled.

How volume and surface are computed

Volume = (1/3) π r² h. Slant l = hypot(r, h). Lateral area = π r l. Total surface = π r (r + l). The default 3-4-5 triple is a Pythagorean check on slant. A right circular cylinder with the same r and h is three times this volume on the cylinder page.

Cone, cylinder, and sphere

A sphere uses a single radius on the sphere page. Ice-cream-cone composites are two solids you add yourself. Construction pile takeoffs that are not right cones need another sketch. Math.PI is a floating-point value, not a hand-typed 22/7.

Use cases

A geometry homework 3-4-5 cone, a party-hat net check, or a grain-hopper sketch that you already treat as a right cone. Funnel truncation is a frustum, not this form.

Limits

Radius and height must be greater than 0. No frustum. No slant as an input. No units conversion. IEEE floating point applies. CZNull does not receive the numbers.

Cone calculator questions

What is the volume formula?
V = (1/3) π r² h. For r = 3 and h = 4, volume is 12π.
Why is slant 5 in the default?
hypot(3, 4) is 5. The page uses that as the generator length.
Does total surface include the base?
Yes. Total surface is π r (r + l).
Is this a frustum?
No. A frustum needs two radii. This page is a full right cone.
How does a cylinder compare?
A right cylinder with the same r and h has volume π r² h, three times this cone.
Which π is used?
The browser Math.PI value.