Center of a Circle Calculator

Enter the coordinates of three points that lie on a circle to find its center (h, k), radius, and area using the circumcenter formula.

Quick Facts

Uniqueness
3 points fix exactly 1 circle
Any three non-collinear points determine exactly one circle; the center is equidistant from all three — that distance is the radius.
Right-triangle shortcut
Center = hypotenuse midpoint
If the three points form a right triangle, the circumcenter sits exactly at the midpoint of the hypotenuse — a fast way to sanity-check a result.

Your Results

Calculated
Center x-coordinate (h)
-
Horizontal position of the center
Center y-coordinate (k)
-
Vertical position of the center
Radius (r)
-
Distance from center to each point
Circle area
-
π × r², in square units

Ready

Enter three non-collinear points, then press Calculate.

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.

Frequently Asked Questions

Why do I need three points instead of two?
Two points alone do not fix a circle — infinitely many circles pass through any two points, one for every possible radius. A third point that is not on the line through the first two pins down exactly one circle, which is why this calculator asks for three points.
What happens if my three points are collinear?
If all three points fall on a single straight line, no finite circle passes through all of them. The calculator detects this case (the formula's denominator becomes zero) and asks you to choose points that are not all in a line.
How is the radius calculated once the center is known?
The radius is the distance from the computed center (h, k) to any one of the three input points, using r = the square root of (h−x)² + (k−y)². All three points give the same radius, which is a quick way to check the result by hand.
What unit will the center and radius be in?
Whatever unit you entered the coordinates in. If your x and y values are in centimeters, the center and radius are in centimeters too, and the area is in square centimeters.