HomeGeometry › Sphere Calculator

Sphere Calculator

Computes the volume, surface area, diameter and great-circle circumference of a sphere from its radius. The volume is in the cube and the surface area in the square of the input unit.

When to use

You need the volume or surface area of a ball, globe, bubble or planet from its radius.

Do not use when: The object is a hemisphere or spherical cap (halve or use the cap formula), an ellipsoid, or you only need a flat circle (use circle).

Formula

volume = 4/3 · π · radius³; surface_area = 4 · π · radius²; diameter = 2 · radius; great_circle_circumference = 2 · π · radius

Inputs

ParameterTypeUnitRequiredDescription
radiusnumberunitsyesRadius of the sphere (half the diameter). Range: > 0

Outputs

OutputTypeUnitDescription
volumenumberunits³4/3 × π × r³.
surface_areanumberunits²4 × π × r².
diameternumberunits2 × r.
great_circle_circumferencenumberunits2 × π × r, the length of the equator of the sphere.

Example

Radius 2: {"radius":2}{"volume":33.5103,"surface_area":50.2655,"diameter":4,"great_circle_circumference":12.5664}

Earth mean radius 6371 km: {"radius":6371}{"volume":1083206916846,"surface_area":510064472,"great_circle_circumference":40030.1736}

GET https://tttkmbb.com/api/v1/calculate/sphere?radius=2

Machine access

Sources

FAQ

I know the diameter, not the radius.

Enter half the diameter. Doubling the radius multiplies the surface area by 4 and the volume by 8.

How do I find the radius from a volume?

r = (3 × volume / (4π))^(1/3). Enter that radius to get the other properties.

Related calculators