Conic Sections
Subject: Mathematics
Chapter: Conic Sections
Level: 2 (Recall & Standard Problems)
Time Limit: 30 minutes
Total Marks: 40
Instructions: Answer all questions. Show working where required. Use notation for mathematical expressions.
Q1. Define a conic section in terms of a focus, a directrix, and eccentricity . State the value of for a parabola, an ellipse, and a hyperbola. (4 marks)
Q2. For the parabola , find the coordinates of the focus, the equation of the directrix, and the length of the latus rectum. (4 marks)
Q3. Write down the standard equation of the parabola that opens downward with vertex at the origin, and state the coordinates of its focus in terms of the parameter . Briefly explain the reflective property of a parabola and one application. (4 marks)
Q4. For the ellipse , find: (a) the semi-major and semi-minor axes, (b) the coordinates of the foci, (c) the eccentricity, (d) the length of the latus rectum. (5 marks)
Q5. State the "sum of focal radii" property of an ellipse. Verify it for the point on the ellipse . (4 marks)
Q6. For the hyperbola , find the coordinates of the foci, the eccentricity, and the equations of the asymptotes. (5 marks)
Q7. The rectangular hyperbola is written as . For , find the coordinates of its two vertices and state its eccentricity. (4 marks)
Q8. Explain why a circle is regarded as a degenerate conic with eccentricity . Write the parametric form of the circle . (4 marks)
Q9. Using the discriminant of the general second-degree equation , classify the conic represented by . (3 marks)
Q10. Write the standard parametric equations of: (a) the parabola , (b) the ellipse . (3 marks)
END OF PAPER
Answer keyMark scheme & solutions
Q1. (4 marks) A conic section is the locus of a point that moves such that the ratio of its distance from a fixed point (the focus) to its distance from a fixed line (the directrix) is a constant (the eccentricity). (2 marks: definition, focus, directrix, e)
- Parabola:
- Ellipse:
- Hyperbola: (2 marks, ~0.5 each; full 2 if all three correct)
Why: The eccentricity value fixes how "open" the curve is; balances the two distances exactly (parabola).
Q2. (4 marks) Compare with : . (1)
- Focus: (1)
- Directrix: (1)
- Latus rectum length (1)
Why: Standard right-opening parabola parameters follow directly from .
Q3. (4 marks)
- Downward-opening parabola: (1.5)
- Focus: (1)
- Reflective property: rays parallel to the axis reflect off the parabola through the focus (and vice versa). (1)
- Application: parabolic reflectors in telescopes / satellite dishes / car headlights. (0.5)
Why: The geometric reflection law combined with the parabola's shape concentrates incoming parallel rays at the focus.
Q4. (5 marks) Here , (with , major axis along ). (a) Semi-major axis , semi-minor axis (1) (b) ; foci (2) (c) (1) (d) Latus rectum (1)
Why: Relation locates the foci; LR formula measures the chord through a focus perpendicular to the major axis.
Q5. (4 marks) Sum of focal radii property: for any point on an ellipse, the sum of distances to the two foci equals . (1) Point , foci : (1) (1) Sum . Verified. (1)
Why: This constant-sum is the defining metric property of the ellipse.
Q6. (5 marks) Compare with : , so .
- ; foci (2)
- (1.5)
- Asymptotes: (1.5)
Why: For a hyperbola (note the ), and asymptotes have slopes .
Q7. (4 marks) . Vertices lie on line : , giving and . (2) Eccentricity of any rectangular hyperbola . (2)
Why: A rectangular (equilateral) hyperbola has , so ; vertices are the nearest points to origin along .
Q8. (4 marks) As , the two foci of an ellipse merge at the centre and , so the ellipse becomes a circle; thus the circle is a degenerate conic with . (2) Parametric form: . (2)
Why: Zero eccentricity means both semi-axes equal, i.e. perfect circular symmetry.
Q9. (3 marks) . Discriminant . (2) Since , the conic is a hyperbola (non-degenerate). (1)
Why: hyperbola, parabola, ellipse/circle.
Q10. (3 marks) (a) Parabola : . (1.5) (b) Ellipse: . (1.5)
Why: Substituting these parameters back reproduces the Cartesian equations identically.
[
{"claim":"Q2: latus rectum of y^2=12x is 12 and focus x-coord is 3","code":"a=Rational(12,4); LR=4*a; result=(a==3 and LR==12)"},
{"claim":"Q4: ellipse x^2/25+y^2/9=1 has c=4, e=4/5, LR=18/5","code":"a2=25; b2=9; c=sqrt(a2-b2); e=c/sqrt(a2); LR=Rational(2*b2,5); result=(c==4 and e==Rational(4,5) and LR==Rational(18,5))"},
{"claim":"Q5: focal radii sum at (0,3) equals 2a=10","code":"r1=sqrt((0-4)**2+3**2); r2=sqrt((0+4)**2+3**2); result=(r1+r2==10)"},
{"claim":"Q6: hyperbola x^2/16-y^2/9=1 has c=5, e=5/4","code":"a2=16; b2=9; c=sqrt(a2+b2); e=c/sqrt(a2); result=(c==5 and e==Rational(5,4))"},
{"claim":"Q9: discriminant of 3x^2+5xy+2y^2 is positive (hyperbola)","code":"A=3; B=5; C=2; disc=B**2-4*A*C; result=(disc==1 and disc>0)"}
]