Center of a Circle: Definition, Formula, How to Find

#Geometry
TL;DR
The center of a circle is the single fixed point that sits the same distance, the radius, from every point on the circle. This article covers the definition, the equation form $(x - h)^2 + (y - k)^2 = r^2$, and three ways to find the center: from the equation, from the endpoints of a diameter, and from three points on the circle.
BT
Bhanzu TeamLast updated on June 15, 20269 min read

What Is the Center of a Circle?

The center of a circle is the fixed point in the plane that is equidistant from every point on the circle. That equal distance is the radius. A circle is, by definition, the set of all points a fixed distance from one point, and that one point is its center.

A few facts follow straight from this definition, no formula needed:

  • The center is where all the radii meet. Draw any radius, draw another, and they cross at the center.

  • The center is the midpoint of any diameter. A diameter is a chord that passes through the center, so the center splits it exactly in half.

  • The center does not lie on the circle itself. It sits inside, at distance $r$ from the curve, not on it.

In coordinate geometry the center is written as the point $(h, k)$. The whole job of "finding the center" is finding the two numbers $h$ and $k$.

How to Find the Center of a Circle

There is no single button for this, because the center depends on what you are given. Three situations come up again and again, and each has its own clean method. Here are all three, so you know every route exists rather than memorising just one.

From the equation of the circle

The standard form of a circle's equation is:

$$(x - h)^2 + (y - k)^2 = r^2,$$

where $(h, k)$ is the center and $r$ is the radius. Read directly: the center is the point you subtract inside each squared bracket. Watch the signs, the equation has minus signs built in, so $(x - 3)^2 + (y + 2)^2 = 25$ has center $(3, -2)$, not $(3, 2)$.

When the equation arrives in general form, $x^2 + y^2 + Dx + Ey + F = 0$, it is not yet readable. You complete the square on the $x$ terms and on the $y$ terms to fold it back into standard form, and the center appears. Completing the square is the same algebra move used to find the vertex of a parabola β€” group, halve the coefficient, square it, add it to both sides.

From the endpoints of a diameter

If you know the two ends of a diameter, the center is simply the midpoint of that segment, because the center always cuts a diameter in half. With endpoints $(x_1, y_1)$ and $(x_2, y_2)$:

$$(h, k) = \left(\frac{x_1 + x_2}{2}, \ \frac{y_1 + y_2}{2}\right).$$

This is the midpoint of a line segment formula, applied to the diameter.

From three points on the circle

Given three points the circle passes through, the center is the one point equidistant from all three. The clean geometric route: the center lies on the perpendicular bisector of any chord. Draw the perpendicular bisector of two different chords, and they meet at the center. Algebraically, you can set the distances from $(h, k)$ to all three points equal and solve the resulting linear system for $h$ and $k$.

Where the Center of a Circle Shows Up

The center is not just an exam construction. It is the anchor point of anything circular, and the moment you need to place, aim, or spin a circular object, the center is the quantity you actually solve for.

  • GPS and surveying. Locating a position by distance from several towers is the three-circles problem β€” the same "find the point equidistant from given points" computation, run in reverse. Each tower gives a circle; the location is where they intersect.

  • Engineering and manufacturing. A drilled hole, a turbine shaft, a gear: every rotating part spins about its center. If the true center is off by a fraction, the part wobbles. Coordinate-measuring machines fit a circle to scanned points to recover the exact center, exactly the three-points method above.

  • Astronomy and navigation. Kepler showed planets travel ellipses, not circles, but circular approximations and their centers are still how we first model orbits, radar sweeps, and satellite footprints.

  • Architecture. Domes, arches, and roundabouts are all laid out from a center point staked on the ground first, then the radius is swung out from it.

A circle with no known center is a circle you cannot pin to a map, machine, or blueprint, which is why finding the center comes before almost everything else.

Examples of the Center of a Circle

The problems below move through all three methods, from a one-step read-off to recovering the center from three scattered points. The numbers stay clean so the method stays visible.

Example 1

