Conic Sections
Level: 3 (From-scratch derivations, code-from-memory, explain-out-loud) Time: 45 minutes Total Marks: 60
Answer all questions. Show every step of derivation. Where asked to "explain out loud," write a clear conceptual narrative.
Question 1. (Definition → equation, from scratch) — 10 marks
Starting from the focus–directrix definition of a conic, derive the standard equation of the parabola whose focus is and directrix is . State clearly the eccentricity used and the coordinates of the latus rectum endpoints. (10)
Question 2. (Ellipse derivation) — 12 marks
(a) Using the "sum of focal radii " definition with foci , derive the standard equation of the ellipse and show that . (8)
(b) Hence derive the length of the latus rectum in terms of and , and express the eccentricity in terms of and . (4)
Question 3. (Hyperbola — difference of focal radii + asymptotes) — 12 marks
(a) Starting from for foci , derive the standard equation , stating the relation between , , . (7)
(b) Derive the equations of the asymptotes and explain out loud why they represent the limiting behaviour of the curve as . (5)
Question 4. (Reflective property — explain out loud) — 8 marks
A parabolic satellite dish has equation (units in metres).
(a) Find the coordinates of the focus and state where a receiver should be placed. (3)
(b) Explain out loud the reflective property that justifies placing the receiver there, referencing incoming parallel rays and the axis. (5)
Question 5. (General second-degree classification + code from memory) — 10 marks
(a) State the discriminant classification rule for . Classify . (4)
(b) Write, from memory, a short Python function classify(A,B,C) that returns the string "ellipse", "parabola", or "hyperbola" based on the discriminant. (6)
Question 6. (Rectangular hyperbola + parametric forms) — 8 marks
(a) The rectangular hyperbola has parametric form . Verify this satisfies the curve and find the eccentricity of a rectangular hyperbola. (4)
(b) For , find the point on the curve nearest to the origin and state its distance. (4)
Answer keyMark scheme & solutions
Question 1 (10 marks)
Let be a point on the conic. By focus–directrix definition with (parabola):
Focus , directrix : (1 for setup) \sqrt{(x-a)^2 + y^2} = |x + a| \quad (e=1) \tag{2}
Square both sides: (x-a)^2 + y^2 = (x+a)^2 \tag{2} y^2 = 4ax \tag{2}
Eccentricity used: . (1)
Latus rectum: chord through focus perpendicular to axis, : . Endpoints: and . (2)
Question 2 (12 marks)
(a) Foci , . Definition: \sqrt{(x+c)^2+y^2} + \sqrt{(x-c)^2+y^2} = 2a \tag{1}
Isolate and square: (x+c)^2 + y^2 = 4a^2 - 4a\sqrt{(x-c)^2+y^2} + (x-c)^2 + y^2 \tag{2}
Simplify , so a\sqrt{(x-c)^2+y^2} = a^2 - cx \tag{2}
Square: (a^2 - c^2)x^2 + a^2 y^2 = a^2(a^2 - c^2) \tag{2}
Let (valid since ): dividing by : \frac{x^2}{a^2} + \frac{y^2}{b^2} = 1, \qquad b^2 = a^2 - c^2 \tag{1}
(b) Latus rectum: set : , so . Length . (2)
Eccentricity: . (2)
Question 3 (12 marks)
(a) Foci , : \left|\sqrt{(x+c)^2+y^2} - \sqrt{(x-c)^2+y^2}\right| = 2a \tag{1}
Following identical algebra to the ellipse (isolate, square twice): (3)
Here , set : (1) \frac{x^2}{a^2} - \frac{y^2}{b^2} = 1, \qquad c^2 = a^2 + b^2 \tag{2}
(b) From , so . (1) Asymptotes: . (2)
Explain out loud: As , , so the curve approaches ; the difference between the curve and its asymptote tends to but never reaches it — the branches hug the lines without touching. (2)
Question 4 (8 marks)
(a) . Focus . (2) Receiver placed at the focus. (1)
(b) Explain out loud: The reflective property states any ray travelling parallel to the axis of a parabola reflects off the surface and passes through the focus (angle of incidence = angle of reflection about the normal). Incoming radio/light waves from a distant source are effectively parallel to the axis; every such ray converges at the focus regardless of where it strikes the dish. Placing the receiver at the focus therefore collects all the reflected energy at a single point, maximising signal strength. (5)
Question 5 (10 marks)
(a) Rule: (2)
- : ellipse (circle if )
- : parabola
- : hyperbola
For : . ellipse. (2)
(b) (6, 2 for signature, 3 for logic, 1 for returns)
def classify(A, B, C):
disc = B**2 - 4*A*C
if disc < 0:
return "ellipse"
elif disc == 0:
return "parabola"
else:
return "hyperbola"Question 6 (8 marks)
(a) Substitute : ✓ (1) Rectangular hyperbola has , so . (3)
(b) . Minimise . (take positive branch). (2) Then , point ; distance . (2)
[
{"claim":"Ellipse latus rectum with a=5,b=3 equals 2b^2/a = 18/5","code":"a,b=5,3\nresult = (2*b**2/a)==Rational(18,5)"},
{"claim":"Q5 discriminant for 3x^2-2xy+3y^2 is -32 (<0, ellipse)","code":"A,B,C=3,-2,3\nd=B**2-4*A*C\nresult = (d==-32) and (d<0)"},
{"claim":"Rectangular hyperbola eccentricity is sqrt(2)","code":"result = sqrt(1+1)==sqrt(2)"},
{"claim":"Nearest point on xy=9 to origin is (3,3) with distance 3*sqrt(2)","code":"x=symbols('x',positive=True)\nD2=x**2+(9/x)**2\nsol=solve(diff(D2,x),x)\nxv=[s for s in sol if s>0][0]\nresult = (xv==3) and (sqrt(xv**2+(9/xv)**2)==3*sqrt(2))"}
]