Graphing a Circle- Equation and Plotting Guide
What Is a Circle Equation?
A circle is a set of points equidistant from a single center point. The equation tells you exactly where that center sits and how big the circle is.
The standard form of a circle equation is:
(x − h)² + (y − k)² = r²
Where:
- h = x-coordinate of the center
- k = y-coordinate of the center
- r = radius (distance from center to edge)
That's it. Memorize this. Everything else is just variations of this formula.
How to Read the Equation
Take (x − 3)² + (y + 2)² = 16 as an example.
The center is at (3, −2). Notice the signs flip — if you see (x − h), the center's x-value is positive h. If you see (x + 2), that means h = −2.
The radius is √16 = 4. The right side of the equation is always r², so you square root it to get the actual radius.
Identifying Center and Radius from Different Forms
Sometimes equations aren't in standard form. You need to complete the square to extract the center and radius.
When There's No Square Term
Given x² + y² + 4x − 6y − 3 = 0, group the x's and y's:
(x² + 4x) + (y² − 6y) = 3
Complete the square:
- x² + 4x → (x + 2)² − 4
- y² − 6y → (y − 3)² − 9
Substitute back:
(x + 2)² − 4 + (y − 3)² − 9 = 3
(x + 2)² + (y − 3)² = 16
Center: (−2, 3). Radius: 4.
When the Radius is on the Left
Some textbooks write (x − h)² + (y − k)² = r². If they give you something like (x − 1)² + (y + 5)² = 25, the radius is √25 = 5. No surprises here.
Circle Equation Forms Compared
| Form | Equation | Center | Radius |
|---|---|---|---|
| Standard | (x − h)² + (y − k)² = r² | (h, k) | r |
| General | x² + y² + Dx + Ey + F = 0 | (−D/2, −E/2) | √[(D² + E²)/4 − F] |
| Parametric | x = h + r cos θ, y = k + r sin θ | (h, k) | r |
The general form is what you get when you expand everything. The parametric form is useful for tracing points around the circle using angles.
How to Plot a Circle on a Graph
Here's the straightforward method:
- Find the center from (h, k)
- Find the radius by taking √r²
- Plot the center point
- Mark points r units away in four directions: up, down, left, right
- Connect the dots with a smooth curve
For a circle with center (2, 3) and radius 5:
- Plot (2, 3)
- Mark (2, 8), (2, −2), (−3, 3), (7, 3)
- Draw the circle through those four points
The four cardinal points always land on the circle. Use them as anchors.
Common Mistakes to Avoid
- Forgetting to flip the sign — (x + 3)² means h = −3, not +3
- Squaring the radius wrong — if r² = 9, the radius is 3, not 9
- Not completing the square when the equation is in general form
- Drawing a sphere instead of a circle — this is 2D, not 3D
Practical Example: Full Walkthrough
Given x² + y² − 10x + 4y + 13 = 0
Step 1: Move constants to the right side
x² − 10x + y² + 4y = −13
Step 2: Complete the square for x
x² − 10x = (x − 5)² − 25
Step 3: Complete the square for y
y² + 4y = (y + 2)² − 4
Step 4: Substitute and simplify
(x − 5)² − 25 + (y + 2)² − 4 = −13
(x − 5)² + (y + 2)² = 16
Result: Center at (5, −2), radius = 4.
When You Need Parametric Form
Parametric equations trace the circle using angles:
x = h + r cos θ
y = k + r sin θ
For a circle centered at (3, 1) with radius 6:
- θ = 0 → (9, 1)
- θ = π/2 → (3, 7)
- θ = π → (−3, 1)
- θ = 3π/2 → (3, −5)
Use this when you need specific points at specific angles, like in computer graphics or physics problems.
Quick Reference
- Equation always has equal coefficients on x² and y²
- No xy term in standard form
- If you see an xy term, the circle is rotated — that's a different problem
- The radius squared must be positive, otherwise it's not a real circle
Graphing circles comes down to extracting three numbers: h, k, and r. Once you have those, plotting is mechanical. The only thing that trips people up is the sign flipping in the parentheses — watch for that and you're fine.