User Rating 0.0
Total Usage 0 times
units
°
Is this tool helpful?

Your feedback helps us improve.

About

Miscalculating a circle's dimensions propagates errors through every dependent measurement - pipe cross-sections, wheel clearances, irrigation coverage, antenna gain patterns. This calculator derives all principal circle metrics from a single known quantity: r (radius), d (diameter), C (circumference), or A (area). It uses IEEE 754 double-precision π3.141592653589793, yielding roughly 15 significant digits before floating-point truncation. Results include arc length and sector/segment areas for any central angle θ, which matter in cam design, pizza portioning, and land surveying alike.

The tool assumes a perfect Euclidean circle on a flat plane. For geodesic arcs on Earth's surface, curvature corrections apply at radii above ~10 km. All angular inputs accept degrees; internal computation converts to radians via θrad = θdeg π ÷ 180. Pro tip: when measuring physical circles, measure diameter rather than radius - it passes through the center, reducing parallax error by half.

circle calculator circumference area of circle arc length sector area radius diameter geometry pi

Formulas

All circle measurements derive from a single parameter: the radius r. Given any one of the four base quantities, the calculator inverts to find r, then computes the rest.

d = 2r

C = 2πr

A = πr2

L = rθ

As = 12r2θ

c = 2r sin(θ2)

Aseg = 12r2(θ sinθ)

Inverse relations for recovering r from other knowns:

r = d2

r = C2π

r = Aπ

Where r = radius, d = diameter, C = circumference, A = area, θ = central angle in radians, L = arc length, As = sector area, c = chord length, Aseg = segment area. All angular inputs are internally converted: θrad = θdeg × π ÷ 180.

Reference Data

PropertySymbolFormula from rUnit (SI)Example (r = 5)
Radiusr - m5.000
Diameterd2rm10.000
CircumferenceC2πrm31.416
AreaAπr2m278.540
Arc LengthLrθm7.854 (90°)
Sector AreaAs12r2θm219.635 (90°)
Chord Lengthc2r sin(θ÷2)m7.071 (90°)
Segment AreaAseg12r2(θ sinθ)m27.135 (90°)
Sagitta (Height)hr(1 cos(θ÷2))m1.464 (90°)
Inscribed Square Sideainr2m7.071
Circumscribed Square Sideaout2rm10.000
Inscribed Hex Sideshexrm5.000
Curvatureκ1rm−10.200
Sphere Surface (same r)S4πr2m2314.159
Sphere Volume (same r)V43πr3m3523.599
π Approximationπ - - 3.14159265358979

Frequently Asked Questions

The tool uses IEEE 754 double-precision floating point, giving roughly 15-16 significant digits for π. Textbooks typically truncate to 3-5 digits. You can use the precision selector to match your required significant figures. For engineering work, 4-6 digits usually suffice; for CNC machining tolerances below 0.001 mm, use maximum precision.
Sector area As = 12r2θ includes the triangular portion from center to chord. Segment area subtracts that triangle: Aseg = As 12r2sinθ. At 180°, the segment equals a semicircle area minus zero triangle (since sin180° = 0), so segment = sector.
Diameter mode. When measuring a physical circle (pipe, wheel, hole), calipers measure diameter directly across the object. Radius requires locating the exact center, which introduces positioning error. Circumference measurement with a tape is prone to slippage and stretching. Area is almost never measured directly - it is computed.
The calculator clamps the angle to the range 0 - 360°. An angle of 360° yields a full circle: arc length equals circumference, sector area equals total area, and chord length returns to 0 (the chord endpoints coincide). Angles beyond one full revolution are geometrically redundant for a single-pass arc.
Yes, within JavaScript's 64-bit float range: approximately 5 × 10−324 to 1.8 × 10308. For astronomical scales (e.g., planetary orbits at 1011 m), precision is about 1 mm. For atomic scales (10−10 m), you retain ~6 significant figures. The tool displays a warning if input approaches float limits.
Yes. The formula Aseg = 12r2(θ sinθ) is valid for 0 < θ 2π. When θ > π, sinθ becomes negative, so the subtraction actually adds area - correctly producing the major segment. No special-case logic is needed.