You are viewing a free preview of this lesson.
Subscribe to unlock all 10 lessons in this course and every other course on LearningBro.
This lesson covers Coordinate Geometry as required by the A-Level Mathematics Pure 1 specification. Coordinate geometry connects algebra with geometry by using equations to describe lines, curves, and circles on a Cartesian plane. This topic is fundamental and appears throughout the A-Level course.
The gradient of a line passing through two points (x₁, y₁) and (x₂, y₂) is:
m = (y₂ − y₁) / (x₂ − x₁)
| Form | Equation | Use |
|---|---|---|
| Gradient-intercept | y = mx + c | When gradient and y-intercept are known |
| Point-gradient | y − y₁ = m(x − x₁) | When gradient and a point are known |
| General form | ax + by + c = 0 | Standard form for answers |
Example: Find the equation of the line through (2, 5) with gradient 3.
y − 5 = 3(x − 2)
y − 5 = 3x − 6
y = 3x − 1
| Relationship | Condition |
|---|---|
| Parallel lines | Same gradient: m₁ = m₂ |
| Perpendicular lines | Product of gradients = −1: m₁ × m₂ = −1 |
Example: Find the equation of the line perpendicular to y = 3x − 1 passing through (6, 2).
Gradient of given line = 3, so perpendicular gradient = −1/3.
y − 2 = −1/3(x − 6)
y − 2 = −x/3 + 2
y = −x/3 + 4
Or equivalently: x + 3y = 12.
The distance between (x₁, y₁) and (x₂, y₂) is:
d = √[(x₂ − x₁)² + (y₂ − y₁)²]
Example: Find the distance between (1, 3) and (4, 7).
d = √[(4 − 1)² + (7 − 3)²] = √[9 + 16] = √25 = 5
The midpoint of the line segment joining (x₁, y₁) and (x₂, y₂) is:
M = ((x₁ + x₂)/2, (y₁ + y₂)/2)
The equation of a circle with centre (a, b) and radius r is:
(x − a)² + (y − b)² = r²
When expanded, this becomes the general form:
x² + y² + 2gx + 2fy + c = 0
where the centre is (−g, −f) and the radius is r = √(g² + f² − c).
Example: Find the centre and radius of x² + y² − 6x + 4y − 12 = 0.
Complete the square:
(x² − 6x + 9) + (y² + 4y + 4) = 12 + 9 + 4
(x − 3)² + (y + 2)² = 25
Centre: (3, −2), Radius: 5.
To find the tangent to a circle at a given point:
Example: Find the equation of the tangent to (x − 2)² + (y − 1)² = 20 at the point (6, 3).
Centre: (2, 1). Gradient of radius: (3 − 1)/(6 − 2) = 2/4 = 1/2.
Gradient of tangent: −2.
y − 3 = −2(x − 6)
y − 3 = −2x + 12
y = −2x + 15
To find where a line meets a curve (or circle), substitute the equation of the line into the equation of the curve and solve the resulting equation.
The discriminant of the resulting quadratic tells you:
| Discriminant | Meaning |
|---|---|
| Δ > 0 | Line intersects the curve at two points |
| Δ = 0 | Line is a tangent to the curve |
| Δ < 0 | Line does not intersect the curve |
Example: Show that y = x + 2 is a tangent to x² + y² = 2.
Substitute: x² + (x + 2)² = 2 → 2x² + 4x + 4 = 2 → 2x² + 4x + 2 = 0 → x² + 2x + 1 = 0.
Discriminant: 4 − 4 = 0 ✓ — so the line is a tangent.
(x + 1)² = 0 → x = −1, y = 1. Point of tangency: (−1, 1).
Exam Tip: Always show your working clearly. When finding tangent equations, state the gradient of the radius first, then explicitly calculate the perpendicular gradient. When completing the square for circles, show each step. In exam mark schemes, each algebraic step typically earns a mark.
AQA 7357 specification, Paper 1 — Pure Mathematics, Section C (Coordinate Geometry). Required content: equations of straight lines (gradient, intercept, parallel/perpendicular conditions, distance and midpoint); equations of circles in the form (x−a)2+(y−b)2=r2; the use of the discriminant of a substituted quadratic to test intersection; and the parametric form of curves with conversion to Cartesian. The topic is examined throughout 7357 Papers 1, 2 and 3 and is heavily synoptic with differentiation (tangents and normals via dy/dx), with calculus more generally (areas under curves defined parametrically), and with vectors (position vectors as a coordinate-geometry analogue in two and three dimensions). The AQA formula booklet does not list the line or circle equations — they must be memorised — but the parametric differentiation rule dxdy=dx/dtdy/dt is given.
Question (8 marks): A circle C has equation x2+y2−6x+4y−12=0. The point P(8,1) lies outside C.
(a) Find the centre and radius of C. (3)
(b) Find the length of the tangent from P to C. (2)
(c) Find the equation of one of the tangent lines from P to C, giving your answer in the form y=mx+c. (3)
Solution with mark scheme:
(a) Step 1 — complete the square in x and y.
x2−6x+y2+4y−12=0 (x−3)2−9+(y+2)2−4−12=0 (x−3)2+(y+2)2=25
M1 — completing the square on both variables, with the −9 and −4 correction terms shown explicitly. A frequent slip is to forget the correction altogether and write (x−3)2+(y+2)2=12.
A1 — centre identified as (3,−2).
A1 — radius identified as 5 (taking the positive square root of 25).
(b) Step 1 — distance from P to the centre.
d=(8−3)2+(1−(−2))2=25+9=34
M1 — applying the Pythagorean tangent-length result ℓ2=d2−r2, where d is the centre-to-external-point distance and r is the radius. The geometric justification is that the radius drawn to the point of tangency is perpendicular to the tangent, so a right-angled triangle is formed with hypotenuse d.
A1 — tangent length ℓ=34−25=3.
(c) Step 1 — set up a generic line through P.
A line through P(8,1) with gradient m has equation y−1=m(x−8), i.e. y=mx−8m+1.
M1 — writing the line in point-gradient form with unknown gradient m, and recognising that we need to find the values of m for which the line is tangent to C.
Step 2 — perpendicular-distance condition.
The perpendicular distance from the centre (3,−2) to the line mx−y+(1−8m)=0 must equal the radius 5:
m2+1∣3m−(−2)+1−8m∣=5 m2+1∣3−5m∣=5
M1 — equating perpendicular distance to radius. (An alternative valid method is to substitute the line into the circle equation and impose discriminant =0; either route earns the M1.)
Step 3 — solve for m.
Square both sides: (3−5m)2=25(m2+1), so 9−30m+25m2=25m2+25, giving −30m=16 and m=−158.
The other tangent corresponds to a different sign branch in the absolute-value equation; here the symmetric algebra leaves the second gradient to be recovered by checking against the geometry. Quoting one tangent: y=−158x+1564+1=−158x+1579.
A1 — one valid tangent equation in the form y=mx+c.
Total: 8 marks (M3 A5, split as shown).
Question (6 marks): The line ℓ has equation 2x+3y=12 and the curve C has equation y=x2−4x+7.
(a) Show that ℓ and C meet at exactly one point and find its coordinates. (4)
(b) Hence state the geometric relationship between ℓ and C at that point. (2)
Mark scheme decomposition by AO:
(a)
(b)
Total: 6 marks split AO1 = 3, AO2 = 3. This question pattern — substitute, form a quadratic, use the discriminant — is the engine of nearly every AQA coordinate-geometry intersection question. The AO2 weight comes from interpreting the algebraic result geometrically.
Connects to:
Differentiation (Section G — tangents and normals): the gradient of the tangent to a circle at a point can be found via implicit differentiation of (x−a)2+(y−b)2=r2, giving dxdy=−y−bx−a. The same gradient also equals the negative reciprocal of the radius gradient — the synoptic link rewards candidates who can move between the two methods.
Calculus (Section H — areas): parametric curves such as x=t2, y=2t enclose regions whose area is computed via ∫ydtdxdt. Setting up the limits requires translating between parameter values and x-coordinates — pure coordinate geometry.
Vectors (Section J): the equation of a line in R2 via direction vector r=a+td is the parametric form of the same Cartesian line. Recognising that "parametric equations" and "vector equations" describe the same object is a high-value synoptic move.
Trigonometry (Section E): parametric circles x=a+rcost, y=b+rsint convert to Cartesian via the identity cos2t+sin2t=1. AQA likes to test this conversion both ways.
Algebra (Section B — quadratics): intersection of a line and a curve reduces to a quadratic, and the discriminant classifies the geometry: Δ>0 means two intersections (secant), Δ=0 means tangency, Δ<0 means no intersection. The discriminant is the bridge from algebra to geometry.
Coordinate geometry questions on 7357 typically split AO marks as follows:
| AO | Typical share | Earned by |
|---|---|---|
| AO1 (knowledge / procedure) | 55–65% | Completing the square, applying the distance formula, substituting into the circle equation, computing gradients |
| AO2 (reasoning / interpretation) | 25–35% | Translating between algebraic and geometric statements (e.g. Δ=0⇔ tangency); choosing the right method (perpendicular distance vs. discriminant); presenting the answer in the demanded form |
| AO3 (problem-solving) | 5–15% | Multi-step problems that combine circles, lines and curves; locus problems; converting parametric to Cartesian under unfamiliar substitutions |
Subscribe to continue reading
Get full access to this lesson and all 10 lessons in this course.