Circle Function- Mathematical Properties and Equations

What Is a Circle Function?

A circle function describes every point in a plane that sits at an equal distance from a fixed center point. That fixed distance is the radius. Everything else about circles flows from this simple definition.

In Cartesian coordinates, the circle function gives you the equation that all points on the circle's edge satisfy. You can use it to check if a point lies on the circle, find the center, calculate the radius, and graph the shape without guessing.

The Standard Circle Equation

The standard form of a circle with center (h, k) and radius r is:

(x - h)² + (y - k)² = r²

That's it. Every circle equation you'll work with is some version of this formula.

Breaking Down the Components

Example

A circle with center (3, 4) and radius 5 gives you:

(x - 3)² + (y - 4)² = 25

Expand it and you get x² - 6x + 9 + y² - 8y + 16 = 25, which simplifies to x² + y² - 6x - 8y = 0.

The General Form of a Circle Equation

The expanded version looks like this:

x² + y² + Dx + Ey + F = 0

This form hides the center and radius. To extract them, you need to complete the square.

How to Convert General Form to Standard Form

Given: x² + y² + 4x - 6y - 12 = 0

  1. Group x terms and y terms: (x² + 4x) + (y² - 6y) = 12
  2. Complete the square for each group
  3. (x² + 4x + 4) + (y² - 6y + 9) = 12 + 4 + 9
  4. (x + 2)² + (y - 3)² = 25

Center is (-2, 3), radius is 5. ✅

Key Circle Properties

These are the measurements you'll calculate most often:

Circle Formulas Comparison

PropertyFormulaVariables
Standard equation(x-h)² + (y-k)² = r²h, k = center; r = radius
AreaA = πr²r = radius
CircumferenceC = 2πrr = radius
Diameterd = 2rr = radius
Arc lengths = rθr = radius; θ = central angle (radians)
Sector areaA = ½r²θr = radius; θ = central angle (radians)
Chord lengthc = 2r·sin(θ/2)r = radius; θ = central angle

Lines and Circles

Tangent Lines

A tangent touches the circle at exactly one point. The tangent at point P is perpendicular to the radius that connects the center to P.

For circle x² + y² = r², the tangent at point (x₁, y₁) on the circle is:

x₁x + y₁y = r²

Secant Lines

A secant cuts through the circle at two points. If a secant passes through the center, it's a diameter.

Chord

A chord connects two points on the circle's edge. The longest chord is the diameter.

The Parametric Form

Sometimes the parametric representation is more useful:

x = h + r·cos(t)
y = k + r·sin(t)

The variable t ranges from 0 to 2π. This traces the entire circle as t increases. It comes in handy when you need to work with angles or circular motion problems.

Distance from a Point to a Circle

To find the shortest distance from a point (x₁, y₁) to circle (x - h)² + (y - k)² = r²:

  1. Calculate d = √[(x₁-h)² + (y₁-k)²]
  2. Subtract the radius: distance = |d - r|

If d = r, the point lies on the circle. If d < r, the point is inside. If d > r, the point is outside.

Getting Started: Solving Circle Problems

Problem 1: Find the center and radius

Given: (x - 7)² + (y + 2)² = 36

Center is (7, -2). Radius is √36 = 6.

Problem 2: Write the equation given center and a point

Center: (2, 5). Point on circle: (5, 9).

  1. Find radius: r = √[(5-2)² + (9-5)²] = √[9 + 16] = √25 = 5
  2. Write equation: (x - 2)² + (y - 5)² = 25

Problem 3: Check if a point lies on the circle

Circle: (x - 1)² + (y + 3)² = 16. Check point (4, 0).

  1. Plug in: (4-1)² + (0+3)² = 9 + 9 = 18
  2. 18 ≠ 16, so the point is not on the circle

Circle Function in Polar Coordinates

In polar form (r, θ), a circle passing through the origin has equation:

r = 2R·cos(θ - φ)

Where R is the radius and φ is the angle offset. This form simplifies problems involving circular motion and radar systems.

Common Mistakes to Avoid

When to Use Each Form

SituationBest Form
Graphing a circleStandard: (x-h)² + (y-k)² = r²
Checking if point lies on circleStandard or general form
Working with angles/motionParametric: x = h + r·cos(t)
Intersection problemsGeneral form for substitution
Distance calculationsStandard form