Circles

Equation of Circle - Standard and General Forms

0:00
LearnStep 1/4

Equation of Circle - Standard and General Forms

Equation of Circle - Standard and General Forms

Hey JEE aspirants! Circles are fundamental to coordinate geometry and appear frequently in JEE Main. Mastering the equation of a circle, in its various forms, is crucial for solving a wide range of problems. Let's dive in!

Standard Form of the Circle

The standard form of a circle's equation is derived directly from the definition of a circle: the set of all points equidistant from a center. Imagine a point (x,y)(x, y) moving in such a way that its distance from a fixed point (h,k)(h, k) is always equal to rr. Using the distance formula, we get:

(xh)2+(yk)2=r\sqrt{(x - h)^2 + (y - k)^2} = r

Squaring both sides to remove the square root gives us the standard form:

(xh)2+(yk)2=r2 (standard form)(x - h)^2 + (y - k)^2 = r^2 \text{ (standard form)}

Here, (h,k)(h, k) represents the center of the circle, and rr is the radius. This form is incredibly useful because it immediately tells you the center and radius of the circle. For example, the equation (x2)2+(y+3)2=16(x - 2)^2 + (y + 3)^2 = 16 represents a circle with center (2,3)(2, -3) and radius 16=4\sqrt{16} = 4. Geometrically, this means the circle is centered at the point (2,-3) on the Cartesian plane, and every point on the circle is exactly 4 units away from this center.

General Form of the Circle

The general form of a circle's equation is obtained by expanding the standard form. Let's start with the standard form:

(xh)2+(yk)2=r2(x - h)^2 + (y - k)^2 = r^2

Expanding this, we get:

x22hx+h2+y22ky+k2=r2x^2 - 2hx + h^2 + y^2 - 2ky + k^2 = r^2

Rearranging the terms, we get:

x2+y22hx2ky+h2+k2r2=0x^2 + y^2 - 2hx - 2ky + h^2 + k^2 - r^2 = 0

Now, let's make the following substitutions:

  • g=hg = -h
  • f=kf = -k
  • c=h2+k2r2c = h^2 + k^2 - r^2

Substituting these into the equation, we obtain the general form:

x2+y2+2gx+2fy+c=0 (general form)x^2 + y^2 + 2gx + 2fy + c = 0 \text{ (general form)}

While this form doesn't immediately reveal the center and radius, it's important for recognizing circles in more complex equations. Notice that the coefficients of x2x^2 and y2y^2 are both 1, and there is no xyxy term. This is a key characteristic of a circle's equation. However, not every equation of this form represents a real circle. The radius must be a real number, implying g2+f2c>0g^2 + f^2 - c > 0.

Finding Center and Radius from General Form

Given the general form x2+y2+2gx+2fy+c=0x^2 + y^2 + 2gx + 2fy + c = 0, we can determine the center and radius by comparing it to the expanded standard form. From our substitutions above, we know:

  • h=gh = -g
  • k=fk = -f
  • r2=g2+f2cr^2 = g^2 + f^2 - c

Therefore, the center and radius are given by:

Center: (g,f), Radius: g2+f2c\text{Center: } (-g, -f), \text{ Radius: } \sqrt{g^2 + f^2 - c}

For instance, consider the equation x2+y2+4x6y12=0x^2 + y^2 + 4x - 6y - 12 = 0. Here, 2g=42g = 4, 2f=62f = -6, and c=12c = -12. Thus, g=2g = 2, f=3f = -3, and the center is (2,3)(-2, 3). The radius is 22+(3)2(12)=4+9+12=25=5\sqrt{2^2 + (-3)^2 - (-12)} = \sqrt{4 + 9 + 12} = \sqrt{25} = 5. To find the center geometrically, complete the square in both xx and yy. This allows you to rewrite the equation in standard form.

Circle Through Three Points

A unique circle can be defined by three non-collinear points. One way to find the equation of this circle is to assume the general form x2+y2+2gx+2fy+c=0x^2 + y^2 + 2gx + 2fy + c = 0. If the circle passes through points (x1,y1)(x_1, y_1), (x2,y2)(x_2, y_2), and (x3,y3)(x_3, y_3), then these points must satisfy the equation:

x12+y12+2gx1+2fy1+c=0x_1^2 + y_1^2 + 2gx_1 + 2fy_1 + c = 0 x22+y22+2gx2+2fy2+c=0x_2^2 + y_2^2 + 2gx_2 + 2fy_2 + c = 0 x32+y32+2gx3+2fy3+c=0x_3^2 + y_3^2 + 2gx_3 + 2fy_3 + c = 0

This gives us a system of three linear equations in three unknowns (gg, ff, and cc). Solve this system to find the values of gg, ff, and cc, which will define the equation of the circle. Geometrically, the center of this circle is the point of intersection of the perpendicular bisectors of the lines joining the three points.

Parametric Form of Circle

The parametric form of a circle's equation provides a way to represent the coordinates of any point on the circle using a single parameter, usually denoted as θ\theta. Starting from the standard form (xh)2+(yk)2=r2(x - h)^2 + (y - k)^2 = r^2, we can express xx and yy in terms of trigonometric functions:

Parametric: x=h+rcosθ,y=k+rsinθ\text{Parametric: } x = h + r\cos\theta, y = k + r\sin\theta

Here, θ\theta is the angle that the radius to the point (x,y)(x, y) makes with the positive x-axis. As θ\theta varies from 00 to 2π2\pi, the point (x,y)(x, y) traces out the entire circle. Geometrically, rcosθr\cos\theta and rsinθr\sin\theta are the horizontal and vertical components of the radius vector, respectively. The parametric form is particularly useful when dealing with problems involving the angle subtended by a chord at the center.

For example, the parametric equations for a circle centered at (1,2)(1, 2) with radius 33 would be x=1+3cosθx = 1 + 3\cos\theta and y=2+3sinθy = 2 + 3\sin\theta.

Diameter Form of Circle

If (x1,y1)(x_1, y_1) and (x2,y2)(x_2, y_2) are the endpoints of a diameter of a circle, then the equation of the circle can be directly written as:

Diameter form: (xx1)(xx2)+(yy1)(yy2)=0\text{Diameter form: } (x - x_1)(x - x_2) + (y - y_1)(y - y_2) = 0

This equation represents the circle whose diameter has endpoints (x1,y1)(x_1, y_1) and (x2,y2)(x_2, y_2). Geometrically, this equation is derived from the fact that the angle in a semicircle is a right angle. If (x,y)(x, y) is any point on the circle, then the lines joining (x,y)(x, y) to (x1,y1)(x_1, y_1) and (x2,y2)(x_2, y_2) are perpendicular, and the product of their slopes is -1.

Tip: When dealing with circles passing through the origin, the constant term cc in the general form will be zero.
Common Mistake: Always check if the radius is real in the general form. If g2+f2c<0g^2 + f^2 - c < 0, the equation does not represent a real circle.