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:

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:

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:

  1. Find the center from (h, k)
  2. Find the radius by taking √r²
  3. Plot the center point
  4. Mark points r units away in four directions: up, down, left, right
  5. Connect the dots with a smooth curve

For a circle with center (2, 3) and radius 5:

The four cardinal points always land on the circle. Use them as anchors.

Common Mistakes to Avoid

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:

Use this when you need specific points at specific angles, like in computer graphics or physics problems.

Quick Reference

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.