Find the center of the circle $(x - 4)^2 + (y - 7)^2 = 36$.

The equation is already in standard form, so read the center straight off the brackets. The values subtracted from $x$ and $y$ are the coordinates of the center.

$$h = 4, \qquad k = 7.$$

The center is $(4, 7)$, and as a bonus $r^2 = 36$, so the radius is $6$.

Example 2

Find the center of the circle $(x + 5)^2 + (y - 3)^2 = 49$.

A common first move is to read the center as $(5, 3)$, copying the numbers as they appear. Check it against the definition, though: standard form is $(x - h)^2 + (y - k)^2$, with a minus built in. The bracket $(x + 5)$ is really $(x - (-5))$, so $h = -5$, not $+5$.

Reading $(5, 3)$ would place the center five units to the right of where it belongs, a mirror-image error that flips the whole circle across the y-axis.

Correctly, $(x + 5) = (x - (-5))$ gives $h = -5$, and $(y - 3)$ gives $k = 3$. The center is $(-5, 3)$.

Example 3

Find the center of the circle $x^2 + y^2 - 6x + 8y - 11 = 0$.

This is general form, so complete the square. Group the $x$ terms and the $y$ terms:

$$(x^2 - 6x) + (y^2 + 8y) = 11.$$

Half of $-6$ is $-3$; square it to get $9$. Half of $8$ is $4$; square it to get $16$. Add both to each side:

$$(x^2 - 6x + 9) + (y^2 + 8y + 16) = 11 + 9 + 16,$$

$$(x - 3)^2 + (y + 4)^2 = 36.$$

The center is $(3, -4)$, and the radius is $6$.

Example 4

The endpoints of a diameter are $A(2, 1)$ and $B(8, 9)$. Find the center.

The center is the midpoint of the diameter:

$$(h, k) = \left(\frac{2 + 8}{2}, \ \frac{1 + 9}{2}\right) = (5, 5).$$

The center is $(5, 5)$.

Example 5

A diameter runs from $P(-3, 6)$ to $Q(5, -2)$. Find the center.

Apply the midpoint formula again, this time with negatives in play:

$$h = \frac{-3 + 5}{2} = \frac{2}{2} = 1, \qquad k = \frac{6 + (-2)}{2} = \frac{4}{2} = 2.$$

The center is $(1, 2)$.

Example 6

A circle passes through $A(1, 1)$, $B(5, 1)$, and $C(5, 5)$. Find its center.

Use the perpendicular-bisector idea. Chord $AB$ is horizontal from $(1,1)$ to $(5,1)$; its midpoint is $(3, 1)$, and its perpendicular bisector is the vertical line $x = 3$. Chord $BC$ is vertical from $(5,1)$ to $(5,5)$; its midpoint is $(5, 3)$, and its perpendicular bisector is the horizontal line $y = 3$. The center is where the two bisectors cross:

$$x = 3, \quad y = 3 ;\Rightarrow; (h, k) = (3, 3).$$

Check with distances: from $(3,3)$ to $(1,1)$ is $\sqrt{4 + 4} = \sqrt{8}$, and to $(5,5)$ is $\sqrt{4 + 4} = \sqrt{8}$. Equal, so $(3, 3)$ is correct.

Where Students Trip Up on the Center of a Circle

Mistake 1: Reading the sign of the center backwards

Where it slips in: Reading the center off a standard-form equation that has a plus sign inside a bracket.

Don't do this: Treat $(x + 5)^2 + (y - 3)^2 = 49$ as having center $(5, 3)$.

The correct way: Standard form is $(x - h)^2 + (y - k)^2$, so a plus inside means a negative coordinate: $(x + 5) = (x - (-5))$ gives $h = -5$.

Mistake 2: Skipping the "complete the square" step

Where it slips in: An equation arrives in general form, $x^2 + y^2 + Dx + Ey + F = 0$, and the student tries to read the center directly.

Don't do this: Pull "center" numbers from $x^2 + y^2 - 6x + 8y - 11 = 0$ as written, the coefficients $-6$ and $8$ are not the center.

