Find the equation of circle passing through three given points

medium JEE-MAIN JEE Main 2020 3 min read

Question

Find the equation of the circle passing through the points (1,2)(1, 2), (3,4)(3, -4), and (5,6)(5, -6).

(JEE Main 2020, similar pattern)


Solution — Step by Step

The general equation is x2+y2+2gx+2fy+c=0x^2 + y^2 + 2gx + 2fy + c = 0, where the centre is (g,f)(-g, -f) and radius is g2+f2c\sqrt{g^2 + f^2 - c}.

We need to find gg, ff, and cc using the three given points.

Point (1,2)(1, 2): 1+4+2g+4f+c=02g+4f+c=51 + 4 + 2g + 4f + c = 0 \Rightarrow 2g + 4f + c = -5 … (i)

Point (3,4)(3, -4): 9+16+6g8f+c=06g8f+c=259 + 16 + 6g - 8f + c = 0 \Rightarrow 6g - 8f + c = -25 … (ii)

Point (5,6)(5, -6): 25+36+10g12f+c=010g12f+c=6125 + 36 + 10g - 12f + c = 0 \Rightarrow 10g - 12f + c = -61 … (iii)

Subtract (i) from (ii): 4g12f=20g3f=54g - 12f = -20 \Rightarrow g - 3f = -5 … (iv)

Subtract (ii) from (iii): 4g4f=36gf=94g - 4f = -36 \Rightarrow g - f = -9 … (v)

Subtract (iv) from (v): 2f=4f=22f = -4 \Rightarrow f = -2

From (v): g=9+f=92=11g = -9 + f = -9 - 2 = -11

From (i): c=52(11)4(2)=5+22+8=25c = -5 - 2(-11) - 4(-2) = -5 + 22 + 8 = 25

x2+y222x4y+25=0\boxed{x^2 + y^2 - 22x - 4y + 25 = 0}

Centre: (11,2)(11, 2), Radius: 121+425=100=10\sqrt{121 + 4 - 25} = \sqrt{100} = 10.


Why This Works

Three non-collinear points uniquely determine a circle. The general equation has three unknowns (gg, ff, cc), and substituting three points gives three linear equations — a solvable system.

The condition for the three points to be non-collinear is essential. If the points are collinear, the “circle” would have infinite radius (a straight line), and the system of equations would be inconsistent.


Alternative Method — Determinant form

The circle through (x1,y1)(x_1, y_1), (x2,y2)(x_2, y_2), (x3,y3)(x_3, y_3) can be written as:

x2+y2xy1x12+y12x1y11x22+y22x2y21x32+y32x3y31=0\begin{vmatrix} x^2+y^2 & x & y & 1 \\ x_1^2+y_1^2 & x_1 & y_1 & 1 \\ x_2^2+y_2^2 & x_2 & y_2 & 1 \\ x_3^2+y_3^2 & x_3 & y_3 & 1 \end{vmatrix} = 0

This is elegant but the 4x4 determinant expansion is time-consuming by hand. For JEE MCQs, the simultaneous equations method is usually faster.

In JEE, if the question gives three points on a circle and asks for the centre or radius, solve for gg and ff first (you don’t even need cc if they only ask for the centre). This can save a minute of calculation.


Common Mistake

A careless error that costs marks: writing the general equation as x2+y2+gx+fy+c=0x^2 + y^2 + gx + fy + c = 0 (missing the factor of 2 in front of gg and ff). The standard form has 2g2g and 2f2f, so the centre is (g,f)(-g, -f). If you use gx+fygx + fy instead of 2gx+2fy2gx + 2fy, your centre formula changes to (g/2,f/2)(-g/2, -f/2) and things get messy. Stick to one convention consistently.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next