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

Your feedback helps us improve.

About

Miscalculating a circle's properties propagates errors through every downstream computation - pipe cross-sections, wheel tolerances, irrigation coverage, orbital mechanics. This calculator derives all principal circle metrics from a single known value: r (radius), d (diameter), C (circumference), or A (area). It uses π at full IEEE 754 double-precision (15 significant digits) rather than the truncated 3.14 approximation that introduces measurable drift in engineering contexts. An optional central angle θ unlocks arc, sector, segment, and chord calculations.

The tool assumes a Euclidean plane. Results deviate on curved surfaces (spherical or hyperbolic geometry). For physical applications, account for manufacturing tolerances. Pro tip: when computing pipe flow area, use the inner radius, not the nominal diameter.

circle calculator circle area circumference arc length sector area segment area chord length geometry radius calculator pi

Formulas

All circle properties derive from a single parameter: the radius r. The fundamental relationships are:

A = πr2
C = 2πr
d = 2r

When a central angle θ (in degrees) is provided, partial-circle metrics become available:

L = θ360 × 2πr
As = θ360 × πr2
Aseg = r22 (θrad sin(θrad))
c = 2r sin(θrad2)

Where r = radius, d = diameter, C = circumference, A = area, L = arc length, As = sector area, Aseg = segment area, c = chord length, θ = central angle in degrees, θrad = central angle in radians, and π 3.14159265358979.

Inverse derivations used when the input is not radius: r = d2, r = C2π, r = Aπ.

Reference Data

PropertySymbolFormulaUnit (SI)Notes
RadiusrGiven or derivedmPrimary input; all others derive from this
Diameterdd = 2rmLongest chord through center
CircumferenceCC = 2πrmPerimeter of the circle
AreaAA = πr2m2Enclosed planar region
Arc LengthLL = θ360 × 2πrmRequires central angle θ
Sector AreaAsAs = θ360 × πr2m2"Pizza slice" region
Segment AreaAsegAseg = r22(θrad sin(θrad))m2Region between chord and arc
Chord Lengthcc = 2r sin(θ2)mStraight line between arc endpoints
Piπ3.14159265358979 - Ratio of circumference to diameter
Semicircle AreaA½πr22m2θ = 180°
Quadrant AreaA¼πr24m2θ = 90°
Inscribed Square Sideainain = r2mLargest square fitting inside the circle
Circumscribed Square Sideaoutaout = 2rmSmallest square containing the circle
Annulus AreaAannπ(R2 r2)m2Requires outer radius R
Radian Conversionθradθrad = θ π180radDegrees to radians
Full Revolution - 360° = 2π rad - Complete rotation

Frequently Asked Questions

JavaScript uses IEEE 754 double-precision floats, providing approximately 15-17 significant decimal digits. For radii beyond 1015 or below 10-15, rounding errors accumulate - particularly in the area formula where squaring amplifies relative error. This calculator displays up to 10 decimal places. For sub-nanometer or astronomical scales, consider arbitrary-precision libraries.
The segment area formula Aseg = (r2 ÷ 2)(θrad sin(θrad)) approaches zero as θ approaches 0° because the Taylor expansion of sin(x) x x3/6 makes the difference vanishingly small. The result is always non-negative for 0 θ 360°. Negative values indicate an input error.
No. All formulas assume a flat Euclidean plane. A circle on a sphere (spherical cap) has area 2πRsphereh, which differs from πr2. For an ellipse, use A = πab where a and b are semi-axes. This tool does not handle those cases.
A sector is the "pizza slice" bounded by two radii and the arc between them. A segment is the region between a chord and the arc it subtends. The segment area equals the sector area minus the triangle formed by the two radii and the chord: Aseg = As 12r2sin(θrad).
The conversion is θrad = θdeg × π ÷ 180. Common values: 90° = π/2 rad, 180° = π rad, 360° = 2π rad. This calculator accepts degrees and converts internally.
Yes. For θ > 180°, the chord length represents the straight-line distance across the major arc's endpoints. The chord reaches its maximum (c = 2r, the diameter) at θ = 180°, then decreases symmetrically back to 0 at 360°.