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
- x, y — coordinates of any point on the circle
- h, k — the center point's coordinates
- r — the radius (distance from center to any point on the circle)
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
- Group x terms and y terms: (x² + 4x) + (y² - 6y) = 12
- Complete the square for each group
- (x² + 4x + 4) + (y² - 6y + 9) = 12 + 4 + 9
- (x + 2)² + (y - 3)² = 25
Center is (-2, 3), radius is 5. ✅
Key Circle Properties
These are the measurements you'll calculate most often:
- Diameter — twice the radius: d = 2r
- Circumference — the perimeter: C = 2πr or C = πd
- Area — the space inside: A = πr²
- Arc length — portion of the circumference: s = rθ (θ in radians)
- Sector area — pizza-slice shaped region: A = ½r²θ
Circle Formulas Comparison
| Property | Formula | Variables |
|---|---|---|
| Standard equation | (x-h)² + (y-k)² = r² | h, k = center; r = radius |
| Area | A = πr² | r = radius |
| Circumference | C = 2πr | r = radius |
| Diameter | d = 2r | r = radius |
| Arc length | s = rθ | r = radius; θ = central angle (radians) |
| Sector area | A = ½r²θ | r = radius; θ = central angle (radians) |
| Chord length | c = 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²:
- Calculate d = √[(x₁-h)² + (y₁-k)²]
- 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).
- Find radius: r = √[(5-2)² + (9-5)²] = √[9 + 16] = √25 = 5
- 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).
- Plug in: (4-1)² + (0+3)² = 9 + 9 = 18
- 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
- Forgetting to complete the square when converting from general to standard form
- Mixing up radians and degrees in arc and sector formulas — pick one and stick with it
- Wrong sign when extracting h and k — remember the equation is (x - h)² + (y - k)², so if you see (x + 3)², h = -3
- Assuming the circle is centered at origin when the equation doesn't explicitly show (h, k)
When to Use Each Form
| Situation | Best Form |
|---|---|
| Graphing a circle | Standard: (x-h)² + (y-k)² = r² |
| Checking if point lies on circle | Standard or general form |
| Working with angles/motion | Parametric: x = h + r·cos(t) |
| Intersection problems | General form for substitution |
| Distance calculations | Standard form |