Intuition The One Core Idea
A circle equation is nothing more than a disguised sentence: "every point that sits exactly r steps away from a fixed centre." The whole topic is learning to read that sentence whether it's written neatly (standard form) or scrambled up (general form), and to translate between the two without losing the treasure — the centre — hidden inside.
This page assumes you have seen nothing . We are going to build a circle equation one symbol at a time . By the last section every mark you meet in the parent topic will already have a plain meaning and a picture — and each new symbol will lean only on the ones introduced before it.
Even the tiniest marks need a meaning before we lean on them.
Definition Equals, plus, minus, zero
= means "the thing on the left is the same number as the thing on the right". It is a balance , not an instruction to compute.
+ means add (put together); − means subtract (take away, or "the gap between").
0 means nothing left over — perfect balance, an empty amount.
Later, many of our sentences will end with "= 0 ". That just says: after combining everything, the two sides balance with nothing left over. It is a tidy way to write a rule, nothing scary.
Keep these four in your pocket — every formula below is built out of them.
Definition Point and coordinates
A point is a single spot on a flat sheet. To name it we use two numbers, written ( x , y ) .
The first number x says how far right (positive) or left (negative) of the middle.
The second number y says how far up (positive) or down (negative).
The middle spot ( 0 , 0 ) is the origin .
Look at the figure: the point ( 3 , 2 ) is found by walking 3 steps right, then 2 steps up. That pair of numbers is its address . Every circle we discuss is just a collection of addresses that all obey one rule.
Why the topic needs this: the equation of a circle is a test you apply to an address ( x , y ) — plug the two numbers in, and if the equation is satisfied, that point is on the circle. No coordinate plane, no equation.
A variable is a letter standing for a number we haven't pinned down yet. In a circle equation x and y are variables: they roam over every possible address on the plane, and the equation decides which ones "pass".
Intuition Two jobs for a letter
Some letters (like x , y ) mean "any point — you tell me". Other letters (like the centre's h , k or the radius r ) are fixed for one particular circle — they are the circle's identity. Keeping these two jobs separate is the single most important habit in this whole chapter.
The distance rule (next section) needs two operations. We earn them here , before they appear.
2 (squaring)
Writing a small 2 above and to the right, like a 2 , is shorthand for "multiply that thing by itself ": a 2 = a × a . So 5 2 = 25 and ( x − h ) 2 = ( x − h ) × ( x − h ) .
Geometrically, a 2 is the area of a square whose side is a . A key bonus: squaring makes negatives and positives count the same, since ( − 3 ) 2 = 9 = 3 2 — the sign is forgotten, only the size survives.
Definition The square-root sign
a asks the opposite question: "which positive number, when squared, gives what's inside?" So 25 = 5 because 5 2 = 25 . It undoes squaring.
One warning we will need later: you cannot take the square root of a negative number and get a real length — no real number squared is negative.
With these two tools defined, we may now build distance.
Before "circle" can mean anything, we need "how far apart are two points?"
Definition Distance between two points
Given points ( x 1 , y 1 ) and ( x 2 , y 2 ) , walk the horizontal gap Δ x = x 2 − x 1 and the vertical gap Δ y = y 2 − y 1 . These form the two short sides of a right-angled triangle; the straight-line distance is the long side (hypotenuse):
d = ( x 2 − x 1 ) 2 + ( y 2 − y 1 ) 2
Why the square root, and why the squares? Look at the red triangle in the figure. The horizontal leg and vertical leg meet at a right angle. The Pythagoras rule says: (long side)2 = (leg 1)2 + (leg 2)2 . We square the two gaps (section 3), add them, and then take the square root to undo the squaring and recover the actual slanted length. That square root is the only tool that turns two perpendicular gaps into one straight distance.
Why the topic needs this: a circle is defined as all points at a fixed distance from a centre. Distance is literally the definition machinery.
Pick a fixed point C = ( h , k ) called the centre , and a fixed positive length r called the radius . The circle is the set of all points ( x , y ) whose distance from C equals exactly r .
In the figure, every point on the orange ring is the same distance r from the teal centre. Points inside are closer than r ; points outside are farther. The circle is the exact boundary.
Now write that sentence in symbols using the distance rule from section 4, with ( x 1 , y 1 ) = ( h , k ) and ( x 2 , y 2 ) = ( x , y ) :
( x − h ) 2 + ( y − k ) 2 = r
Squaring both sides (to get rid of the awkward root — a legal move because both sides are positive) gives the standard form :
( x − h ) 2 + ( y − k ) 2 = r 2
This is the neat, un-disguised sentence. See Standard form of circle for its full treatment.
We already know squaring (section 3). The remaining subtlety here is the minus sign and what it does to the centre.
x − h and not x + h
x − h is the horizontal gap from the centre's x -coordinate h to the point's x -coordinate x . If the point is right of centre, x − h is positive; if left, negative. Squaring then forgets the direction and keeps only the size.
Common mistake The sign flip that causes 90% of errors
In ( x − h ) 2 the number that appears is − h , but the centre's coordinate is + h . So if you see ( x − 3 ) 2 , the centre's x is + 3 , not − 3 . The minus in the formula and the coordinate itself always disagree in sign.
This is the exact reason the general form's centre comes out as ( − g , − f ) — the disagreement, one more time.
Expand the standard form (multiply everything out). Using ( x − h ) 2 = x 2 − 2 h x + h 2 :
x 2 − 2 h x + h 2 + y 2 − 2 k y + k 2 = r 2
x 2 + y 2 call 2 g − 2 h x call 2 f − 2 k y + call c ( h 2 + k 2 − r 2 ) = 0
Definition The general form and the letters
g , f , c
The result above, tidied up, is the general form of a circle:
x 2 + y 2 + 2 g x + 2 f y + c = 0
The letters are nicknames for the messy expanded coefficients:
2 g = the whole coefficient sitting in front of x , so g = − h .
2 f = the whole coefficient sitting in front of y , so f = − k .
c = the lonely constant with no x or y , equal to h 2 + k 2 − r 2 .
We use 2 g (not just g ) because halving it later is what "completing the square" needs — the 2 is a gift for future-you.
It is the same circle as the standard form, just multiplied out and disguised. Recovering h , k , r from g , f , c is the parent topic's entire job, and the tool that does it is Completing the square .
The radius comes out as r = g 2 + f 2 − c . Whether that even makes sense is decided by comparing the inside to zero, so we need the comparison marks.
Definition Greater-than, equals, less-than
a > b means "a is strictly bigger than b ".
a = b means "a is exactly b " (already met in section 0).
a < b means "a is strictly smaller than b ".
The wide end of > and < always faces the bigger number, like a mouth eating the larger meal.
Intuition Why the comparison to zero matters
Look at what's under the root, g 2 + f 2 − c :
If g 2 + f 2 − c > 0 — a real circle with a genuine positive radius.
If g 2 + f 2 − c = 0 — the radius is 0 : the circle shrinks to a single dot (point circle ).
If g 2 + f 2 − c < 0 — the root of a negative number is not a real length, so there is no real circle (imaginary).
These three comparisons are the gatekeeper that sorts every general-form equation into real, degenerate, or impossible.
Just as important as what's there is what's missing.
Definition Why coefficients of
x 2 and y 2 must both be 1 , and why no x y term
A true circle looks the same in every direction. That symmetry forces the x 2 and y 2 terms to carry the same coefficient (we scale it to 1 ), and forbids any x y term. If the coefficients differ or an x y appears, you have an ellipse or hyperbola instead — see Conic sections general equation .
Coordinate plane and points x,y
Distance between two points
Pythagoras right triangle
Expand and rename to g,f,c
General form to centre and radius
Validity check greater than 0
Every arrow means "you need the left box before the right box makes sense". Notice the topic sits at the very bottom — it is the destination , and every foundation above feeds into it.
Standard form of circle — the tidy sentence we start and end at
Completing the square — the single reversing tool of the whole topic
Equation of circle from endpoints of diameter — a common way general form appears
Tangent to a circle — builds directly on knowing the centre and radius
Family of circles — many circles at once, written in general form
Conic sections general equation — where circles sit among ellipses and hyperbolas
↑ Parent topic
Give each a plain answer out loud before revealing.
I know what = , + , − and 0 each mean = is balance (same number both sides); + add; − subtract or "gap"; 0 is nothing left over.
I can name any point on the plane using two numbers, and I know which is right/left and which is up/down Yes — first number is horizontal (right +), second is vertical (up +); origin is ( 0 , 0 ) .
I know the difference between a variable (x , y ) and a fixed identity number (h , k , r ) Variables roam over all points; h , k , r are fixed for one particular circle.
I can explain what a 2 and a mean and how they undo each other a 2 = a × a ;
a asks "which positive number squared gives
a " — it reverses squaring.
I can state the distance between ( x 1 , y 1 ) and ( x 2 , y 2 ) and say why there's a square root d = ( x 2 − x 1 ) 2 + ( y 2 − y 1 ) 2 ; the root undoes Pythagoras' squaring to give the true hypotenuse length.
I can define a circle in one sentence using distance All points ( x , y ) whose distance from centre ( h , k ) equals the fixed radius r .
I can explain why ( x − 3 ) 2 means the centre's x is + 3 The formula subtracts the coordinate, so the sign inside is the opposite of the coordinate itself.
I can say what g , f , c are nicknames for g = − h , f = − k , c = h 2 + k 2 − r 2 — the coefficients you get after expanding standard form.
I know why x 2 and y 2 need coefficient 1 and no x y term is allowed A circle is symmetric in all directions; unequal coefficients or an x y term make it an ellipse/hyperbola.
I know what g 2 + f 2 − c > 0 , = 0 , and < 0 each mean > 0 real circle; = 0 point circle (radius 0 ); < 0 imaginary (no real points).