Formula and method for Center of a Circle
A circle is uniquely determined by any three points on its edge, as long as the three points don't all sit on one straight line. This calculator uses the classic circumcenter formula from coordinate geometry: given three points (x₁,y₁), (x₂,y₂), and (x₃,y₃), it solves for the single point (h, k) that sits the same distance from all three — that point is the circle's center, and that shared distance is the radius.
How the calculation works
Let D = 2 × [x₁(y₂−y₃) + x₂(y₃−y₁) + x₃(y₁−y₂)]. The center coordinates are then:
- h = [(x₁²+y₁²)(y₂−y₃) + (x₂²+y₂²)(y₃−y₁) + (x₃²+y₃²)(y₁−y₂)] ÷ D
- k = [(x₁²+y₁²)(x₃−x₂) + (x₂²+y₂²)(x₁−x₃) + (x₃²+y₃²)(x₂−x₁)] ÷ D
The radius is the straight-line distance from (h, k) to any one of the three input points: r = √[(h−x₁)² + (k−y₁)²]. Once the radius is known, the area follows directly from π × r².
Common mistakes
- Collinear points: if all three points lie on one straight line, D = 0 and there is no finite circle through them — the calculator flags this instead of returning a false result.
- Duplicate or near-duplicate points: entering the same point twice, or two points that are extremely close together, makes the geometry nearly collinear and produces an unstable, unreliable center.
- Mixed units or scales: all six coordinates must be in the same unit (inches, meters, pixels) — mixing units silently shifts the computed center.
Real-world applications
- Machinists and CNC programmers locate the center of a circular hole, boss, or arc from three measured edge points.
- Surveyors and civil engineers find the center of a curved road, pipe, or property boundary from field survey points.
- Conservators and archaeologists reconstruct the diameter of a broken pot rim, wheel, or column from three surviving points.
- Game and sports-field designers use the same three-point method to lay out circular arcs and boundaries accurately.