Equation of circle in various forms


Equation of Circle in Various Forms

The equation of a circle can be expressed in various forms, each providing different insights into the circle's properties such as its center, radius, and position relative to the coordinate axes. Below, we will explore the most common forms of the circle equation: the standard form, the general form, and the parametric form.

Standard Form

The standard form of the circle equation is given by:

$$(x - h)^2 + (y - k)^2 = r^2$$

where $(h, k)$ is the center of the circle and $r$ is the radius.

Important Points:

  • The center of the circle is at the point $(h, k)$.
  • The radius of the circle is $r$.
  • The standard form makes it easy to identify the center and radius.

Example:

If we have a circle with a center at $(3, -2)$ and a radius of $5$, the equation is:

$$(x - 3)^2 + (y + 2)^2 = 25$$

General Form

The general form of the circle equation is given by:

$$Ax^2 + Ay^2 + Dx + Ey + F = 0$$

where $A$, $D$, $E$, and $F$ are constants. This form can be derived from the standard form by expanding and rearranging the terms.

Important Points:

  • The general form does not immediately reveal the center or the radius.
  • To find the center and radius from the general form, we can complete the square for both $x$ and $y$ terms.
  • The general form is useful for proving properties of the circle or for solving systems of equations involving circles.

Example:

Given the general form equation $x^2 + y^2 - 6x + 4y - 3 = 0$, we can complete the square to find the standard form:

$$x^2 - 6x + y^2 + 4y = 3$$ $$(x^2 - 6x + 9) + (y^2 + 4y + 4) = 3 + 9 + 4$$ $$(x - 3)^2 + (y + 2)^2 = 16$$

The center is at $(3, -2)$ and the radius is $4$.

Parametric Form

The parametric form of the circle equation uses a parameter, typically $t$, to represent the coordinates of points on the circle as functions of $t$.

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

where $t$ ranges from $0$ to $2\pi$.

Important Points:

  • The parametric form is useful for plotting the circle or for integrating along the circle.
  • It is also helpful in computer graphics and animations.
  • The parameter $t$ represents the angle in radians from the positive x-axis to the point $(x, y)$.

Example:

For a circle with center at $(0, 0)$ and radius $1$, the parametric equations are:

$$x = \cos(t)$$ $$y = \sin(t)$$

As $t$ varies from $0$ to $2\pi$, the point $(x, y)$ traces out the unit circle.

Comparison Table

Form Equation Center Radius Use Case
Standard $(x - h)^2 + (y - k)^2 = r^2$ $(h, k)$ $r$ Easily identify center and radius
General $Ax^2 + Ay^2 + Dx + Ey + F = 0$ Not direct Not direct Proving properties, solving systems
Parametric $x = h + r \cos(t)$, $y = k + r \sin(t)$ $(h, k)$ $r$ Plotting, computer graphics, integration

Each form of the circle equation has its advantages and is used in different contexts depending on the information available and the application at hand. Understanding how to convert between these forms is a valuable skill in geometry and algebra.