Definition. The Cartesian coordinate planeR2 is the set of all ordered pairs (x,y) where x,y∈R. The horizontal axis is the x-axis and the vertical axis is The y-axis.
The distance between two points A(x1,y1) and B(x2,y2) is given by Pythagoras” theorem:
Theorem (Distance Formula).
d(A,B)=(x2−x1)2+(y2−y1)2
Proof. Construct the right triangle with legs parallel to the axes. The horizontal leg has length ∣x2−x1∣ and the vertical leg has length ∣y2−y1∣. By Pythagoras’ theorem:
d2=(x2−x1)2+(y2−y1)2
Taking the positive square root (since distance is non-negative):
d=(x2−x1)2+(y2−y1)2■
Definition. The midpoint of the segment joining A(x1,y1) and B(x2,y2) is:
Definition. The gradient (slope) of the line passing through A(x1,y1) and B(x2,y2) (with x1=x2) is:
m=x2−x1y2−y1
Theorem. The gradient is well-defined: it does not depend on the choice of points on the line.
Proof. Consider a third point C(x3,y3) on the same line. By similar triangles (see intuition Below), x2−x1y2−y1=x3−x1y3−y1. Since any two points on the Line define the same ratio, the gradient is a property of the line itself, not the chosen points. ■
Intuition (Similar Triangles). Imagine two right triangles formed by dropping perpendiculars from Any two pairs of points on the line to the x-axis. Both triangles share the angle that the line Makes with the horizontal. By AA similarity, the triangles are similar, so the ratio of vertical to Horizontal sides is constant — this ratio is the gradient.
Theorem. Two lines with gradients m1 and m2 are:
Parallel if and only if m1=m2;
Perpendicular if and only if m1m2=−1.
Proof (Perpendicular case). Consider two perpendicular lines through the origin with gradients m1 and m2. A point on the first line is (1,m1)And a point on the second is (1,m2). The vector from the origin to (1,m1) is u=(1,m1)And the vector from the origin To (1,m2) is v=(1,m2).
Since the lines are perpendicular, u⊥vSo their dot product is zero:
1⋅1+m1⋅m2=0⟹m1m2=−1■
ExampleFind the equation of the line perpendicular to $2x - 3y + 7 = 0$ passing through $(4, -1)$.
Theorem. The circle with centre (a,b) and radius r has equation:
(x−a)2+(y−b)2=r2
Proof. By definition, a circle is the set of all points at distance r from the centre (a,b). A point (x,y) lies on the circle if and only if its distance from (a,b) equals r:
(x−a)2+(y−b)2(x−a)2+(y−b)2=r=r2■
Intuition. This is Pythagoras’ theorem applied to every point on the circle. The distance From the centre to any point on the circle is constant and equal to the radius.
Theorem. The line y=mx+c is tangent to the circle (x−a)2+(y−b)2=r2 if and Only if the discriminant of the resulting quadratic is zero.
Proof. Substituting y=mx+c into the circle equation:
(x−a)2+(mx+c−b)2=r2
Expanding gives a quadratic in x:
(1+m2)x2+(linearterm)+(constant)=0
This quadratic has:
Two distinct real roots (Δ>0): the line intersects the circle at two points (a secant);
One repeated root (Δ=0): the line touches the circle at exactly one point (a tangent);
No real roots (Δ<0): the line does not intersect the circle. ■
Intuition. A tangent touches the circle at exactly one point. Algebraically, “one point” means the Quadratic has a repeated root — the two intersection points have coalesced into one.
Theorem. The tangent to the circle x2+y2+Dx+Ey+F=0 at the point (x1,y1) on The circle has equation:
xx1+yy1+2D(x+x1)+2E(y+y1)+F=0
Proof (for circle centred at origin). The circle x2+y2=r2 has centre (0,0). The radius At (x1,y1) has gradient x1y1 (from origin to the point). The tangent is Perpendicular to this radius, so the tangent’s gradient is m=−y1x1 (using m1m2=−1).
The tangent passes through (x1,y1):
y−y1=−y1x1(x−x1)
yy1−y12=−xx1+x12
xx1+yy1=x12+y12=r2
(since (x1,y1) lies on the circle). ■
ExampleFind the equation of the tangent to $x^2 + y^2 = 25$ at the point $(3, 4)$.
Theorem. Two circles C1 with centre O1 and radius r1And C2 with centre O2 and Radius r2Intersect if and only if the distance d=∣O1O2∣ between their centres satisfies:
Two intersection points when ∣r1−r2∣<d<r1+r2;
Externally tangent (one point) when d=r1+r2;
Internally tangent (one point) when d=∣r1−r2∣;
No intersection when d>r1+r2 (circles too far apart);
No intersection when d<∣r1−r2∣ (one circle inside the other);
Concentric (no intersection unless r1=r2) when d=0.
Proof. The result follows directly from the triangle inequality applied to △O1PO2 Where P is an intersection point. For P to exist on both circles, ∣O1P∣=r1 and ∣O2P∣=r2. The three lengths r1,r2,d must form a valid triangle, which requires ∣r1−r2∣<d<r1+r2. The boundary cases give tangency, and the impossible cases give no Intersection. ■
When two circles intersect, the line through both intersection points is called the common chord. To find its equation, subtract one circle equation from the other.
Method. Given C1:x2+y2+D1x+E1y+F1=0 and C2:x2+y2+D2x+E2y+F2=0The common chord is:
(D1−D2)x+(E1−E2)y+(F1−F2)=0
This is a straight line because subtracting eliminates the x2 and y2 terms.
Worked exampleFind the common chord of $C_1: x^2 + y^2 - 4x - 6y + 9 = 0$ and $C_2: x^2 + y^2 + 2x + 2y - 14 = 0$.
Subtracting C1 from C2:
(2−(−4))x+(2−(−6))y+(−14−9)=0
6x+8y−23=0
To verify, check that the centres are (2,3) and (−1,−1) with radii r1=4+9−9=2 And r2=1+1+14=4.
Distance between centres: d=(2−(−1))2+(3−(−1))2=9+16=5.
Since ∣r1−r2∣=2<5<6=r1+r2The circles intersect at two points as expected.
Subtracting the first equation from the second and third eliminates FYielding a 2×2 System in D and E. Solve for D and EThen substitute back to find F.
Worked exampleFind the equation of the circle through $A(1, 2)$, $B(3, 4)$And $C(5, 2)$.
If you get this wrong, revise: [Expanded form](#32-expanded-form)
Problem 3. Show that the line y=x+1 is a tangent to the circle x2+y2=1.
SolutionSubstitute $y = x + 1$ into $x^2 + y^2 = 1$: X2+(x+1)2X2+x2+2x+12x2+2x2x(x+1)=1=1=0=0
x=0 or x=−1.
Wait — that gives two intersection points. Let me check: actually 2x2+2x=0 gives x=0 and x=−1Which are two points (0,1) and (−1,0).
So y=x+1 is not tangent to x2+y2=1. Let me reconsider the problem. Actually, this Line passes through two points on the circle — it is a secant, not a tangent.
If the problem instead asked about y=x+c being tangent:
Substitute: 2x2+2cx+c2−1=0. Set Δ=0:
4c2−8(c2−1)=0⟹−4c2+8=0⟹c=±2.
If you get this wrong, revise: [Tangent condition](#41-the-tangent-condition)
Problem 4. Find the point of intersection of the lines 3x+2y=7 and x−y=1.
SolutionFrom (2): $x = y + 1$. Substitute into (1):
3(y+1)+2y=7⟹5y+3=7⟹y=54
x=54+1=59
Intersection: (59,54).
If you get this wrong, revise: [Linear simultaneous equations](./03-equations-and-inequalities.md)
Problem 5. The points A(1,2), B(5,4)And C(3,8) form a triangle. Show that ABC is a Right-angled triangle.
SolutionGradient of $AB$: $\frac{4 - 2}{5 - 1} = \frac{1}{2}$.
Gradient of BC: 3−58−4=−24=−2.
Product: 21×(−2)=−1.
Since mAB⋅mBC=−1, AB⊥BCSo ∠B=90∘. ■
If you get this wrong, revise: [Parallel and perpendicular lines](#23-parallel-and-perpendicular-lines)
Problem 6. Find the equation of the tangent to the circle (x−2)2+(y+1)2=20 at the Point (4,3).
SolutionThe centre is $(2, -1)$. The gradient of the radius from $(2, -1)$ to $(4, 3)$ is:
mradius=4−23−(−1)=24=2
The tangent is perpendicular: mtangent=−21.
y−3=−21(x−4)⟹2y−6=−x+4⟹x+2y−10=0
If you get this wrong, revise: [Equation of a tangent](#42-equation-of-a-tangent-to-a-circle)
Problem 7. Find the shortest distance from the point (3,1) to the line 2x−y+4=0.
SolutionThe perpendicular distance from $(x_0, y_0)$ to $ax + by + c = 0$ is:
d=a2+b2∣ax0+by0+c∣
d=4+1∣2(3)−1(1)+4∣=5∣6−1+4∣=59=595
If you get this wrong, revise: [Distance formula](#1-the-coordinate-plane)
Problem 8. A circle has equation x2+y2−4x+6y+4=0. Find the equation of the tangent At the point where x=1.
If you get this wrong, revise: [Perpendicular lines](#23-parallel-and-perpendicular-lines)
Problem 11. Derive the perpendicular distance formula d=a2+b2∣ax0+by0+c∣ using the area method for the point P(1,7) and The line 3x+4y−5=0. Then compute the distance.
SolutionThe line $3x + 4y - 5 = 0$ meets the axes at $A\!\left(\frac{5}{3}, 0\right)$ and $B\!\left(0, \frac{5}{4}\right)$.
Verification using the formula: d=9+16∣3(1)+4(7)−5∣=5∣3+28−5∣=526.
If you get this wrong, revise: [Distance from a point to a line](#6-distance-from-a-point-to-a-line)
Problem 12. Two circles C1:x2+y2+2x−8y+8=0 and C2:x2+y2−4x+4y−8=0 intersect at P and Q. Find the equation of the common chord PQ and the length of PQ.
SolutionSubtracting $C_1$ from $C_2$:
(2−(−4))x+(4−(−8))y+(−8−8)=0
6x+12y−16=0⟹3x+6y−8=0
This is the equation of the common chord PQ.
To find the length PQFirst find the centres and radii.
C1: (x+1)2+(y−4)2=1+16−8=9So centre (−1,4)Radius 3.
C2: (x−2)2+(y+2)2=4+4+8=16So centre (2,−2)Radius 4.
Distance between centres: d=(2−(−1))2+(−2−4)2=9+36=45=35.
The distance from the centre of C1 to the chord PQ (line 3x+6y−8=0):
d1=9+36∣3(−1)+6(4)−8∣=45∣−3+24−8∣=3513
By Pythagoras’ theorem in the right triangle formed by the centre, the midpoint of the chord, and an Endpoint:
(2PQ)2=r12−d12=9−45169=45405−169=45236
PQ=245236=2⋅35259=154295
If you get this wrong, revise: [Intersection of two circles](#7-intersection-of-two-circles)
Problem 13. Find the equation of the circle passing through the three points A(0,1)B(2,3)And C(4,1).
SolutionSubstitute into $x^2 + y^2 + Dx + Ey + F = 0$: A(0,1)B(2,3)C(4,1):0+1+0+E+F=0⟹E+F=−1(1):4+9+2D+3E+F=0⟹2D+3E+F=−13(2):16+1+4D+E+F=0⟹4D+E+F=−17(3)
Subtract (1) from (2): 2D+2E=−12⟹D+E=−6(i).
Subtract (1) from (3): 4D=−16⟹D=−4.
From (i): E=−2. From (1): F=−1−(−2)=1.
The circle is x2+y2−4x−2y+1=0.
Completing the square: (x−2)2−4+(y−1)2−1+1=0⟹(x−2)2+(y−1)2=4.
Centre: (2,1)Radius: 2. Note that AC is a diameter: midpoint of AC is (2,1) and ∣AC∣=4=2r.
If you get this wrong, revise: [Circle through three points](#8-equation-of-a-circle-through-three-points)
Problem 14. A circle C has parametric equations x=1+5cosθ, y=−2+5sinθ.
(a) State the centre and radius of C.
(b) Find the coordinates of the two points on C with y-coordinate 1.
(c) Find the equation of the tangent to C at the point corresponding to θ=3π.
Solution(a) Centre: $(1, -2)$Radius: $5$.
(b) Set y=−2+5sinθ=1So sinθ=53.
cosθ=±1−259=±54
The two points are:
(1+5⋅54,1)=(5,1)
(1+5⋅(−54),1)=(−3,1)
(c) When θ=3π: x=1+5cos3π=1+25=27y=−2+5sin3π=−2+253.
The point is (27,−2+253).
The radius from (1,−2) to this point has gradient:
mradius=27−1−2+253−(−2)=25253=3
Tangent gradient: mtangent=−31=−33.
Using point-slope form:
y+2−253=−31(x−27)
3y+23−215=−x+27
x+3y−27−23+215=0
x+3y+4−23=0
If you get this wrong, revise: [Parametric equations of a circle](#9-parametric-equations-of-a-circle)
Problem 15. The circle C has equation x2+y2−6x−4y+9=0. The line L passes Through the origin and is tangent to C. Find the possible equations of L and the coordinates of The points of tangency.
SolutionCompleting the square: $(x-3)^2 + (y-2)^2 = 4$So centre $(3, 2)$ and radius $2$.
Let L have equation y=mx (passing through the origin). For L to be tangent to C Substitute into the circle equation:
x2+m2x2−6x−4mx+9=0
(1+m2)x2−(6+4m)x+9=0
For tangency, Δ=0:
(6+4m)2−4(1+m2)(9)=0
36+48m+16m2−36−36m2=0
−20m2+48m=0
−4m(5m−12)=0
m=0orm=512
Case m=0: Line y=0. Substituting back: (1)x2−6x+9=0⟹(x−3)2=0⟹x=3. Tangency point: (3,0).
Case m=512: Line y=512x. Substituting back: (1+25144)x2−(6+548)x+9=0.
25169x2−578x+9=0⟹169x2−390x+225=0
(13x−15)2=0⟹x=1315,y=512⋅1315=1336
Tangency point: (1315,1336).
Verification using perpendicular distance: The distance from centre (3,2) to y=512x (i.e. 12x−5y=0) is 13∣36−10∣=1326=2=r.
The two tangent lines are y=0 and 12x−5y=0.
If you get this wrong, revise: [Tangent condition](#41-the-tangent-condition)