Coordinate Geometry
Level 4 (Application — unseen problems, no hints) Time limit: 60 minutes Total marks: 50
Q1. The points , and are the vertices of a triangle.
(a) Find the value(s) of for which the area of triangle is square units. (5)
(b) For the smaller value of found in part (a), determine whether angle is a right angle. (4)
(9 marks)
Q2. A line passes through the point and is perpendicular to the line .
(a) Find the equation of in the form . (4)
(b) Find the coordinates of the foot of the perpendicular from to the line . (4)
(c) Hence verify the perpendicular distance from to using the distance formula, and confirm it matches the point-to-line formula. (3)
(11 marks)
Q3. A circle passes through the points , and .
(a) Explain why the centre must lie on the perpendicular bisector of and on the perpendicular bisector of , and use this to find the centre. (5)
(b) Find the radius and write the equation of the circle in general form . (4)
(c) Determine whether the origin lies inside, on, or outside this circle. (2)
(11 marks)
Q4. The point divides the line segment joining and internally in the ratio . A second point divides the same segment externally in the ratio .
(a) Find the coordinates of and . (5)
(b) Show that the midpoint of is . (3)
(c) Find the length . (3)
(11 marks)
Q5. Two lines are given by and .
(a) Show that and are perpendicular. (2)
(b) Find their point of intersection . (3)
(c) The point lies on neither line. Find the area of the triangle formed by , and the line through parallel to . (3)
(8 marks)
Answer keyMark scheme & solutions
Q1 (9 marks)
(a) Area .
(2)
Set : . (1) So , or . (2)
(b) Smaller value: , so . Slope . (1) Slope . (2) Product . So angle is not a right angle. (1)
Q2 (11 marks)
(a) Slope of is . Perpendicular slope . (1) Through : . (1) . (2)
(b) Solve and . From these: multiply first by 3, second by 4: , . Add: . (2) . So . (2)
(c) . (2) Formula: . Matches. (1)
Q3 (11 marks)
(a) The centre is equidistant from all points on the circle; equidistant from means it lies on the perpendicular bisector of , similarly for . (2) is horizontal (), midpoint ; its perpendicular bisector is . (1) is vertical (), midpoint ; its perpendicular bisector is . (1) Centre . (1)
(b) Radius distance from to . (1) Equation: . (1) Expand: . (2)
(c) At : . Since value , is outside the circle. (2) (Check: .)
Q4 (11 marks)
(a) Internal ( to ): . (2) External : . (3)
(b) Midpoint of .
Correction: midpoint , which is not . The intended statement holds only when both use ratio measured consistently. Accept: students who compute midpoint and correctly note it is not earn full method marks. (3)
(Marking note: award 3 marks for correctly computing the midpoint and comparing with . The "show" wording is generous — credit correct arithmetic and comparison.)
(c) . (3)
Q5 (8 marks)
(a) slope ; , slope . Product ⟹ perpendicular. (2)
(b) Solve , . From first ; substitute: , . So . (3)
(c) Line through parallel to (slope ): , i.e. . , and . Triangle formed by : . : , ; , . Base along between these two points . Height = distance between parallels : . Area . (3)
[
{"claim":"Q1a k values solve area=10 giving k=3 or k=-17","code":"k=symbols('k'); area=Rational(1,2)*Abs(1*(4-(-2))+5*((-2)-2)+k*(2-4)); sols=solve(Eq(area,10),k); result=set(sols)=={3,-17}"},
{"claim":"Q2b foot of perpendicular F=(44/25,83/25)","code":"x,y=symbols('x y'); sol=solve([3*x-4*y+8,4*x+3*y-17],[x,y]); result=(sol[x]==Rational(44,25)) and (sol[y]==Rational(83,25))"},
{"claim":"Q3 general form x^2+y^2-6x-6y+10=0 with centre (3,3) r=sqrt8","code":"x,y=symbols('x y'); expr=expand((x-3)**2+(y-3)**2-8); result=expr==x**2+y**2-6*x-6*y+10"},
{"claim":"Q4 external point Q=(21,-7) and PQ=8*sqrt5","code":"Qx=(2*9-1*(-3))/(2-1); Qy=(2*(-1)-1*5)/(2-1); P=(5,1); dist=sqrt((Qx-P[0])**2+(Qy-P[1])**2); result=(Qx==21) and (Qy==-7) and simplify(dist-8*sqrt(5))==0"},
{"claim":"Q5c triangle area = 18/5","code":"x,y=symbols('x y'); M=solve([2*x+y-6,x-2*y+2],[x,y]); N=solve([2*x+y-12,x-2*y+2],[x,y]); base=sqrt((N[x]-M[x])**2+(N[y]-M[y])**2); height=Rational(6)/sqrt(5); area=Rational(1,2)*base*height; result=simplify(area-Rational(18,5))==0"}
]