Before we start, one reminder of the notation so every symbol is earned:
x and y are the coordinates of a moving point: x is how far right/left of the origin that point sits, y is how far up/down. Together the pair (x,y) names one dot on the plane.
(h,k) is the center — the fixed point everything measures distance to.
r is the radius — the fixed distance every point on the circle keeps from the center. Because r is a distance, it is always r≥0; a genuine circle needs r>0, and r=0 collapses to a single point.
The equation (x−h)2+(y−k)2=r2 says: "for a moving point (x,y), its squared distance to (h,k) stays equal to r2."
False — the form subtracts the center, so (y+5)=(y−(−5)) gives k=−5. The center is (2,−5).
The equation (x−1)2+(y−4)2=9 has radius 9.
False — the right side is r2, so r=9=3. The radius is 3, not 9.
x2+y2=r2 is just the special case where the center sits at the origin.
True — plug h=k=0 into the standard form; the subtractions vanish and you get x2+y2=r2.
The equation (x−3)2+(y−1)2=−4 describes a circle of radius 2.
False — the left side is a sum of squares, always ≥0, so it can never equal a negative number. This equation has no points at all (empty set).
(x−3)2+(y−1)2=0 is a valid circle.
Only in a degenerate sense — a sum of squares equals 0 only when both are 0, so the "circle" shrinks to the single point (3,1), a radius-zero circle.
For the circle (x−2)2+(y+5)2=9, the point (2,−5) satisfies "left side <r2", so it lies inside.
True — plugging the center in gives left side =0<9, and a point strictly closer than the radius is inside the circle (the center is the "most inside" point).
The equation 2(x−1)2+2(y−2)2=18 is not in standard form, so you cannot read the center directly.
Half true — the leading 2 must be divided out first. Dividing gives (x−1)2+(y−2)2=9, so center (1,2), radius 3. You can read it, but only after making the coefficient 1.
Multiplying both sides of a circle equation by a positive constant changes the circle.
False — a positive factor scales both sides equally so the solution set is untouched: (x−h)2+(y−k)2=r2 and 3(x−h)2+3(y−k)2=3r2 draw the same circle. But this only works for positive constants: multiplying by 0 collapses it to 0=0 (true everywhere — no longer a circle), and by a negative number makes the right side negative while the left stays ≥0 (no solutions). Only dividing to coefficient 1 lets you read r.
If a point makes the left side of the equation larger than r2, the point is outside the circle.
True — the left side is the squared distance to the center. Larger squared distance means the point is farther than r, hence outside.
If a point makes the left side smaller than r2, the point is on the circle.
False — smaller than r2 means the point is closer than the radius, so it lies inside, not on. Only exact equality with r2 puts a point on the circle.
The circle x2+y2=25 and the circle (x)2+(y)2=25 are the same.
True — they're literally the same equation written with redundant parentheses; both are centered at the origin with radius 5.
Two circles with the same radius but different centers have the same equation.
False — the center (h,k) appears explicitly in the equation, so different centers give genuinely different equations even at equal radius.
A student writes: "Circle with center (4,−1), radius 6, so equation is (x−4)2+(y−1)2=6." Find both mistakes.
Two errors: (1) the sign — k=−1 needs (y−(−1))2=(y+1)2, not (y−1)2; (2) the radius must be squared — right side is r2=36, not 6. Correct: (x−4)2+(y+1)2=36.
A student says "for (x+7)2+(y−2)2=16 the center is (−7,2) and radius 16." What's wrong?
The center is right (x+7=x−(−7) gives h=−7), but the radius is wrong: r=16=4, not 16.
A student "simplifies" (x−2)2+(y−3)2=25 into x2+y2=25 by "removing the shifts." Why is this fatal?
You cannot just drop −2 and −3; that moves the center from (2,3) to (0,0), producing an entirely different circle. The shifts encode the center's position.
A student solving "does (0,0) lie on (x−3)2+(y−4)2=25?" writes −32+−42=25 and gets −9−16=−25=25, concluding "no." Find the error.
They mishandled signs: (0−3)2=(−3)2=+9 and (0−4)2=+16, giving 9+16=25=25. The point does lie on the circle. Squaring a negative gives a positive.
A student checks "is (3,4) inside (x−3)2+(y−4)2=25?", plugs in, gets 0, and says "no, because it's not 25." What went wrong?
Getting 0 (which is <25) actually means the point is inside — it's the center itself. They confused "not on the circle" with "not related to the circle"; inside is a valid answer.
A student writes the radius as r=−5 because "the equation gave r2=25." What's the flaw?
Radius is a distance, so r>0 always; we take the positive root r=+5. The negative root has no geometric meaning here.
A student claims (x−h)2+(y−k)2=r2 came from the Pythagorean theorem directly, "no distance formula needed." Is the reasoning empty?
Not empty but incomplete — the Distance Formulais the Pythagorean Theorem applied to the horizontal leg (x−h) and vertical leg (y−k). Saying "Pythagoras" and "distance formula" name the same step.
Why do we square both sides during the derivation instead of leaving the square root?
To get a clean polynomial equation with no radical. It's valid because both sides (distance and r) are non-negative, so squaring neither creates nor destroys solutions.
Why does a minus inside the equation correspond to a positive center coordinate?
The template literally subtracts the center: (x−h). If you see (x−3), matching (x−h) forces h=+3. The equation is built to become zero at the center.
Why can't the right side of a genuine circle equation be negative?
The left side is a sum of two squares, which is always ≥0. A negative right side is unreachable, so no (x,y) satisfies it — no circle exists.
Why does substituting a point and getting equality prove the point is on the circle?
The equation encodes "squared distance to center =r2." Equality means the point sits exactly distance r away, which is the definition of lying on the circle.
Why does comparing the left side to r2 (rather than computing an actual square root) already tell you inside/on/outside?
Because squaring preserves order for non-negative numbers: if squared distance <r2 then distance <r. So the cheap comparison of (x−h)2+(y−k)2 with r2 gives the zone without ever taking a root.
Why is standard form usually better than expanding into general form?
Standard form shows the center and radius at a glance; expanding hides them inside coefficients D,E,F that you'd have to un-scramble with Completing the Square.
Why is a circle a special case within Conic Sections?
A circle is an ellipse whose two axis-lengths are equal (a=b), so every direction from the center is stretched the same amount — the "eccentricity" is zero.
Why does knowing the center and one point on the circle fully determine the equation?
The point's distance from the center is the radius, via the Distance Formula. Once you have center and radius, the standard form is fixed.
What does (x−h)2+(y−k)2=0 represent geometrically?
A single point (h,k) — a degenerate "circle" of radius 0, since a sum of squares is zero only when each term is zero.
As r→0+ (recall: r shrinking toward 0 but staying positive), what happens to the circle?
It shrinks continuously toward its center, collapsing into the single point (h,k) in the limit. Every point on the circle rushes inward to the center.
As r grows very large while the center stays fixed, what happens to a small nearby patch of the circle?
The curvature drops, so any short arc looks flatter — locally the circle approximates a straight line. A huge circle is nearly straight near any point.
Why does multiplying both sides by a positive constant keep the circle, but multiplying by zero or a negative number destroys it?
A positive factor scales both sides equally, so the solution set is untouched. Multiplying by 0 collapses the equation to 0=0 (true for every point — no longer a circle); a negative factor makes the right side negative while the left stays ≥0, giving no solutions at all.
Can two different values of r ever give the same circle if the center is unchanged?
No — a larger r always encloses more area and passes through different points, so the circle changes. Radius and circle are in one-to-one correspondence for a fixed center.
Is (x−h)2+(y−k)2=r2 ever satisfied by no points even when r2>0?
No — as long as r2>0 there are infinitely many real solutions (the full circle). Emptiness only occurs when the right side is negative.
Does the standard form work if the center has non-integer or negative coordinates, e.g. (−1.5,32)?
Yes — h and k can be any real numbers. You just write (x−(−1.5))2=(x+1.5)2 and (y−32)2; the sign and squaring rules are unchanged.
Think of these links as neighbouring rooms; here's the picture each one adds to the circle equation.
Distance Formula — imagine a right triangle stretched from the center to a point on the ring: its horizontal leg is (x−h), its vertical leg is (y−k), and its slanted side is the radius. That triangle is the engine behind every "which zone?" trap.
Pythagorean Theorem — the same triangle, viewed as leg2+leg2=hypotenuse2. Rename the hypotenuse r and you have the circle equation.
General Form of Circle — picture the tidy standard form after you multiply everything out: the center and radius get "scrambled" into loose coefficients x2+y2+Dx+Ey+F=0. Same circle, uglier costume.
Completing the Square — the reverse move: it re-folds that scrambled form back into two neat squared brackets, snapping the center and radius back into view.
Conic Sections — zoom out to the family portrait: slice a cone straight across and you get a circle; tilt the slice and it stretches into an ellipse. The circle is the ellipse whose two "stretch axes" are equal.
Equation of Tangent to Circle — picture a straight line just kissing the ring at one point; the circle equation is what pins down exactly where and at what slope.
Parametric Equations of Circle — picture a dot marching around the ring as an angle sweeps; cos and sin report its x and y at each instant, tracing the same circle a different way.