The correct way: General form hides the center. Complete the square on the $x$ and $y$ groups to fold the equation into standard form first, then read $(h, k)$. The memorizer, the student who knows "center is $(h, k)$" but never practised completing the square, freezes exactly here.

Mistake 3: Averaging the wrong points for "three points"

Where it slips in: Given three points on the circle, a student averages all three coordinates and calls the result the center.

Don't do this: Compute $\left(\frac{x_1 + x_2 + x_3}{3}, \frac{y_1 + y_2 + y_3}{3}\right)$ β€” that is the centroid of the triangle, not the circle's center.

The correct way: The center is equidistant from all three points, which is the circumcenter, found by intersecting perpendicular bisectors of the chords, not by averaging. The centroid and the circumcenter coincide only for an equilateral triangle.

Key Takeaways

  • The center of a circle is the fixed point equidistant from every point on the circle; that distance is the radius.

  • In coordinate form, the center is $(h, k)$ in the equation $(x - h)^2 + (y - k)^2 = r^2$.

  • From an equation in general form, complete the square first, then read the center.

  • From the endpoints of a diameter, the center is their midpoint.

  • From three points, the center is the circumcenter, found by intersecting perpendicular bisectors, not by averaging.

Practice These Problems to Solidify Your Understanding

  1. Find the center of the circle $(x - 2)^2 + (y + 9)^2 = 16$.

  2. Find the center of the circle $x^2 + y^2 + 10x - 4y - 7 = 0$ by completing the square.

  3. A diameter has endpoints $(-4, 3)$ and $(6, -5)$. Find the center.

Answer to Question 1: $(2, -9)$, since $(y + 9) = (y - (-9))$. Answer to Question 2: complete the square to get $(x + 5)^2 + (y - 2)^2 = 36$, so the center is $(-5, 2)$. Answer to Question 3: midpoint $\left(\frac{-4 + 6}{2}, \frac{3 + (-5)}{2}\right) = (1, -1)$. If Question 1 gave you $(2, 9)$, revisit Mistake 1 on reading signs.

Want a live Bhanzu trainer to walk your child through circles, equations, and coordinate geometry? Book a free demo class β€” online globally.

Book a Free Demo

Was this article helpful?

Your feedback helps us write better content

Frequently Asked Questions

What is the center of a circle?
The fixed point inside a circle that is the same distance, the radius, from every point on the circle. All radii meet there, and it is the midpoint of every diameter.
What are the coordinates of the center of a circle?
For a circle written as $(x - h)^2 + (y - k)^2 = r^2$, the center is the point $(h, k)$, where $r$ is the radius.
How do you find the center of a circle with the endpoints of a diameter?
Take the midpoint of the diameter: $(h, k) = \left(\frac{x_1 + x_2}{2}, \frac{y_1 + y_2}{2}\right)$. The center always cuts a diameter in half.
How do you find the center and radius of a circle from its equation?
If it is in standard form, read $(h, k)$ from the brackets and $r$ from the right side. If it is in general form $x^2 + y^2 + Dx + Ey + F = 0$, complete the square first to convert to standard form.
Does the center of a circle lie on the circle?
No. The center sits inside the circle, a distance $r$ from the curve. Only the points on the curve itself, all at distance $r$, lie on the circle.
✍️ Written By
BT
Bhanzu Team
Content Creator and Editor
Bhanzu’s editorial team, known as Team Bhanzu, is made up of experienced educators, curriculum experts, content strategists, and fact-checkers dedicated to making math simple and engaging for learners worldwide. Every article and resource is carefully researched, thoughtfully structured, and rigorously reviewed to ensure accuracy, clarity, and real-world relevance. We understand that building strong math foundations can raise questions for students and parents alike. That’s why Team Bhanzu focuses on delivering practical insights, concept-driven explanations, and trustworthy guidance-empowering learners to develop confidence, speed, and a lifelong love for mathematics.
Related Articles
Book a FREE Demo ClassBook Now β†’