Distance and Midpoint
The distance between points A ( x 1 , y 1 ) A(x_1, y_1) A ( x 1 , y 1 ) and B ( x 2 , y 2 ) B(x_2, y_2) B ( x 2 , y 2 ) :
d = ( x 2 − x 1 ) 2 + ( y 2 − y 1 ) 2 d = \sqrt{(x_2 - x_1)^2 + (y_2 - y_1)^2} d = ( x 2 − x 1 ) 2 + ( y 2 − y 1 ) 2
This follows directly from the Pythagorean theorem.
The midpoint M M M of A B AB A B :
M = ( x 1 + x 2 2 , y 1 + y 2 2 ) M = \left(\frac{x_1 + x_2}{2},\; \frac{y_1 + y_2}{2}\right) M = ( 2 x 1 + x 2 , 2 y 1 + y 2 )
Worked Example 1
Find the distance and midpoint of A ( 2 , − 3 ) A(2, -3) A ( 2 , − 3 ) and B ( 6 , 5 ) B(6, 5) B ( 6 , 5 ) .
d = ( 6 − 2 ) 2 + ( 5 − ( − 3 ) ) 2 = 16 + 64 = 80 = 4 5 d = \sqrt{(6 - 2)^2 + (5 - (-3))^2} = \sqrt{16 + 64} = \sqrt{80} = 4\sqrt{5} d = ( 6 − 2 ) 2 + ( 5 − ( − 3 ) ) 2 = 16 + 64 = 80 = 4 5
M = ( 2 + 6 2 , − 3 + 5 2 ) = ( 4 , 1 ) M = \left(\frac{2 + 6}{2},\; \frac{-3 + 5}{2}\right) = (4, 1) M = ( 2 2 + 6 , 2 − 3 + 5 ) = ( 4 , 1 )
Division of a Line Segment
The point P P P that divides A B AB A B in the ratio m : n m : n m : n (measured from A A A towards B B B ):
P = ( n x 1 + m x 2 m + n , n y 1 + m y 2 m + n ) P = \left(\frac{nx_1 + mx_2}{m + n},\; \frac{ny_1 + my_2}{m + n}\right) P = ( m + n n x 1 + m x 2 , m + n n y 1 + m y 2 )
Equations of Lines
Slope (Gradient)
The slope of the line through ( x 1 , y 1 ) (x_1, y_1) ( x 1 , y 1 ) and ( x 2 , y 2 ) (x_2, y_2) ( x 2 , y 2 ) :
m = y 2 − y 1 x 2 − x 1 m = \frac{y_2 - y_1}{x_2 - x_1} m = x 2 − x 1 y 2 − y 1
Form Equation When to Use Slope-intercept y = m x + c y = mx + c y = m x + c Slope and y y y -intercept known Point-slope y − y 1 = m ( x − x 1 ) y - y_1 = m(x - x_1) y − y 1 = m ( x − x 1 ) Slope and a point known Two-point y − y 1 y 2 − y 1 = x − x 1 x 2 − x 1 \dfrac{y - y_1}{y_2 - y_1} = \dfrac{x - x_1}{x_2 - x_1} y 2 − y 1 y − y 1 = x 2 − x 1 x − x 1 Two points known General A x + B y + C = 0 Ax + By + C = 0 A x + B y + C = 0 Standard form
Parallel and Perpendicular Lines
Two lines with slopes m 1 m_1 m 1 and m 2 m_2 m 2 :
Parallel: m 1 = m 2 m_1 = m_2 m 1 = m 2
Perpendicular: m 1 ⋅ m 2 = − 1 m_1 \cdot m_2 = -1 m 1 ⋅ m 2 = − 1
Worked Example 2
Find the equation of the line through A ( 1 , 3 ) A(1, 3) A ( 1 , 3 ) perpendicular to the line 2 x − 3 y + 6 = 0 2x - 3y + 6 = 0 2 x − 3 y + 6 = 0 .
The given line: 3 y = 2 x + 6 ⟹ y = 2 3 x + 2 3y = 2x + 6 \implies y = \frac{2}{3}x + 2 3 y = 2 x + 6 ⟹ y = 3 2 x + 2 . Slope: m = 2 / 3 m = 2/3 m = 2/3 .
Perpendicular slope: m ⊥ = − 3 / 2 m_\perp = -3/2 m ⊥ = − 3/2 .
y − 3 = − 3 2 ( x − 1 ) ⟹ 2 ( y − 3 ) = − 3 ( x − 1 ) ⟹ 2 y − 6 = − 3 x + 3 y - 3 = -\frac{3}{2}(x - 1) \implies 2(y - 3) = -3(x - 1) \implies 2y - 6 = -3x + 3 y − 3 = − 2 3 ( x − 1 ) ⟹ 2 ( y − 3 ) = − 3 ( x − 1 ) ⟹ 2 y − 6 = − 3 x + 3
3 x + 2 y − 9 = 0 3x + 2y - 9 = 0 3 x + 2 y − 9 = 0
Worked Example 3
Find the distance from the point P ( 3 , 4 ) P(3, 4) P ( 3 , 4 ) to the line 4 x + 3 y − 10 = 0 4x + 3y - 10 = 0 4 x + 3 y − 10 = 0 .
d = ∣ A x 0 + B y 0 + C ∣ A 2 + B 2 = ∣ 4 ( 3 ) + 3 ( 4 ) − 10 ∣ 16 + 9 = ∣ 12 + 12 − 10 ∣ 5 = 14 5 = 2.8 d = \frac{|Ax_0 + By_0 + C|}{\sqrt{A^2 + B^2}} = \frac{|4(3) + 3(4) - 10|}{\sqrt{16 + 9}} = \frac{|12 + 12 - 10|}{5} = \frac{14}{5} = 2.8 d = A 2 + B 2 ∣ A x 0 + B y 0 + C ∣ = 16 + 9 ∣4 ( 3 ) + 3 ( 4 ) − 10∣ = 5 ∣12 + 12 − 10∣ = 5 14 = 2.8
Intersection of Lines
Two lines A 1 x + B 1 y + C 1 = 0 A_1x + B_1y + C_1 = 0 A 1 x + B 1 y + C 1 = 0 and A 2 x + B 2 y + C 2 = 0 A_2x + B_2y + C_2 = 0 A 2 x + B 2 y + C 2 = 0 intersect at a unique point if they
are not parallel. Solve the system of equations simultaneously.
Worked Example 4
Find the intersection of 3 x − y + 2 = 0 3x - y + 2 = 0 3 x − y + 2 = 0 and x + 2 y − 7 = 0 x + 2y - 7 = 0 x + 2 y − 7 = 0 .
From the first: y = 3 x + 2 y = 3x + 2 y = 3 x + 2 . Substituting:
x + 2 ( 3 x + 2 ) − 7 = 0 ⟹ x + 6 x + 4 − 7 = 0 ⟹ 7 x = 3 x + 2(3x + 2) - 7 = 0 \implies x + 6x + 4 - 7 = 0 \implies 7x = 3 x + 2 ( 3 x + 2 ) − 7 = 0 ⟹ x + 6 x + 4 − 7 = 0 ⟹ 7 x = 3 .
x = 3 / 7 , y = 3 ( 3 / 7 ) + 2 = 9 / 7 + 14 / 7 = 23 / 7 x = 3/7, \quad y = 3(3/7) + 2 = 9/7 + 14/7 = 23/7 x = 3/7 , y = 3 ( 3/7 ) + 2 = 9/7 + 14/7 = 23/7
Intersection: ( 3 7 , 23 7 ) \left(\dfrac{3}{7}, \dfrac{23}{7}\right) ( 7 3 , 7 23 ) .
Equations of Circles
A circle with centre ( a , b ) (a, b) ( a , b ) and radius r r r :
( x − a ) 2 + ( y − b ) 2 = r 2 (x - a)^2 + (y - b)^2 = r^2 ( x − a ) 2 + ( y − b ) 2 = r 2
Expanding: x 2 + y 2 − 2 a x − 2 b y + ( a 2 + b 2 − r 2 ) = 0 x^2 + y^2 - 2ax - 2by + (a^2 + b^2 - r^2) = 0 x 2 + y 2 − 2 a x − 2 b y + ( a 2 + b 2 − r 2 ) = 0
x 2 + y 2 + D x + E y + F = 0 x^2 + y^2 + Dx + Ey + F = 0 x 2 + y 2 + D x + E y + F = 0
Centre: ( − D 2 , − E 2 ) \left(-\dfrac{D}{2}, -\dfrac{E}{2}\right) ( − 2 D , − 2 E ) , Radius:
r = D 2 4 + E 2 4 − F r = \sqrt{\dfrac{D^2}{4} + \dfrac{E^2}{4} - F} r = 4 D 2 + 4 E 2 − F
Worked Example 5
Find the centre and radius of x 2 + y 2 − 6 x + 4 y − 12 = 0 x^2 + y^2 - 6x + 4y - 12 = 0 x 2 + y 2 − 6 x + 4 y − 12 = 0 .
Completing the square:
x 2 − 6 x + y 2 + 4 y = 12 x^2 - 6x + y^2 + 4y = 12 x 2 − 6 x + y 2 + 4 y = 12
( x − 3 ) 2 − 9 + ( y + 2 ) 2 − 4 = 12 (x - 3)^2 - 9 + (y + 2)^2 - 4 = 12 ( x − 3 ) 2 − 9 + ( y + 2 ) 2 − 4 = 12
( x − 3 ) 2 + ( y + 2 ) 2 = 25 (x - 3)^2 + (y + 2)^2 = 25 ( x − 3 ) 2 + ( y + 2 ) 2 = 25
Centre: ( 3 , − 2 ) (3, -2) ( 3 , − 2 ) , Radius: r = 5 r = 5 r = 5 .
Circle-Line Intersection
Tangent to a Circle at a Point
The tangent to ( x − a ) 2 + ( y − b ) 2 = r 2 (x - a)^2 + (y - b)^2 = r^2 ( x − a ) 2 + ( y − b ) 2 = r 2 at a point ( x 1 , y 1 ) (x_1, y_1) ( x 1 , y 1 ) on the circle:
( x 1 − a ) ( x − a ) + ( y 1 − b ) ( y − b ) = r 2 (x_1 - a)(x - a) + (y_1 - b)(y - b) = r^2 ( x 1 − a ) ( x − a ) + ( y 1 − b ) ( y − b ) = r 2
Equivalently, the tangent is perpendicular to the radius at the point of contact.
Finding Intersection Points
Substitute the linear equation into the circle equation to obtain a quadratic in one variable. Use
the discriminant to determine the nature of the intersection:
Δ \Delta Δ Intersection Δ > 0 \Delta \gt 0 Δ > 0 Two distinct points (secant) Δ = 0 \Delta = 0 Δ = 0 One point (tangent) Δ < 0 \Delta \lt 0 Δ < 0 No intersection
Worked Example 6
Find the equation of the tangent to x 2 + y 2 = 25 x^2 + y^2 = 25 x 2 + y 2 = 25 at the point ( 3 , 4 ) (3, 4) ( 3 , 4 ) .
Using the tangent formula: x 1 x + y 1 y = r 2 x_1 x + y_1 y = r^2 x 1 x + y 1 y = r 2 :
3 x + 4 y = 25 3x + 4y = 25 3 x + 4 y = 25
Alternatively, the radius has slope 4 / 3 4/3 4/3 , so the tangent has slope − 3 / 4 -3/4 − 3/4 :
y − 4 = − 3 4 ( x − 3 ) ⟹ 4 ( y − 4 ) = − 3 ( x − 3 ) ⟹ 4 y − 16 = − 3 x + 9 ⟹ 3 x + 4 y − 25 = 0 y - 4 = -\frac{3}{4}(x - 3) \implies 4(y - 4) = -3(x - 3) \implies 4y - 16 = -3x + 9 \implies 3x + 4y - 25 = 0 y − 4 = − 4 3 ( x − 3 ) ⟹ 4 ( y − 4 ) = − 3 ( x − 3 ) ⟹ 4 y − 16 = − 3 x + 9 ⟹ 3 x + 4 y − 25 = 0
Areas
Given vertices A ( x 1 , y 1 ) A(x_1, y_1) A ( x 1 , y 1 ) , B ( x 2 , y 2 ) B(x_2, y_2) B ( x 2 , y 2 ) , C ( x 3 , y 3 ) C(x_3, y_3) C ( x 3 , y 3 ) :
A r e a = 1 2 ∣ x 1 ( y 2 − y 3 ) + x 2 ( y 3 − y 1 ) + x 3 ( y 1 − y 2 ) ∣ \mathrm{Area} = \frac{1}{2}|x_1(y_2 - y_3) + x_2(y_3 - y_1) + x_3(y_1 - y_2)| Area = 2 1 ∣ x 1 ( y 2 − y 3 ) + x 2 ( y 3 − y 1 ) + x 3 ( y 1 − y 2 ) ∣
Area of a Polygon
For a polygon with vertices ( x 1 , y 1 ) , ( x 2 , y 2 ) , … , ( x n , y n ) (x_1, y_1), (x_2, y_2), \ldots, (x_n, y_n) ( x 1 , y 1 ) , ( x 2 , y 2 ) , … , ( x n , y n ) listed in order (clockwise
or counterclockwise):
A r e a = 1 2 ∣ ∑ i = 1 n ( x i y i + 1 − x i + 1 y i ) ∣ \mathrm{Area} = \frac{1}{2}\left|\sum_{i=1}^{n} (x_i y_{i+1} - x_{i+1} y_i)\right| Area = 2 1 ∣ ∑ i = 1 n ( x i y i + 1 − x i + 1 y i ) ∣
where ( x n + 1 , y n + 1 ) = ( x 1 , y 1 ) (x_{n+1}, y_{n+1}) = (x_1, y_1) ( x n + 1 , y n + 1 ) = ( x 1 , y 1 ) .
Worked Example 7
Find the area of the triangle with vertices A ( 1 , 2 ) A(1, 2) A ( 1 , 2 ) , B ( 5 , 6 ) B(5, 6) B ( 5 , 6 ) , C ( 3 , − 1 ) C(3, -1) C ( 3 , − 1 ) .
A r e a = 1 2 ∣ 1 ( 6 − ( − 1 ) ) + 5 ( ( − 1 ) − 2 ) + 3 ( 2 − 6 ) ∣ = 1 2 ∣ 7 + ( − 15 ) + ( − 12 ) ∣ = 1 2 ∣ − 20 ∣ = 10 \mathrm{Area} = \frac{1}{2}|1(6 - (-1)) + 5((-1) - 2) + 3(2 - 6)| = \frac{1}{2}|7 + (-15) + (-12)| = \frac{1}{2}|-20| = 10 Area = 2 1 ∣1 ( 6 − ( − 1 )) + 5 (( − 1 ) − 2 ) + 3 ( 2 − 6 ) ∣ = 2 1 ∣7 + ( − 15 ) + ( − 12 ) ∣ = 2 1 ∣ − 20∣ = 10
Common Pitfalls
Forgetting the absolute value in the distance-from-point-to-line formula.
Confusing the perpendicular slope formula: m 1 m 2 = − 1 m_1 m_2 = -1 m 1 m 2 = − 1 , not m 1 m 2 = 1 m_1 m_2 = 1 m 1 m 2 = 1 .
When finding the centre from the general circle equation, forgetting the negative signs: centre is
( − D / 2 , − E / 2 ) (-D/2, -E/2) ( − D /2 , − E /2 ) , not ( D / 2 , E / 2 ) (D/2, E/2) ( D /2 , E /2 ) .
Forgetting to check that r 2 > 0 r^2 \gt 0 r 2 > 0 when converting the general form to the standard form. If
r 2 < 0 r^2 \lt 0 r 2 < 0 , the equation does not represent a real circle.
Arithmetic errors when completing the square for circle equations. Always double-check.
Summary Table
| Topic | Key Formula |
| ----------------------- | ------------------------------------------------------------- | ------------------------------------------------ | -------------------- |
| Distance | d = ( x 2 − x 1 ) 2 + ( y 2 − y 1 ) 2 d = \sqrt{(x_2 - x_1)^2 + (y_2 - y_1)^2} d = ( x 2 − x 1 ) 2 + ( y 2 − y 1 ) 2 | | |
| Midpoint | M = ( x 1 + x 2 2 , y 1 + y 2 2 ) M = \left(\dfrac{x_1 + x_2}{2}, \dfrac{y_1 + y_2}{2}\right) M = ( 2 x 1 + x 2 , 2 y 1 + y 2 ) | | |
| Point to line | d = ∣ A x 0 + B y 0 + C ∣ A 2 + B 2 d = \dfrac{ | Ax_0 + By_0 + C | }{\sqrt{A^2 + B^2}} d = A 2 + B 2 ∣ A x 0 + B y 0 + C ∣ |
| Circle (standard) | ( x − a ) 2 + ( y − b ) 2 = r 2 (x - a)^2 + (y - b)^2 = r^2 ( x − a ) 2 + ( y − b ) 2 = r 2 | | |
| Tangent at ( x 1 , y 1 ) (x_1, y_1) ( x 1 , y 1 ) | x 1 x + y 1 y = r 2 x_1 x + y_1 y = r^2 x 1 x + y 1 y = r 2 (for circle at origin) | | |
| Triangle area | 1 2 ∣ x 1 ( y 2 − y 3 ) + x 2 ( y 3 − y 1 ) + x 3 ( y 1 − y 2 ) ∣ \dfrac{1}{2} | x_1(y_2 - y_3) + x_2(y_3 - y_1) + x_3(y_1 - y_2) | 2 1 ∣ x 1 ( y 2 − y 3 ) + x 2 ( y 3 − y 1 ) + x 3 ( y 1 − y 2 ) ∣ |
Wrap-up Questions
Question: Find the equation of the perpendicular bisector of A B AB A B where A ( 2 , 1 ) A(2, 1) A ( 2 , 1 ) and
B ( 6 , 7 ) B(6, 7) B ( 6 , 7 ) .
Midpoint: M = ( 4 , 4 ) M = (4, 4) M = ( 4 , 4 ) . Slope of A B AB A B : m = ( 7 − 1 ) / ( 6 − 2 ) = 6 / 4 = 3 / 2 m = (7 - 1)/(6 - 2) = 6/4 = 3/2 m = ( 7 − 1 ) / ( 6 − 2 ) = 6/4 = 3/2 .
Perpendicular slope: m ⊥ = − 2 / 3 m_\perp = -2/3 m ⊥ = − 2/3 .
y − 4 = − 2 3 ( x − 4 ) ⟹ 3 ( y − 4 ) = − 2 ( x − 4 ) ⟹ 3 y − 12 = − 2 x + 8 ⟹ 2 x + 3 y − 20 = 0 y - 4 = -\frac{2}{3}(x - 4) \implies 3(y - 4) = -2(x - 4) \implies 3y - 12 = -2x + 8 \implies 2x + 3y - 20 = 0 y − 4 = − 3 2 ( x − 4 ) ⟹ 3 ( y − 4 ) = − 2 ( x − 4 ) ⟹ 3 y − 12 = − 2 x + 8 ⟹ 2 x + 3 y − 20 = 0
Question: Find the equation of the circle passing through ( 1 , 2 ) (1, 2) ( 1 , 2 ) , ( 3 , 4 ) (3, 4) ( 3 , 4 ) , and ( 5 , 2 ) (5, 2) ( 5 , 2 ) .
General form: x 2 + y 2 + D x + E y + F = 0 x^2 + y^2 + Dx + Ey + F = 0 x 2 + y 2 + D x + E y + F = 0 .
Substituting the three points:
( 1 , 2 ) (1, 2) ( 1 , 2 ) : 1 + 4 + D + 2 E + F = 0 ⟹ D + 2 E + F = − 5 ( 1 ) 1 + 4 + D + 2E + F = 0 \implies D + 2E + F = -5 \quad (1) 1 + 4 + D + 2 E + F = 0 ⟹ D + 2 E + F = − 5 ( 1 )
( 3 , 4 ) (3, 4) ( 3 , 4 ) : 9 + 16 + 3 D + 4 E + F = 0 ⟹ 3 D + 4 E + F = − 25 ( 2 ) 9 + 16 + 3D + 4E + F = 0 \implies 3D + 4E + F = -25 \quad (2) 9 + 16 + 3 D + 4 E + F = 0 ⟹ 3 D + 4 E + F = − 25 ( 2 )
( 5 , 2 ) (5, 2) ( 5 , 2 ) : 25 + 4 + 5 D + 2 E + F = 0 ⟹ 5 D + 2 E + F = − 29 ( 3 ) 25 + 4 + 5D + 2E + F = 0 \implies 5D + 2E + F = -29 \quad (3) 25 + 4 + 5 D + 2 E + F = 0 ⟹ 5 D + 2 E + F = − 29 ( 3 )
( 2 ) − ( 1 ) (2) - (1) ( 2 ) − ( 1 ) : 2 D + 2 E = − 20 ⟹ D + E = − 10 ( 4 ) 2D + 2E = -20 \implies D + E = -10 \quad (4) 2 D + 2 E = − 20 ⟹ D + E = − 10 ( 4 )
( 3 ) − ( 1 ) (3) - (1) ( 3 ) − ( 1 ) : 4 D = − 24 ⟹ D = − 6 4D = -24 \implies D = -6 4 D = − 24 ⟹ D = − 6
From (4): E = − 4 E = -4 E = − 4 . From (1): − 6 − 8 + F = − 5 ⟹ F = 9 -6 - 8 + F = -5 \implies F = 9 − 6 − 8 + F = − 5 ⟹ F = 9 .
Equation: x 2 + y 2 − 6 x − 4 y + 9 = 0 x^2 + y^2 - 6x - 4y + 9 = 0 x 2 + y 2 − 6 x − 4 y + 9 = 0 , i.e., ( x − 3 ) 2 + ( y − 2 ) 2 = 4 (x - 3)^2 + (y - 2)^2 = 4 ( x − 3 ) 2 + ( y − 2 ) 2 = 4 .
Centre: ( 3 , 2 ) (3, 2) ( 3 , 2 ) , radius: 2 2 2 .
Question: Show that the line y = x + 1 y = x + 1 y = x + 1 is a tangent to the circle x 2 + y 2 = 2 x^2 + y^2 = 2 x 2 + y 2 = 2 and find
the point of contact.
Substitute y = x + 1 y = x + 1 y = x + 1 :
x 2 + ( x + 1 ) 2 = 2 ⟹ x 2 + x 2 + 2 x + 1 − 2 = 0 ⟹ 2 x 2 + 2 x − 1 = 0 x^2 + (x + 1)^2 = 2 \implies x^2 + x^2 + 2x + 1 - 2 = 0 \implies 2x^2 + 2x - 1 = 0 x 2 + ( x + 1 ) 2 = 2 ⟹ x 2 + x 2 + 2 x + 1 − 2 = 0 ⟹ 2 x 2 + 2 x − 1 = 0 .
Δ = 4 + 8 = 12 > 0 \Delta = 4 + 8 = 12 \gt 0 Δ = 4 + 8 = 12 > 0 . This is not a tangent -- there are two intersection points. Let me
re-check. Actually Δ = 4 − 4 ( 2 ) ( − 1 ) = 4 + 8 = 12 ≠ 0 \Delta = 4 - 4(2)(-1) = 4 + 8 = 12 \neq 0 Δ = 4 − 4 ( 2 ) ( − 1 ) = 4 + 8 = 12 = 0 , so the line is not a tangent to this
circle. Let me try the circle x 2 + y 2 = 1 x^2 + y^2 = 1 x 2 + y 2 = 1 instead:
x 2 + ( x + 1 ) 2 = 1 ⟹ 2 x 2 + 2 x = 0 ⟹ 2 x ( x + 1 ) = 0 x^2 + (x+1)^2 = 1 \implies 2x^2 + 2x = 0 \implies 2x(x + 1) = 0 x 2 + ( x + 1 ) 2 = 1 ⟹ 2 x 2 + 2 x = 0 ⟹ 2 x ( x + 1 ) = 0 . Δ = 4 − 0 = 4 > 0 \Delta = 4 - 0 = 4 \gt 0 Δ = 4 − 0 = 4 > 0 . Still
not tangent.
For x 2 + y 2 = 1 / 2 x^2 + y^2 = 1/2 x 2 + y 2 = 1/2 :
x 2 + ( x + 1 ) 2 = 1 / 2 ⟹ 2 x 2 + 2 x + 1 / 2 = 0 ⟹ Δ = 4 − 4 = 0 x^2 + (x+1)^2 = 1/2 \implies 2x^2 + 2x + 1/2 = 0 \implies \Delta = 4 - 4 = 0 x 2 + ( x + 1 ) 2 = 1/2 ⟹ 2 x 2 + 2 x + 1/2 = 0 ⟹ Δ = 4 − 4 = 0 . Tangent. Point of
contact: x = − 1 / 2 x = -1/2 x = − 1/2 , y = 1 / 2 y = 1/2 y = 1/2 . Point: ( − 1 / 2 , 1 / 2 ) (-1/2, 1/2) ( − 1/2 , 1/2 ) .
Question: Find the distance between the parallel lines 3 x + 4 y − 5 = 0 3x + 4y - 5 = 0 3 x + 4 y − 5 = 0 and
3 x + 4 y + 11 = 0 3x + 4y + 11 = 0 3 x + 4 y + 11 = 0 .
Distance
= ∣ C 2 − C 1 ∣ A 2 + B 2 = ∣ 11 − ( − 5 ) ∣ 9 + 16 = 16 5 = 3.2 = \dfrac{|C_2 - C_1|}{\sqrt{A^2 + B^2}} = \dfrac{|11 - (-5)|}{\sqrt{9 + 16}} = \dfrac{16}{5} = 3.2 = A 2 + B 2 ∣ C 2 − C 1 ∣ = 9 + 16 ∣11 − ( − 5 ) ∣ = 5 16 = 3.2 .
Question: The points A ( − 1 , 3 ) A(-1, 3) A ( − 1 , 3 ) , B ( 2 , k ) B(2, k) B ( 2 , k ) , and C ( 5 , − 1 ) C(5, -1) C ( 5 , − 1 ) are collinear. Find k k k .
For collinearity, the slope of A B AB A B equals the slope of B C BC B C :
k − 3 2 − ( − 1 ) = − 1 − k 5 − 2 ⟹ k − 3 3 = − 1 − k 3 \frac{k - 3}{2 - (-1)} = \frac{-1 - k}{5 - 2} \implies \frac{k - 3}{3} = \frac{-1 - k}{3} 2 − ( − 1 ) k − 3 = 5 − 2 − 1 − k ⟹ 3 k − 3 = 3 − 1 − k
k − 3 = − 1 − k ⟹ 2 k = 2 ⟹ k = 1 k - 3 = -1 - k \implies 2k = 2 \implies k = 1 k − 3 = − 1 − k ⟹ 2 k = 2 ⟹ k = 1
Question: Find the area of the quadrilateral with vertices ( 0 , 0 ) (0, 0) ( 0 , 0 ) , ( 4 , 0 ) (4, 0) ( 4 , 0 ) , ( 5 , 3 ) (5, 3) ( 5 , 3 ) , and
( 1 , 4 ) (1, 4) ( 1 , 4 ) .
Using the shoelace formula with vertices in order:
A r e a = 1 2 ∣ ( 0 ⋅ 0 − 4 ⋅ 0 ) + ( 4 ⋅ 3 − 5 ⋅ 0 ) + ( 5 ⋅ 4 − 1 ⋅ 3 ) + ( 1 ⋅ 0 − 0 ⋅ 4 ) ∣ \mathrm{Area} = \frac{1}{2}|(0 \cdot 0 - 4 \cdot 0) + (4 \cdot 3 - 5 \cdot 0) + (5 \cdot 4 - 1 \cdot 3) + (1 \cdot 0 - 0 \cdot 4)| Area = 2 1 ∣ ( 0 ⋅ 0 − 4 ⋅ 0 ) + ( 4 ⋅ 3 − 5 ⋅ 0 ) + ( 5 ⋅ 4 − 1 ⋅ 3 ) + ( 1 ⋅ 0 − 0 ⋅ 4 ) ∣
= 1 2 ∣ 0 + 12 + 17 + 0 ∣ = 1 2 ( 29 ) = 14.5 = \frac{1}{2}|0 + 12 + 17 + 0| = \frac{1}{2}(29) = 14.5 = 2 1 ∣0 + 12 + 17 + 0∣ = 2 1 ( 29 ) = 14.5
Question: A circle has centre ( 2 , − 1 ) (2, -1) ( 2 , − 1 ) and passes through the point ( 5 , 3 ) (5, 3) ( 5 , 3 ) . Find its
equation.
r = ( 5 − 2 ) 2 + ( 3 − ( − 1 ) ) 2 = 9 + 16 = 5 r = \sqrt{(5 - 2)^2 + (3 - (-1))^2} = \sqrt{9 + 16} = 5 r = ( 5 − 2 ) 2 + ( 3 − ( − 1 ) ) 2 = 9 + 16 = 5 .
Equation: ( x − 2 ) 2 + ( y + 1 ) 2 = 25 (x - 2)^2 + (y + 1)^2 = 25 ( x − 2 ) 2 + ( y + 1 ) 2 = 25 .
Question: Find the angle between the lines y = 2 x + 1 y = 2x + 1 y = 2 x + 1 and y = − 3 x + 4 y = -3x + 4 y = − 3 x + 4 .
tan θ = ∣ m 2 − m 1 1 + m 1 m 2 ∣ = ∣ − 3 − 2 1 + ( − 6 ) ∣ = ∣ − 5 − 5 ∣ = 1 \tan\theta = \left|\dfrac{m_2 - m_1}{1 + m_1 m_2}\right| = \left|\dfrac{-3 - 2}{1 + (-6)}\right| = \left|\dfrac{-5}{-5}\right| = 1 tan θ = 1 + m 1 m 2 m 2 − m 1 = 1 + ( − 6 ) − 3 − 2 = − 5 − 5 = 1
θ = 45 ∘ \theta = 45^\circ θ = 4 5 ∘ .
Additional Worked Examples
Worked Example 8: Circle with centre on a given line
Find the equation of the circle whose centre lies on 2 x − y + 3 = 0 2x - y + 3 = 0 2 x − y + 3 = 0 and which passes through A ( 1 , 2 ) A(1, 2) A ( 1 , 2 ) and B ( 5 , 6 ) B(5, 6) B ( 5 , 6 ) .
Solution Let the centre be C ( h , k ) C(h, k) C ( h , k ) . Since C C C lies on 2 x − y + 3 = 0 2x - y + 3 = 0 2 x − y + 3 = 0 :
2 h − k + 3 = 0 ⟹ k = 2 h + 3 ( 1 ) 2h - k + 3 = 0 \implies k = 2h + 3 \quad (1) 2 h − k + 3 = 0 ⟹ k = 2 h + 3 ( 1 )
Since C A = C B CA = CB C A = C B (both equal the radius):
( h − 1 ) 2 + ( k − 2 ) 2 = ( h − 5 ) 2 + ( k − 6 ) 2 (h-1)^2 + (k-2)^2 = (h-5)^2 + (k-6)^2 ( h − 1 ) 2 + ( k − 2 ) 2 = ( h − 5 ) 2 + ( k − 6 ) 2
Expanding and simplifying: h 2 − 2 h + 1 + k 2 − 4 k + 4 = h 2 − 10 h + 25 + k 2 − 12 k + 36 h^2 - 2h + 1 + k^2 - 4k + 4 = h^2 - 10h + 25 + k^2 - 12k + 36 h 2 − 2 h + 1 + k 2 − 4 k + 4 = h 2 − 10 h + 25 + k 2 − 12 k + 36
− 2 h − 4 k + 5 = − 10 h − 12 k + 61 -2h - 4k + 5 = -10h - 12k + 61 − 2 h − 4 k + 5 = − 10 h − 12 k + 61
8 h + 8 k = 56 ⟹ h + k = 7 ( 2 ) 8h + 8k = 56 \implies h + k = 7 \quad (2) 8 h + 8 k = 56 ⟹ h + k = 7 ( 2 )
Substituting (1) into (2): h + 2 h + 3 = 7 ⟹ 3 h = 4 ⟹ h = 4 3 h + 2h + 3 = 7 \implies 3h = 4 \implies h = \dfrac{4}{3} h + 2 h + 3 = 7 ⟹ 3 h = 4 ⟹ h = 3 4 .
k = 2 ⋅ 4 3 + 3 = 17 3 k = 2 \cdot \dfrac{4}{3} + 3 = \dfrac{17}{3} k = 2 ⋅ 3 4 + 3 = 3 17 .
r 2 = ( 4 3 − 1 ) 2 + ( 17 3 − 2 ) 2 = 1 9 + 121 9 = 122 9 r^2 = \left(\frac{4}{3} - 1\right)^2 + \left(\frac{17}{3} - 2\right)^2 = \frac{1}{9} + \frac{121}{9} = \frac{122}{9} r 2 = ( 3 4 − 1 ) 2 + ( 3 17 − 2 ) 2 = 9 1 + 9 121 = 9 122
Equation: ( x − 4 3 ) 2 + ( y − 17 3 ) 2 = 122 9 \left(x - \dfrac{4}{3}\right)^2 + \left(y - \dfrac{17}{3}\right)^2 = \dfrac{122}{9} ( x − 3 4 ) 2 + ( y − 3 17 ) 2 = 9 122 .
Worked Example 9: Tangents from an external point
Find the equations of the tangents from P ( 4 , 0 ) P(4, 0) P ( 4 , 0 ) to the circle x 2 + y 2 = 8 x^2 + y^2 = 8 x 2 + y 2 = 8 .
Solution A line through P ( 4 , 0 ) P(4, 0) P ( 4 , 0 ) with slope m m m : y = m ( x − 4 ) y = m(x - 4) y = m ( x − 4 ) .
Substituting into x 2 + y 2 = 8 x^2 + y^2 = 8 x 2 + y 2 = 8 :
( 1 + m 2 ) x 2 − 8 m 2 x + 16 m 2 − 8 = 0 (1 + m^2)x^2 - 8m^2 x + 16m^2 - 8 = 0 ( 1 + m 2 ) x 2 − 8 m 2 x + 16 m 2 − 8 = 0
For tangency, Δ = 0 \Delta = 0 Δ = 0 :
Δ = 64 m 4 − 4 ( 1 + m 2 ) ( 16 m 2 − 8 ) = 0 \Delta = 64m^4 - 4(1 + m^2)(16m^2 - 8) = 0 Δ = 64 m 4 − 4 ( 1 + m 2 ) ( 16 m 2 − 8 ) = 0
Expanding the second factor: 16 m 2 − 8 + 16 m 4 − 8 m 2 = 16 m 4 + 8 m 2 − 8 16m^2 - 8 + 16m^4 - 8m^2 = 16m^4 + 8m^2 - 8 16 m 2 − 8 + 16 m 4 − 8 m 2 = 16 m 4 + 8 m 2 − 8 .
Δ = 64 m 4 − 64 m 4 − 32 m 2 + 32 = − 32 m 2 + 32 = 0 \Delta = 64m^4 - 64m^4 - 32m^2 + 32 = -32m^2 + 32 = 0 Δ = 64 m 4 − 64 m 4 − 32 m 2 + 32 = − 32 m 2 + 32 = 0
m 2 = 1 ⟹ m = ± 1 m^2 = 1 \implies m = \pm 1 m 2 = 1 ⟹ m = ± 1
Tangent 1: y = x − 4 y = x - 4 y = x − 4 , i.e. x − y − 4 = 0 x - y - 4 = 0 x − y − 4 = 0 .
Tangent 2: y = − x + 4 y = -x + 4 y = − x + 4 , i.e. x + y − 4 = 0 x + y - 4 = 0 x + y − 4 = 0 .
Verification: distance from ( 0 , 0 ) (0,0) ( 0 , 0 ) to x − y − 4 = 0 x - y - 4 = 0 x − y − 4 = 0 is 4 2 = 2 2 = 8 \dfrac{4}{\sqrt{2}} = 2\sqrt{2} = \sqrt{8} 2 4 = 2 2 = 8 . Correct.
Worked Example 10: Triangle formed by three lines
Find the area of the triangle formed by ℓ 1 : x + y = 6 \ell_1: x + y = 6 ℓ 1 : x + y = 6 , ℓ 2 : x − y = 2 \ell_2: x - y = 2 ℓ 2 : x − y = 2 , and ℓ 3 : 2 x + y = 9 \ell_3: 2x + y = 9 ℓ 3 : 2 x + y = 9 .
Solution Find the three vertices by pairwise intersection.
ℓ 1 ∩ ℓ 2 \ell_1 \cap \ell_2 ℓ 1 ∩ ℓ 2 : Adding the equations gives 2 x = 8 ⟹ x = 4 2x = 8 \implies x = 4 2 x = 8 ⟹ x = 4 , y = 2 y = 2 y = 2 . Vertex A ( 4 , 2 ) A(4, 2) A ( 4 , 2 ) .
ℓ 1 ∩ ℓ 3 \ell_1 \cap \ell_3 ℓ 1 ∩ ℓ 3 : Subtracting ℓ 1 \ell_1 ℓ 1 from ℓ 3 \ell_3 ℓ 3 gives x = 3 x = 3 x = 3 , y = 3 y = 3 y = 3 . Vertex B ( 3 , 3 ) B(3, 3) B ( 3 , 3 ) .
ℓ 2 ∩ ℓ 3 \ell_2 \cap \ell_3 ℓ 2 ∩ ℓ 3 : Adding the equations gives 3 x = 11 ⟹ x = 11 3 3x = 11 \implies x = \dfrac{11}{3} 3 x = 11 ⟹ x = 3 11 , y = 5 3 y = \dfrac{5}{3} y = 3 5 . Vertex C ( 11 3 , 5 3 ) C\!\left(\dfrac{11}{3}, \dfrac{5}{3}\right) C ( 3 11 , 3 5 ) .
Using the area formula:
A r e a = 1 2 ∣ 4 ( 3 − 5 3 ) + 3 ( 5 3 − 2 ) + 11 3 ( 2 − 3 ) ∣ \mathrm{Area} = \frac{1}{2}\left|4\!\left(3 - \frac{5}{3}\right) + 3\!\left(\frac{5}{3} - 2\right) + \frac{11}{3}(2 - 3)\right| Area = 2 1 4 ( 3 − 3 5 ) + 3 ( 3 5 − 2 ) + 3 11 ( 2 − 3 )
= 1 2 ∣ 4 ⋅ 4 3 + 3 ⋅ ( − 1 3 ) + 11 3 ⋅ ( − 1 ) ∣ = \frac{1}{2}\left|4 \cdot \frac{4}{3} + 3 \cdot \left(-\frac{1}{3}\right) + \frac{11}{3} \cdot (-1)\right| = 2 1 4 ⋅ 3 4 + 3 ⋅ ( − 3 1 ) + 3 11 ⋅ ( − 1 )
= 1 2 ∣ 16 − 3 − 11 3 ∣ = 1 2 ⋅ 2 3 = 1 3 = \frac{1}{2}\left|\frac{16 - 3 - 11}{3}\right| = \frac{1}{2} \cdot \frac{2}{3} = \frac{1}{3} = 2 1 3 16 − 3 − 11 = 2 1 ⋅ 3 2 = 3 1
Worked Example 11: Reflection of a point in a line
Find the reflection of P ( 1 , 5 ) P(1, 5) P ( 1 , 5 ) in the line 3 x − y + 1 = 0 3x - y + 1 = 0 3 x − y + 1 = 0 .
Solution Let the reflected point be P ′ ( a , b ) P'(a, b) P ′ ( a , b ) . The midpoint M ( 1 + a 2 , 5 + b 2 ) M\!\left(\dfrac{1+a}{2}, \dfrac{5+b}{2}\right) M ( 2 1 + a , 2 5 + b ) lies on the line:
3 ( 1 + a 2 ) − 5 + b 2 + 1 = 0 3\!\left(\frac{1+a}{2}\right) - \frac{5+b}{2} + 1 = 0 3 ( 2 1 + a ) − 2 5 + b + 1 = 0
3 ( 1 + a ) − ( 5 + b ) + 2 = 0 ⟹ 3 a − b = 0 ( 1 ) 3(1+a) - (5+b) + 2 = 0 \implies 3a - b = 0 \quad (1) 3 ( 1 + a ) − ( 5 + b ) + 2 = 0 ⟹ 3 a − b = 0 ( 1 )
The slope of P P ′ PP' P P ′ is perpendicular to the line (slope 3 3 3 ):
b − 5 a − 1 ⋅ 3 = − 1 ⟹ 3 b − 15 = − ( a − 1 ) ⟹ a + 3 b = 16 ( 2 ) \frac{b - 5}{a - 1} \cdot 3 = -1 \implies 3b - 15 = -(a - 1) \implies a + 3b = 16 \quad (2) a − 1 b − 5 ⋅ 3 = − 1 ⟹ 3 b − 15 = − ( a − 1 ) ⟹ a + 3 b = 16 ( 2 )
From (1): b = 3 a b = 3a b = 3 a . Substituting into (2): a + 9 a = 16 ⟹ a = 8 5 a + 9a = 16 \implies a = \dfrac{8}{5} a + 9 a = 16 ⟹ a = 5 8 .
b = 3 ⋅ 8 5 = 24 5 b = 3 \cdot \frac{8}{5} = \frac{24}{5} b = 3 ⋅ 5 8 = 5 24
Reflection: P ′ ( 8 5 , 24 5 ) P'\!\left(\dfrac{8}{5}, \dfrac{24}{5}\right) P ′ ( 5 8 , 5 24 ) .
Worked Example 12: Circle through three points
Find the equation of the circle through P ( 0 , 1 ) P(0, 1) P ( 0 , 1 ) , Q ( 2 , 3 ) Q(2, 3) Q ( 2 , 3 ) , and R ( 4 , 1 ) R(4, 1) R ( 4 , 1 ) .
Solution P ( 0 , 1 ) P(0, 1) P ( 0 , 1 ) and R ( 4 , 1 ) R(4, 1) R ( 4 , 1 ) share the same y y y -coordinate, so the centre lies on their perpendicular bisector x = 2 x = 2 x = 2 .
P ( 0 , 1 ) P(0, 1) P ( 0 , 1 ) and Q ( 2 , 3 ) Q(2, 3) Q ( 2 , 3 ) have midpoint ( 1 , 2 ) (1, 2) ( 1 , 2 ) and segment slope 1 1 1 . Their perpendicular bisector has slope − 1 -1 − 1 through ( 1 , 2 ) (1, 2) ( 1 , 2 ) : y − 2 = − ( x − 1 ) ⟹ y = − x + 3 y - 2 = -(x - 1) \implies y = -x + 3 y − 2 = − ( x − 1 ) ⟹ y = − x + 3 .
Intersecting with x = 2 x = 2 x = 2 : y = 1 y = 1 y = 1 . Centre: ( 2 , 1 ) (2, 1) ( 2 , 1 ) .
r 2 = ( 2 − 0 ) 2 + ( 1 − 1 ) 2 = 4 r^2 = (2-0)^2 + (1-1)^2 = 4 r 2 = ( 2 − 0 ) 2 + ( 1 − 1 ) 2 = 4
Equation: ( x − 2 ) 2 + ( y − 1 ) 2 = 4 (x - 2)^2 + (y - 1)^2 = 4 ( x − 2 ) 2 + ( y − 1 ) 2 = 4 , or x 2 + y 2 − 4 x − 2 y + 1 = 0 x^2 + y^2 - 4x - 2y + 1 = 0 x 2 + y 2 − 4 x − 2 y + 1 = 0 .
Verification: ( 4 − 2 ) 2 + ( 1 − 1 ) 2 = 4 = r 2 (4-2)^2 + (1-1)^2 = 4 = r^2 ( 4 − 2 ) 2 + ( 1 − 1 ) 2 = 4 = r 2 . Correct.
Additional Common Pitfalls
Sign error in the section formula. The point dividing A B AB A B in ratio m : n m:n m : n (from A A A towards B B B ) has x x x -coordinate n x 1 + m x 2 m + n \dfrac{nx_1 + mx_2}{m+n} m + n n x 1 + m x 2 , not m x 1 + n x 2 m + n \dfrac{mx_1 + nx_2}{m+n} m + n m x 1 + n x 2 . The weight of A A A is n n n , not m m m .
Dropping the absolute value in point-to-line distance. The formula ∣ A x 0 + B y 0 + C ∣ A 2 + B 2 \dfrac{|Ax_0 + By_0 + C|}{\sqrt{A^2 + B^2}} A 2 + B 2 ∣ A x 0 + B y 0 + C ∣ always yields a non-negative result. Omitting the absolute value can produce a negative "distance".
Failing to normalise parallel lines. Before using the distance-between-parallel-lines formula d = ∣ C 2 − C 1 ∣ A 2 + B 2 d = \dfrac{|C_2 - C_1|}{\sqrt{A^2 + B^2}} d = A 2 + B 2 ∣ C 2 − C 1 ∣ , ensure both equations have identical A A A and B B B coefficients. If one equation is a scalar multiple of the other, rescale first.
Assuming two circles always intersect. Two circles with centres O 1 O_1 O 1 , O 2 O_2 O 2 and radii r 1 r_1 r 1 , r 2 r_2 r 2 intersect at two points only when ∣ r 1 − r 2 ∣ < d < r 1 + r 2 |r_1 - r_2| \lt d \lt r_1 + r_2 ∣ r 1 − r 2 ∣ < d < r 1 + r 2 , where d d d is the distance between centres.
Undefined slope of vertical lines. The line x = a x = a x = a has no defined slope. Never assign a numerical value such as ∞ \infty ∞ to it; state that the slope is undefined.
Stopping at the midpoint for perpendicular bisectors. The perpendicular bisector of A B AB A B requires both the midpoint and the perpendicular slope. A common mistake is to find the midpoint and stop.
Confusing the tangent formula for circles not at the origin. The shortcut x 1 x + y 1 y = r 2 x_1 x + y_1 y = r^2 x 1 x + y 1 y = r 2 only applies when the circle is x 2 + y 2 = r 2 x^2 + y^2 = r^2 x 2 + y 2 = r 2 . For ( x − a ) 2 + ( y − b ) 2 = r 2 (x-a)^2 + (y-b)^2 = r^2 ( x − a ) 2 + ( y − b ) 2 = r 2 , use the general formula ( x 1 − a ) ( x − a ) + ( y 1 − b ) ( y − b ) = r 2 (x_1-a)(x-a) + (y_1-b)(y-b) = r^2 ( x 1 − a ) ( x − a ) + ( y 1 − b ) ( y − b ) = r 2 .
Arithmetic errors in the shoelace formula. Always list vertices in consistent order (clockwise or anticlockwise). Mixing the order gives the wrong area or its negative.
Exam-Style Problems
Problem 1. The points A ( − 2 , 3 ) A(-2, 3) A ( − 2 , 3 ) , B ( 4 , 7 ) B(4, 7) B ( 4 , 7 ) , and C ( k , − 1 ) C(k, -1) C ( k , − 1 ) form a triangle with area 30 30 30 . Find the possible values of k k k .
Solution 1 2 ∣ ( − 2 ) ( 7 − ( − 1 ) ) + 4 ( ( − 1 ) − 3 ) + k ( 3 − 7 ) ∣ = 30 \frac{1}{2}\left|(-2)(7 - (-1)) + 4((-1) - 3) + k(3 - 7)\right| = 30 2 1 ∣ ( − 2 ) ( 7 − ( − 1 )) + 4 (( − 1 ) − 3 ) + k ( 3 − 7 ) ∣ = 30
1 2 ∣ − 16 − 16 − 4 k ∣ = 30 ⟹ ∣ − 32 − 4 k ∣ = 60 \frac{1}{2}|-16 - 16 - 4k| = 30 \implies |-32 - 4k| = 60 2 1 ∣ − 16 − 16 − 4 k ∣ = 30 ⟹ ∣ − 32 − 4 k ∣ = 60
Case 1: − 32 − 4 k = 60 ⟹ 4 k = − 92 ⟹ k = − 23 -32 - 4k = 60 \implies 4k = -92 \implies k = -23 − 32 − 4 k = 60 ⟹ 4 k = − 92 ⟹ k = − 23 .
Case 2: − 32 − 4 k = − 60 ⟹ 4 k = 28 ⟹ k = 7 -32 - 4k = -60 \implies 4k = 28 \implies k = 7 − 32 − 4 k = − 60 ⟹ 4 k = 28 ⟹ k = 7 .
Answer: k = − 23 k = -23 k = − 23 or k = 7 k = 7 k = 7 .
Problem 2. The line y = 3 4 x + c y = \dfrac{3}{4}x + c y = 4 3 x + c is tangent to ( x − 1 ) 2 + ( y − 2 ) 2 = 25 (x - 1)^2 + (y - 2)^2 = 25 ( x − 1 ) 2 + ( y − 2 ) 2 = 25 . Find c c c .
Solution Rewrite the line as 3 x − 4 y + 4 c = 0 3x - 4y + 4c = 0 3 x − 4 y + 4 c = 0 . The distance from the centre ( 1 , 2 ) (1, 2) ( 1 , 2 ) to this line equals the radius 5 5 5 :
∣ 3 ( 1 ) − 4 ( 2 ) + 4 c ∣ 9 + 16 = 5 ⟹ ∣ 4 c − 5 ∣ 5 = 5 ⟹ ∣ 4 c − 5 ∣ = 25 \frac{|3(1) - 4(2) + 4c|}{\sqrt{9 + 16}} = 5 \implies \frac{|4c - 5|}{5} = 5 \implies |4c - 5| = 25 9 + 16 ∣3 ( 1 ) − 4 ( 2 ) + 4 c ∣ = 5 ⟹ 5 ∣4 c − 5∣ = 5 ⟹ ∣4 c − 5∣ = 25
Case 1: 4 c − 5 = 25 ⟹ c = 7.5 4c - 5 = 25 \implies c = 7.5 4 c − 5 = 25 ⟹ c = 7.5 .
Case 2: 4 c − 5 = − 25 ⟹ c = − 5 4c - 5 = -25 \implies c = -5 4 c − 5 = − 25 ⟹ c = − 5 .
Answer: c = 7.5 c = 7.5 c = 7.5 or c = − 5 c = -5 c = − 5 .
Problem 3. Find the equation of the circle passing through A ( 2 , 3 ) A(2, 3) A ( 2 , 3 ) and B ( 6 , 1 ) B(6, 1) B ( 6 , 1 ) with its centre on the x x x -axis.
Solution Let the centre be C ( h , 0 ) C(h, 0) C ( h , 0 ) . Then C A 2 = C B 2 CA^2 = CB^2 C A 2 = C B 2 :
( h − 2 ) 2 + 9 = ( h − 6 ) 2 + 1 (h-2)^2 + 9 = (h-6)^2 + 1 ( h − 2 ) 2 + 9 = ( h − 6 ) 2 + 1
h 2 − 4 h + 13 = h 2 − 12 h + 37 ⟹ 8 h = 24 ⟹ h = 3 h^2 - 4h + 13 = h^2 - 12h + 37 \implies 8h = 24 \implies h = 3 h 2 − 4 h + 13 = h 2 − 12 h + 37 ⟹ 8 h = 24 ⟹ h = 3
r 2 = ( 3 − 2 ) 2 + ( 0 − 3 ) 2 = 1 + 9 = 10 r^2 = (3-2)^2 + (0-3)^2 = 1 + 9 = 10 r 2 = ( 3 − 2 ) 2 + ( 0 − 3 ) 2 = 1 + 9 = 10
Equation: ( x − 3 ) 2 + y 2 = 10 (x - 3)^2 + y^2 = 10 ( x − 3 ) 2 + y 2 = 10 .
Problem 4. The line 3 x + 4 y − 12 = 0 3x + 4y - 12 = 0 3 x + 4 y − 12 = 0 cuts the coordinate axes at A A A and B B B . Find the equation of the circle with A B AB A B as diameter.
Solution A A A : set y = 0 y = 0 y = 0 , giving x = 4 x = 4 x = 4 . So A ( 4 , 0 ) A(4, 0) A ( 4 , 0 ) .
B B B : set x = 0 x = 0 x = 0 , giving y = 3 y = 3 y = 3 . So B ( 0 , 3 ) B(0, 3) B ( 0 , 3 ) .
Centre (midpoint of A B AB A B ): ( 4 + 0 2 , 0 + 3 2 ) = ( 2 , 1.5 ) \left(\dfrac{4+0}{2}, \dfrac{0+3}{2}\right) = (2,\; 1.5) ( 2 4 + 0 , 2 0 + 3 ) = ( 2 , 1.5 ) .
r = A B 2 = 16 + 9 2 = 5 2 r = \frac{AB}{2} = \frac{\sqrt{16 + 9}}{2} = \frac{5}{2} r = 2 A B = 2 16 + 9 = 2 5
Equation: ( x − 2 ) 2 + ( y − 3 2 ) 2 = 25 4 (x - 2)^2 + \!\left(y - \dfrac{3}{2}\right)^2 = \dfrac{25}{4} ( x − 2 ) 2 + ( y − 2 3 ) 2 = 4 25 .
Expanding: x 2 + y 2 − 4 x − 3 y = 0 x^2 + y^2 - 4x - 3y = 0 x 2 + y 2 − 4 x − 3 y = 0 .
Problem 5. Determine whether the triangle with vertices P ( 1 , 2 ) P(1, 2) P ( 1 , 2 ) , Q ( 5 , 5 ) Q(5, 5) Q ( 5 , 5 ) , and R ( 8 , 1 ) R(8, 1) R ( 8 , 1 ) is right-angled.
Solution Calculate the slopes of the three sides:
m P Q = 5 − 2 5 − 1 = 3 4 , m Q R = 1 − 5 8 − 5 = − 4 3 m_{PQ} = \frac{5-2}{5-1} = \frac{3}{4}, \quad m_{QR} = \frac{1-5}{8-5} = -\frac{4}{3} m P Q = 5 − 1 5 − 2 = 4 3 , m QR = 8 − 5 1 − 5 = − 3 4
m P Q ⋅ m Q R = 3 4 ⋅ ( − 4 3 ) = − 1 m_{PQ} \cdot m_{QR} = \frac{3}{4} \cdot \left(-\frac{4}{3}\right) = -1 m P Q ⋅ m QR = 4 3 ⋅ ( − 3 4 ) = − 1
Since the product is − 1 -1 − 1 , P Q ⊥ Q R PQ \perp QR P Q ⊥ QR . The triangle is right-angled at Q Q Q .
Verification by Pythagoras: P Q 2 = 25 PQ^2 = 25 P Q 2 = 25 , Q R 2 = 25 QR^2 = 25 Q R 2 = 25 , P R 2 = 49 + 1 = 50 PR^2 = 49 + 1 = 50 P R 2 = 49 + 1 = 50 . Indeed 25 + 25 = 50 25 + 25 = 50 25 + 25 = 50 .
Problem 6. Find the equation of the perpendicular bisector of the segment joining ( − 1 , 5 ) (-1, 5) ( − 1 , 5 ) and ( 3 , − 1 ) (3, -1) ( 3 , − 1 ) , and verify that ( 1 , 2 ) (1, 2) ( 1 , 2 ) lies on it.
Solution Midpoint: ( − 1 + 3 2 , 5 + ( − 1 ) 2 ) = ( 1 , 2 ) \left(\dfrac{-1+3}{2}, \dfrac{5+(-1)}{2}\right) = (1, 2) ( 2 − 1 + 3 , 2 5 + ( − 1 ) ) = ( 1 , 2 ) .
Slope of segment: − 1 − 5 3 − ( − 1 ) = − 6 4 = − 3 2 \dfrac{-1-5}{3-(-1)} = \dfrac{-6}{4} = -\dfrac{3}{2} 3 − ( − 1 ) − 1 − 5 = 4 − 6 = − 2 3 .
Perpendicular slope: 2 3 \dfrac{2}{3} 3 2 .
Equation through ( 1 , 2 ) (1, 2) ( 1 , 2 ) : y − 2 = 2 3 ( x − 1 ) ⟹ 3 y − 6 = 2 x − 2 ⟹ 2 x − 3 y + 4 = 0 y - 2 = \dfrac{2}{3}(x - 1) \implies 3y - 6 = 2x - 2 \implies 2x - 3y + 4 = 0 y − 2 = 3 2 ( x − 1 ) ⟹ 3 y − 6 = 2 x − 2 ⟹ 2 x − 3 y + 4 = 0 .
Verification: 2 ( 1 ) − 3 ( 2 ) + 4 = 2 − 6 + 4 = 0 2(1) - 3(2) + 4 = 2 - 6 + 4 = 0 2 ( 1 ) − 3 ( 2 ) + 4 = 2 − 6 + 4 = 0 . Confirmed.
Problem 7. A point P P P moves so that its distance from A ( 3 , 1 ) A(3, 1) A ( 3 , 1 ) is always twice its distance from B ( − 1 , 4 ) B(-1, 4) B ( − 1 , 4 ) . Find the equation of the locus of P P P .
Solution Let P = ( x , y ) P = (x, y) P = ( x , y ) . Then P A = 2 ⋅ P B PA = 2 \cdot PB P A = 2 ⋅ P B :
( x − 3 ) 2 + ( y − 1 ) 2 = 2 ( x + 1 ) 2 + ( y − 4 ) 2 \sqrt{(x-3)^2 + (y-1)^2} = 2\sqrt{(x+1)^2 + (y-4)^2} ( x − 3 ) 2 + ( y − 1 ) 2 = 2 ( x + 1 ) 2 + ( y − 4 ) 2
Squaring both sides:
( x − 3 ) 2 + ( y − 1 ) 2 = 4 [ ( x + 1 ) 2 + ( y − 4 ) 2 ] (x-3)^2 + (y-1)^2 = 4\!\left[(x+1)^2 + (y-4)^2\right] ( x − 3 ) 2 + ( y − 1 ) 2 = 4 [ ( x + 1 ) 2 + ( y − 4 ) 2 ]
x 2 − 6 x + 9 + y 2 − 2 y + 1 = 4 ( x 2 + 2 x + 1 + y 2 − 8 y + 16 ) x^2 - 6x + 9 + y^2 - 2y + 1 = 4(x^2 + 2x + 1 + y^2 - 8y + 16) x 2 − 6 x + 9 + y 2 − 2 y + 1 = 4 ( x 2 + 2 x + 1 + y 2 − 8 y + 16 )
x 2 − 6 x + y 2 − 2 y + 10 = 4 x 2 + 8 x + 4 y 2 − 32 y + 68 x^2 - 6x + y^2 - 2y + 10 = 4x^2 + 8x + 4y^2 - 32y + 68 x 2 − 6 x + y 2 − 2 y + 10 = 4 x 2 + 8 x + 4 y 2 − 32 y + 68
3 x 2 + 3 y 2 + 14 x − 30 y + 58 = 0 3x^2 + 3y^2 + 14x - 30y + 58 = 0 3 x 2 + 3 y 2 + 14 x − 30 y + 58 = 0
Dividing by 3 3 3 : x 2 + y 2 + 14 3 x − 10 y + 58 3 = 0 x^2 + y^2 + \dfrac{14}{3}x - 10y + \dfrac{58}{3} = 0 x 2 + y 2 + 3 14 x − 10 y + 3 58 = 0 .
This is the equation of a circle (Apollonius circle).
Problem 8. Two circles C 1 : x 2 + y 2 + 4 x − 6 y + 9 = 0 C_1: x^2 + y^2 + 4x - 6y + 9 = 0 C 1 : x 2 + y 2 + 4 x − 6 y + 9 = 0 and C 2 : x 2 + y 2 − 2 x + 2 y − 14 = 0 C_2: x^2 + y^2 - 2x + 2y - 14 = 0 C 2 : x 2 + y 2 − 2 x + 2 y − 14 = 0 intersect at A A A and B B B . Find the equation of their common chord A B AB A B .
Solution The common chord is found by subtracting the two circle equations:
( x 2 + y 2 + 4 x − 6 y + 9 ) − ( x 2 + y 2 − 2 x + 2 y − 14 ) = 0 (x^2 + y^2 + 4x - 6y + 9) - (x^2 + y^2 - 2x + 2y - 14) = 0 ( x 2 + y 2 + 4 x − 6 y + 9 ) − ( x 2 + y 2 − 2 x + 2 y − 14 ) = 0
6 x − 8 y + 23 = 0 6x - 8y + 23 = 0 6 x − 8 y + 23 = 0
The equation of the common chord is 6 x − 8 y + 23 = 0 6x - 8y + 23 = 0 6 x − 8 y + 23 = 0 .
Cross-References
Quadratics: The discriminant is used to determine the nature of circle-line intersections. See quadratics.md ).
Functions: Transformations of graphs apply equally to circles and lines. See functions-advanced.md ).
Trigonometry: The angle between two lines uses the tangent formula, which connects to trigonometric identities.
For the A-Level treatment of this topic, see Coordinates and Geometry .
tip
Ready to test your understanding of Coordinate Geometry ? The diagnostic test contains the hardest questions within the DSE specification for this topic, each with a full worked solution.
Unit tests probe edge cases and common misconceptions. Integration tests combine Coordinate Geometry with other DSE mathematics topics to test synthesis under exam conditions.
See Diagnostic Guide for instructions on self-marking and building a personal test matrix.
DSE Exam Technique
Showing Working
For coordinate geometry problems in DSE Paper 1:
Write the formula before substituting (e.g., distance formula, midpoint formula, gradient formula).
For circle equations, show the completing-the-square steps.
For intersection problems, show the substitution and the resulting quadratic.
When finding tangents, state that the tangent is perpendicular to the radius.
For locus problems, start with "Let P = ( x , y ) P = (x, y) P = ( x , y ) " and derive the equation step by step.
Length and distance answers to 3 significant figures unless exact forms are possible. Coordinate values involving square roots should be left in exact form.
Common DSE Question Types
Finding equations of circles from given conditions (centre and radius, three points, diameter).
Circle-line intersection (tangent condition using discriminant or distance formula).
Locus problems (equidistant from points, ratio of distances).
Area of triangle using coordinate formula or shoelace formula.
Perpendicular bisector and reflection problems.
Additional Worked Examples
Worked Example 13: Equation of a circle tangent to both axes
Find the equation of the circle in the first quadrant that is tangent to both coordinate axes and has radius 3 3 3 .
Solution Since the circle is in the first quadrant and tangent to both axes, the centre is at ( r , r ) = ( 3 , 3 ) (r, r) = (3, 3) ( r , r ) = ( 3 , 3 ) .
Equation: ( x − 3 ) 2 + ( y − 3 ) 2 = 9 (x - 3)^2 + (y - 3)^2 = 9 ( x − 3 ) 2 + ( y − 3 ) 2 = 9 .
Expanding: x 2 + y 2 − 6 x − 6 y + 9 = 0 x^2 + y^2 - 6x - 6y + 9 = 0 x 2 + y 2 − 6 x − 6 y + 9 = 0 .
Worked Example 14: Intersection of two circles
Find the points of intersection of x 2 + y 2 = 5 x^2 + y^2 = 5 x 2 + y 2 = 5 and x 2 + y 2 − 4 x − 2 y + 1 = 0 x^2 + y^2 - 4x - 2y + 1 = 0 x 2 + y 2 − 4 x − 2 y + 1 = 0 .
Solution Subtract the second equation from the first:
5 − ( − 4 x − 2 y + 1 ) = 0 ⟹ 4 x + 2 y − 6 = 0 ⟹ 2 x + y = 3 ⟹ y = 3 − 2 x 5 - (-4x - 2y + 1) = 0 \implies 4x + 2y - 6 = 0 \implies 2x + y = 3 \implies y = 3 - 2x 5 − ( − 4 x − 2 y + 1 ) = 0 ⟹ 4 x + 2 y − 6 = 0 ⟹ 2 x + y = 3 ⟹ y = 3 − 2 x
Substituting into x 2 + y 2 = 5 x^2 + y^2 = 5 x 2 + y 2 = 5 :
x 2 + ( 3 − 2 x ) 2 = 5 ⟹ x 2 + 9 − 12 x + 4 x 2 = 5 ⟹ 5 x 2 − 12 x + 4 = 0 x^2 + (3 - 2x)^2 = 5 \implies x^2 + 9 - 12x + 4x^2 = 5 \implies 5x^2 - 12x + 4 = 0 x 2 + ( 3 − 2 x ) 2 = 5 ⟹ x 2 + 9 − 12 x + 4 x 2 = 5 ⟹ 5 x 2 − 12 x + 4 = 0
( 5 x − 2 ) ( x − 2 ) = 0 ⟹ x = 2 5 or x = 2 (5x - 2)(x - 2) = 0 \implies x = \frac{2}{5} \;\text{or}\; x = 2 ( 5 x − 2 ) ( x − 2 ) = 0 ⟹ x = 5 2 or x = 2
x = 2 5 ⟹ y = 3 − 4 5 = 11 5 x = \dfrac{2}{5} \implies y = 3 - \dfrac{4}{5} = \dfrac{11}{5} x = 5 2 ⟹ y = 3 − 5 4 = 5 11 . Point: ( 2 5 , 11 5 ) \left(\dfrac{2}{5}, \dfrac{11}{5}\right) ( 5 2 , 5 11 ) .
x = 2 ⟹ y = 3 − 4 = − 1 x = 2 \implies y = 3 - 4 = -1 x = 2 ⟹ y = 3 − 4 = − 1 . Point: ( 2 , − 1 ) (2, -1) ( 2 , − 1 ) .
Worked Example 15: Shortest distance from a point to a circle
Find the shortest distance from P ( 5 , 3 ) P(5, 3) P ( 5 , 3 ) to the circle x 2 + y 2 − 4 x + 2 y − 4 = 0 x^2 + y^2 - 4x + 2y - 4 = 0 x 2 + y 2 − 4 x + 2 y − 4 = 0 .
Solution Centre: ( 2 , − 1 ) (2, -1) ( 2 , − 1 ) , r 2 = 4 + 1 + 4 = 9 ⟹ r = 3 r^2 = 4 + 1 + 4 = 9 \implies r = 3 r 2 = 4 + 1 + 4 = 9 ⟹ r = 3 .
Distance from P P P to centre: d = ( 5 − 2 ) 2 + ( 3 − ( − 1 ) ) 2 = 9 + 16 = 5 d = \sqrt{(5-2)^2 + (3-(-1))^2} = \sqrt{9 + 16} = 5 d = ( 5 − 2 ) 2 + ( 3 − ( − 1 ) ) 2 = 9 + 16 = 5 .
Shortest distance from P P P to the circle: d − r = 5 − 3 = 2 d - r = 5 - 3 = 2 d − r = 5 − 3 = 2 .
Worked Example 16: Locus - equidistant from two points
Find the equation of the locus of points equidistant from A ( 1 , 3 ) A(1, 3) A ( 1 , 3 ) and B ( 5 , 7 ) B(5, 7) B ( 5 , 7 ) .
Solution Let P = ( x , y ) P = (x, y) P = ( x , y ) . Then P A = P B PA = PB P A = P B :
( x − 1 ) 2 + ( y − 3 ) 2 = ( x − 5 ) 2 + ( y − 7 ) 2 \sqrt{(x-1)^2 + (y-3)^2} = \sqrt{(x-5)^2 + (y-7)^2} ( x − 1 ) 2 + ( y − 3 ) 2 = ( x − 5 ) 2 + ( y − 7 ) 2
Squaring:
( x − 1 ) 2 + ( y − 3 ) 2 = ( x − 5 ) 2 + ( y − 7 ) 2 (x-1)^2 + (y-3)^2 = (x-5)^2 + (y-7)^2 ( x − 1 ) 2 + ( y − 3 ) 2 = ( x − 5 ) 2 + ( y − 7 ) 2
x 2 − 2 x + 1 + y 2 − 6 y + 9 = x 2 − 10 x + 25 + y 2 − 14 y + 49 x^2 - 2x + 1 + y^2 - 6y + 9 = x^2 - 10x + 25 + y^2 - 14y + 49 x 2 − 2 x + 1 + y 2 − 6 y + 9 = x 2 − 10 x + 25 + y 2 − 14 y + 49
8 x + 8 y = 64 ⟹ x + y = 8 8x + 8y = 64 \implies x + y = 8 8 x + 8 y = 64 ⟹ x + y = 8
This is the perpendicular bisector of A B AB A B , as expected.
DSE Exam-Style Questions
DSE Practice 1. The line y = m x + 1 y = mx + 1 y = m x + 1 is tangent to the circle x 2 + y 2 = 4 x^2 + y^2 = 4 x 2 + y 2 = 4 . Find the possible values of m m m .
Solution Substitute y = m x + 1 y = mx + 1 y = m x + 1 into x 2 + y 2 = 4 x^2 + y^2 = 4 x 2 + y 2 = 4 :
x 2 + ( m x + 1 ) 2 = 4 ⟹ ( 1 + m 2 ) x 2 + 2 m x − 3 = 0 x^2 + (mx + 1)^2 = 4 \implies (1 + m^2)x^2 + 2mx - 3 = 0 x 2 + ( m x + 1 ) 2 = 4 ⟹ ( 1 + m 2 ) x 2 + 2 m x − 3 = 0
For tangency: Δ = 0 \Delta = 0 Δ = 0 :
4 m 2 + 12 ( 1 + m 2 ) = 0 ⟹ 4 m 2 + 12 + 12 m 2 = 0 ⟹ 16 m 2 + 12 = 0 4m^2 + 12(1 + m^2) = 0 \implies 4m^2 + 12 + 12m^2 = 0 \implies 16m^2 + 12 = 0 4 m 2 + 12 ( 1 + m 2 ) = 0 ⟹ 4 m 2 + 12 + 12 m 2 = 0 ⟹ 16 m 2 + 12 = 0
m 2 = − 12 16 = − 3 4 < 0 m^2 = -\dfrac{12}{16} = -\dfrac{3}{4} < 0 m 2 = − 16 12 = − 4 3 < 0 .
No real values of m m m satisfy this condition. The line y = m x + 1 y = mx + 1 y = m x + 1 is never tangent to x 2 + y 2 = 4 x^2 + y^2 = 4 x 2 + y 2 = 4 .
Wait -- let me recheck. Δ = ( 2 m ) 2 − 4 ( 1 + m 2 ) ( − 3 ) = 4 m 2 + 12 ( 1 + m 2 ) = 4 m 2 + 12 + 12 m 2 = 16 m 2 + 12 > 0 \Delta = (2m)^2 - 4(1 + m^2)(-3) = 4m^2 + 12(1 + m^2) = 4m^2 + 12 + 12m^2 = 16m^2 + 12 > 0 Δ = ( 2 m ) 2 − 4 ( 1 + m 2 ) ( − 3 ) = 4 m 2 + 12 ( 1 + m 2 ) = 4 m 2 + 12 + 12 m 2 = 16 m 2 + 12 > 0 for all real m m m . This means the line always intersects the circle at two points, never tangent.
Actually, the distance from the centre ( 0 , 0 ) (0,0) ( 0 , 0 ) to the line m x − y + 1 = 0 mx - y + 1 = 0 m x − y + 1 = 0 is:
d = ∣ 1 ∣ m 2 + 1 = 1 m 2 + 1 d = \frac{|1|}{\sqrt{m^2 + 1}} = \frac{1}{\sqrt{m^2 + 1}} d = m 2 + 1 ∣1∣ = m 2 + 1 1
For tangency: d = r = 2 d = r = 2 d = r = 2 , i.e., 1 m 2 + 1 = 2 ⟹ m 2 + 1 = 1 2 ⟹ m 2 + 1 = 1 4 ⟹ m 2 = − 3 4 \dfrac{1}{\sqrt{m^2 + 1}} = 2 \implies \sqrt{m^2 + 1} = \dfrac{1}{2} \implies m^2 + 1 = \dfrac{1}{4} \implies m^2 = -\dfrac{3}{4} m 2 + 1 1 = 2 ⟹ m 2 + 1 = 2 1 ⟹ m 2 + 1 = 4 1 ⟹ m 2 = − 4 3 .
No real solution. Confirmed: the line is never tangent to the circle.
DSE Practice 2. A circle touches the y y y -axis at ( 0 , 3 ) (0, 3) ( 0 , 3 ) and passes through ( 2 , 1 ) (2, 1) ( 2 , 1 ) . Find its equation.
Solution Since the circle touches the y y y -axis at ( 0 , 3 ) (0, 3) ( 0 , 3 ) , the centre lies on the horizontal line y = 3 y = 3 y = 3 , so the centre is C ( r , 3 ) C(r, 3) C ( r , 3 ) where r r r is the radius.
Equation: ( x − r ) 2 + ( y − 3 ) 2 = r 2 (x - r)^2 + (y - 3)^2 = r^2 ( x − r ) 2 + ( y − 3 ) 2 = r 2 .
Substituting ( 2 , 1 ) (2, 1) ( 2 , 1 ) : ( 2 − r ) 2 + ( 1 − 3 ) 2 = r 2 ⟹ 4 − 4 r + r 2 + 4 = r 2 ⟹ 8 − 4 r = 0 ⟹ r = 2 (2 - r)^2 + (1 - 3)^2 = r^2 \implies 4 - 4r + r^2 + 4 = r^2 \implies 8 - 4r = 0 \implies r = 2 ( 2 − r ) 2 + ( 1 − 3 ) 2 = r 2 ⟹ 4 − 4 r + r 2 + 4 = r 2 ⟹ 8 − 4 r = 0 ⟹ r = 2 .
Centre: ( 2 , 3 ) (2, 3) ( 2 , 3 ) , radius: 2 2 2 .
Equation: ( x − 2 ) 2 + ( y − 3 ) 2 = 4 (x - 2)^2 + (y - 3)^2 = 4 ( x − 2 ) 2 + ( y − 3 ) 2 = 4 , or x 2 + y 2 − 4 x − 6 y + 9 = 0 x^2 + y^2 - 4x - 6y + 9 = 0 x 2 + y 2 − 4 x − 6 y + 9 = 0 .
DSE Practice 3. Find the equation of the circle passing through ( 1 , 0 ) (1, 0) ( 1 , 0 ) , ( 0 , 1 ) (0, 1) ( 0 , 1 ) , and ( − 1 , 0 ) (-1, 0) ( − 1 , 0 ) .
Solution General form: x 2 + y 2 + D x + E y + F = 0 x^2 + y^2 + Dx + Ey + F = 0 x 2 + y 2 + D x + E y + F = 0 .
( 1 , 0 ) (1, 0) ( 1 , 0 ) : 1 + D + F = 0 (i) 1 + D + F = 0 \quad \text{(i)} 1 + D + F = 0 (i) .
( 0 , 1 ) (0, 1) ( 0 , 1 ) : 1 + E + F = 0 (ii) 1 + E + F = 0 \quad \text{(ii)} 1 + E + F = 0 (ii) .
( − 1 , 0 ) (-1, 0) ( − 1 , 0 ) : 1 − D + F = 0 (iii) 1 - D + F = 0 \quad \text{(iii)} 1 − D + F = 0 (iii) .
(i) - (iii): 2 D = 0 ⟹ D = 0 2D = 0 \implies D = 0 2 D = 0 ⟹ D = 0 .
From (i): F = − 1 F = -1 F = − 1 .
From (ii): E = 0 E = 0 E = 0 .
Equation: x 2 + y 2 − 1 = 0 x^2 + y^2 - 1 = 0 x 2 + y 2 − 1 = 0 , i.e., x 2 + y 2 = 1 x^2 + y^2 = 1 x 2 + y 2 = 1 (the unit circle).
DSE Practice 4. The line ℓ \ell ℓ passes through A ( 2 , 1 ) A(2, 1) A ( 2 , 1 ) and B ( 6 , k ) B(6, k) B ( 6 , k ) . If the distance from the origin to ℓ \ell ℓ is 6 5 5 \dfrac{6\sqrt{5}}{5} 5 6 5 , find k k k .
Solution Gradient of ℓ \ell ℓ : m = k − 1 4 m = \dfrac{k - 1}{4} m = 4 k − 1 .
Equation: y − 1 = k − 1 4 ( x − 2 ) ⟹ ( k − 1 ) x − 4 y + ( 4 − 2 k + 4 ) = 0 ⟹ ( k − 1 ) x − 4 y + ( 8 − 2 k ) = 0 y - 1 = \dfrac{k-1}{4}(x - 2) \implies (k-1)x - 4y + (4 - 2k + 4) = 0 \implies (k-1)x - 4y + (8 - 2k) = 0 y − 1 = 4 k − 1 ( x − 2 ) ⟹ ( k − 1 ) x − 4 y + ( 4 − 2 k + 4 ) = 0 ⟹ ( k − 1 ) x − 4 y + ( 8 − 2 k ) = 0 .
Distance from ( 0 , 0 ) (0, 0) ( 0 , 0 ) to ℓ \ell ℓ :
∣ 8 − 2 k ∣ ( k − 1 ) 2 + 16 = 6 5 5 \frac{|8 - 2k|}{\sqrt{(k-1)^2 + 16}} = \frac{6\sqrt{5}}{5} ( k − 1 ) 2 + 16 ∣8 − 2 k ∣ = 5 6 5
Squaring:
( 8 − 2 k ) 2 k 2 − 2 k + 17 = 36 5 \frac{(8 - 2k)^2}{k^2 - 2k + 17} = \frac{36}{5} k 2 − 2 k + 17 ( 8 − 2 k ) 2 = 5 36
5 ( 4 − k ) 2 = 36 ( k 2 − 2 k + 17 ) 5(4 - k)^2 = 36(k^2 - 2k + 17) 5 ( 4 − k ) 2 = 36 ( k 2 − 2 k + 17 )
5 ( k 2 − 8 k + 16 ) = 36 k 2 − 72 k + 612 5(k^2 - 8k + 16) = 36k^2 - 72k + 612 5 ( k 2 − 8 k + 16 ) = 36 k 2 − 72 k + 612
5 k 2 − 40 k + 80 = 36 k 2 − 72 k + 612 5k^2 - 40k + 80 = 36k^2 - 72k + 612 5 k 2 − 40 k + 80 = 36 k 2 − 72 k + 612
31 k 2 − 32 k + 532 = 0 31k^2 - 32k + 532 = 0 31 k 2 − 32 k + 532 = 0
Δ = 1024 − 4 ( 31 ) ( 532 ) = 1024 − 65968 < 0 \Delta = 1024 - 4(31)(532) = 1024 - 65968 < 0 Δ = 1024 − 4 ( 31 ) ( 532 ) = 1024 − 65968 < 0 .
No real solution for k k k . Let me recheck the algebra.
Actually, let me recompute. The line through ( 2 , 1 ) (2,1) ( 2 , 1 ) and ( 6 , k ) (6,k) ( 6 , k ) : using the two-point form:
y − 1 k − 1 = x − 2 4 ⟹ 4 ( y − 1 ) = ( k − 1 ) ( x − 2 ) \frac{y - 1}{k - 1} = \frac{x - 2}{4} \implies 4(y - 1) = (k - 1)(x - 2) k − 1 y − 1 = 4 x − 2 ⟹ 4 ( y − 1 ) = ( k − 1 ) ( x − 2 )
( k − 1 ) x − 4 y − 2 ( k − 1 ) + 4 = 0 ⟹ ( k − 1 ) x − 4 y − 2 k + 6 = 0 (k-1)x - 4y - 2(k-1) + 4 = 0 \implies (k-1)x - 4y - 2k + 6 = 0 ( k − 1 ) x − 4 y − 2 ( k − 1 ) + 4 = 0 ⟹ ( k − 1 ) x − 4 y − 2 k + 6 = 0
Distance from ( 0 , 0 ) (0,0) ( 0 , 0 ) :
∣ 6 − 2 k ∣ ( k − 1 ) 2 + 16 = 6 5 5 \frac{|6 - 2k|}{\sqrt{(k-1)^2 + 16}} = \frac{6\sqrt{5}}{5} ( k − 1 ) 2 + 16 ∣6 − 2 k ∣ = 5 6 5
25 ( 6 − 2 k ) 2 = 36 ( k 2 − 2 k + 17 ) 25(6 - 2k)^2 = 36(k^2 - 2k + 17) 25 ( 6 − 2 k ) 2 = 36 ( k 2 − 2 k + 17 )
25 ( 4 k 2 − 24 k + 36 ) = 36 k 2 − 72 k + 612 25(4k^2 - 24k + 36) = 36k^2 - 72k + 612 25 ( 4 k 2 − 24 k + 36 ) = 36 k 2 − 72 k + 612
100 k 2 − 600 k + 900 = 36 k 2 − 72 k + 612 100k^2 - 600k + 900 = 36k^2 - 72k + 612 100 k 2 − 600 k + 900 = 36 k 2 − 72 k + 612
64 k 2 − 528 k + 288 = 0 ⟹ 8 k 2 − 66 k + 36 = 0 ⟹ 4 k 2 − 33 k + 18 = 0 64k^2 - 528k + 288 = 0 \implies 8k^2 - 66k + 36 = 0 \implies 4k^2 - 33k + 18 = 0 64 k 2 − 528 k + 288 = 0 ⟹ 8 k 2 − 66 k + 36 = 0 ⟹ 4 k 2 − 33 k + 18 = 0
( 4 k − 3 ) ( k − 6 ) = 0 ⟹ k = 3 4 or k = 6 (4k - 3)(k - 6) = 0 \implies k = \frac{3}{4} \;\text{or}\; k = 6 ( 4 k − 3 ) ( k − 6 ) = 0 ⟹ k = 4 3 or k = 6
DSE Practice 5. Find the coordinates of the points on the circle x 2 + y 2 = 13 x^2 + y^2 = 13 x 2 + y 2 = 13 where the tangent is parallel to the line 2 x + 3 y = 7 2x + 3y = 7 2 x + 3 y = 7 .
Solution The gradient of 2 x + 3 y = 7 2x + 3y = 7 2 x + 3 y = 7 is m = − 2 3 m = -\dfrac{2}{3} m = − 3 2 .
The tangent at ( x 1 , y 1 ) (x_1, y_1) ( x 1 , y 1 ) on x 2 + y 2 = 13 x^2 + y^2 = 13 x 2 + y 2 = 13 is x 1 x + y 1 y = 13 x_1 x + y_1 y = 13 x 1 x + y 1 y = 13 , with gradient m = − x 1 y 1 m = -\dfrac{x_1}{y_1} m = − y 1 x 1 .
Setting equal: − x 1 y 1 = − 2 3 ⟹ 3 x 1 = 2 y 1 ⟹ y 1 = 3 2 x 1 -\dfrac{x_1}{y_1} = -\dfrac{2}{3} \implies 3x_1 = 2y_1 \implies y_1 = \dfrac{3}{2}x_1 − y 1 x 1 = − 3 2 ⟹ 3 x 1 = 2 y 1 ⟹ y 1 = 2 3 x 1 .
Substituting into x 1 2 + y 1 2 = 13 x_1^2 + y_1^2 = 13 x 1 2 + y 1 2 = 13 :
x 1 2 + 9 4 x 1 2 = 13 ⟹ 13 4 x 1 2 = 13 ⟹ x 1 2 = 4 ⟹ x 1 = ± 2 x_1^2 + \frac{9}{4}x_1^2 = 13 \implies \frac{13}{4}x_1^2 = 13 \implies x_1^2 = 4 \implies x_1 = \pm 2 x 1 2 + 4 9 x 1 2 = 13 ⟹ 4 13 x 1 2 = 13 ⟹ x 1 2 = 4 ⟹ x 1 = ± 2
x 1 = 2 ⟹ y 1 = 3 x_1 = 2 \implies y_1 = 3 x 1 = 2 ⟹ y 1 = 3 . x 1 = − 2 ⟹ y 1 = − 3 x_1 = -2 \implies y_1 = -3 x 1 = − 2 ⟹ y 1 = − 3 .
Points: ( 2 , 3 ) (2, 3) ( 2 , 3 ) and ( − 2 , − 3 ) (-2, -3) ( − 2 , − 3 ) .