Fiveable

๐Ÿ”ทHonors Geometry Unit 10 Review

QR code for Honors Geometry practice questions

10.3 Equations of circles

10.3 Equations of circles

Written by the Fiveable Content Team โ€ข Last updated August 2025
Written by the Fiveable Content Team โ€ข Last updated August 2025
๐Ÿ”ทHonors Geometry
Unit & Topic Study Guides
Pep mascot

Circles are fundamental shapes in geometry, defined by all points equidistant from a center. Their equations come directly from the Pythagorean theorem, giving you a precise way to describe and analyze circular shapes on the coordinate plane.

Understanding circle equations lets you identify key features like center coordinates and radius length from an algebraic expression. You'll need this for graphing circles, finding domains and ranges, and solving geometric problems that involve circular shapes.

Equations of Circles

Pep mascot
more resources to help you study

Derivation of the circle equation

The standard equation of a circle comes from a straightforward application of the distance formula (which itself is built on the Pythagorean theorem). Here's the reasoning:

  1. Start with a circle that has center (h,k)(h, k) and radius rr.

  2. Let (x,y)(x, y) be any point on the circle. By definition, the distance from (x,y)(x, y) to the center (h,k)(h, k) must equal rr.

  3. The horizontal distance between the point and the center is (xโˆ’h)(x - h), and the vertical distance is (yโˆ’k)(y - k). These two distances form the legs of a right triangle, with the radius as the hypotenuse.

  4. Applying the Pythagorean theorem gives you:

(xโˆ’h)2+(yโˆ’k)2=r2(x - h)^2 + (y - k)^2 = r^2

This is the standard form of the equation of a circle. It works for any circle on the coordinate plane:

  • hh and kk are the xx- and yy-coordinates of the center
  • rr is the radius length
  • (x,y)(x, y) represents every point that sits on the circle
Derivation of circle equation, OpenAlgebra.com: Free Algebra Study Guide & Video Tutorials: Circles

Writing circle equations

To write an equation, plug the center coordinates and radius into the standard form (xโˆ’h)2+(yโˆ’k)2=r2(x - h)^2 + (y - k)^2 = r^2.

  1. Replace hh and kk with the center's xx- and yy-coordinates.

  2. Replace rr with the radius length (then square it for the right side).

  3. Simplify, paying close attention to signs.

Example 1: Center (โˆ’1,3)(-1, 3), radius 22

(xโˆ’(โˆ’1))2+(yโˆ’3)2=22(x - (-1))^2 + (y - 3)^2 = 2^2

which simplifies to (x+1)2+(yโˆ’3)2=4(x + 1)^2 + (y - 3)^2 = 4

Notice how subtracting a negative flips the sign to a plus. This is the most common place students make errors, so always double-check your signs.

Example 2: Center (0,0)(0, 0), radius 55

(xโˆ’0)2+(yโˆ’0)2=52(x - 0)^2 + (y - 0)^2 = 5^2

which simplifies to x2+y2=25x^2 + y^2 = 25

When the center is the origin, the equation takes this clean, simplified form.

Derivation of circle equation, CarmichaelGrade9Math - Pythagorean Theorem

Center and radius from equations

When the equation is already in standard form, you can read the center and radius directly:

  • Compare the equation to (xโˆ’h)2+(yโˆ’k)2=r2(x - h)^2 + (y - k)^2 = r^2
  • The center (h,k)(h, k) consists of the values being subtracted from xx and yy
  • The radius rr is the square root of the constant on the right side

Example: (xโˆ’4)2+(y+2)2=16(x - 4)^2 + (y + 2)^2 = 16

The center is (4,โˆ’2)(4, -2) (note that y+2y + 2 means yโˆ’(โˆ’2)y - (-2), so k=โˆ’2k = -2). The radius is 16=4\sqrt{16} = 4.

When the equation is in general (expanded) form, you need to complete the square to convert it to standard form. This is a critical skill for this unit.

Example: x2+y2โˆ’6x+4yโˆ’12=0x^2 + y^2 - 6x + 4y - 12 = 0

  1. Group the xx-terms and yy-terms, and move the constant to the right side: (x2โˆ’6x)+(y2+4y)=12(x^2 - 6x) + (y^2 + 4y) = 12

  2. Complete the square for each group. Take half the linear coefficient, square it, and add it to both sides:

    • For xx: half of โˆ’6-6 is โˆ’3-3, and (โˆ’3)2=9(-3)^2 = 9
    • For yy: half of 44 is 22, and (2)2=4(2)^2 = 4 (x2โˆ’6x+9)+(y2+4y+4)=12+9+4(x^2 - 6x + 9) + (y^2 + 4y + 4) = 12 + 9 + 4
  3. Factor each perfect square trinomial: (xโˆ’3)2+(y+2)2=25(x - 3)^2 + (y + 2)^2 = 25

  4. Read off the results: center (3,โˆ’2)(3, -2), radius 25=5\sqrt{25} = 5.

A common mistake is forgetting to add the completing-the-square values to both sides of the equation. If you only add them on the left, your radius will be wrong.

Graphing circles on the coordinate plane

To graph a circle from its equation in standard form:

  1. Identify the center (h,k)(h, k) and radius rr from the equation.

  2. Plot the center point on the coordinate plane.

  3. Plot four guide points exactly rr units up, down, left, and right from the center:

    • Up: (h,k+r)(h, k + r)
    • Down: (h,kโˆ’r)(h, k - r)
    • Left: (hโˆ’r,k)(h - r, k)
    • Right: (h+r,k)(h + r, k)
  4. Draw a smooth curve through these four points to form the circle.

The circle is symmetric about both the vertical line x=hx = h and the horizontal line y=ky = k passing through the center.

You can also determine the domain and range directly from the center and radius:

  • Domain: [hโˆ’r,ย h+r][h - r,\ h + r]
  • Range: [kโˆ’r,ย k+r][k - r,\ k + r]

Example: (xโˆ’1)2+(y+3)2=4(x - 1)^2 + (y + 3)^2 = 4

  • Center: (1,โˆ’3)(1, -3), radius: 4=2\sqrt{4} = 2
  • Four guide points: (1,โˆ’1)(1, -1), (1,โˆ’5)(1, -5), (โˆ’1,โˆ’3)(-1, -3), (3,โˆ’3)(3, -3)
  • Domain: [โˆ’1,3][-1, 3]
  • Range: [โˆ’5,โˆ’1][-5, -1]