Circle equations — general form, standard form, parametric form conversion

medium CBSE JEE-MAIN 3 min read

Question

Convert the equation x2+y26x+4y12=0x^2 + y^2 - 6x + 4y - 12 = 0 to standard form. Find the centre, radius, and write the parametric equations.


Solution — Step by Step

Group xx and yy terms:

(x26x)+(y2+4y)=12(x^2 - 6x) + (y^2 + 4y) = 12

Complete the square for each:

(x26x+9)+(y2+4y+4)=12+9+4(x^2 - 6x + 9) + (y^2 + 4y + 4) = 12 + 9 + 4

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

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

Centre = (3,2)\mathbf{(3, -2)}, Radius = 5\mathbf{5}

x=3+5cosθ,y=2+5sinθ,θ[0,2π)x = 3 + 5\cos\theta, \quad y = -2 + 5\sin\theta, \quad \theta \in [0, 2\pi)

Any point on the circle can be written as (3+5cosθ,2+5sinθ)(3 + 5\cos\theta, -2 + 5\sin\theta) for some angle θ\theta.


Why This Works

graph TD
    A["Circle Equation Forms"] --> B["Standard: x-h² + y-k² = r²"]
    A --> C["General: x² + y² + 2gx + 2fy + c = 0"]
    A --> D["Parametric: x=h+r cos θ, y=k+r sin θ"]
    B --> E["Centre h,k and radius r are visible"]
    C --> F["Centre = -g,-f, Radius = √g²+f²-c"]
    D --> G["Useful for finding points on circle"]
    B -->|"Expand"| C
    C -->|"Complete square"| B
    B -->|"Substitute cos θ, sin θ"| D

The general form x2+y2+2gx+2fy+c=0x^2 + y^2 + 2gx + 2fy + c = 0 is useful because:

  • Centre = (g,f)(-g, -f)
  • Radius = g2+f2c\sqrt{g^2 + f^2 - c}
  • For the equation to represent a real circle: g2+f2c>0g^2 + f^2 - c > 0

From our equation: 2g=6    g=32g = -6 \implies g = -3, 2f=4    f=22f = 4 \implies f = 2, c=12c = -12.

Centre = (3,2)(3, -2) ✓, Radius = 9+4+12=5\sqrt{9 + 4 + 12} = 5


Alternative Method

For JEE, the parametric form is extremely powerful. If a problem says “A point P moves on the circle x2+y2=25x^2 + y^2 = 25”, immediately write P=(5cosθ,5sinθ)P = (5\cos\theta, 5\sin\theta). This reduces a two-variable problem to one variable (θ\theta), making optimization and locus problems much simpler.

The equation of the tangent at the parametric point (h+rcosθ,k+rsinθ)(h + r\cos\theta, k + r\sin\theta) is: (xh)cosθ+(yk)sinθ=r(x-h)\cos\theta + (y-k)\sin\theta = r. This is faster than implicit differentiation.


Common Mistake

Forgetting to add the completed-square constants to BOTH sides. When completing the square, students write (x26x+9)+(y2+4y+4)=12(x^2 - 6x + 9) + (y^2 + 4y + 4) = 12 — forgetting to add 9 and 4 to the right side too. The correct equation is =12+9+4=25= 12 + 9 + 4 = 25. Missing this step gives a wrong radius. Always balance both sides when completing the square.


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

General form: x2+y2+2gx+2fy+c=0x^2 + y^2 + 2gx + 2fy + c = 0, centre (g,f)(-g, -f), radius g2+f2c\sqrt{g^2+f^2-c}

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

Tangent at (x1,y1)(x_1, y_1): xx1+yy1+g(x+x1)+f(y+y1)+c=0xx_1 + yy_1 + g(x+x_1) + f(y+y_1) + c = 0

Length of tangent from (x1,y1)(x_1, y_1): x12+y12+2gx1+2fy1+c\sqrt{x_1^2 + y_1^2 + 2gx_1 + 2fy_1 + c}

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next