Basic Geometry
Level: 3 (Production — from-scratch derivations, reasoning out loud) Time limit: 45 minutes Total marks: 60
Instructions: Show all reasoning. Where a question says "derive" or "explain", full justification is required, not just a final value. Use unless otherwise stated.
Question 1 — Derive the triangle angle sum (12 marks)
(a) Using a line drawn through one vertex parallel to the opposite side, derive from scratch that the interior angles of any triangle sum to . State clearly which parallel-line angle property you use at each step. (6)
(b) Using your result in (a), derive the Exterior Angle Theorem (an exterior angle equals the sum of the two remote interior angles). (3)
(c) A triangle has angles , , and an exterior angle at the third vertex equal to . Find and classify the triangle by its angles. (3)
Question 2 — Circle measures from memory (10 marks)
(a) State from memory the formulas for the circumference and area of a circle of radius , and explain in one sentence why circumference is linear in but area is quadratic. (3)
(b) A circular sector has radius and central angle . Derive expressions for, then compute: (i) the arc length, (ii) the sector area, (iii) the perimeter of the sector. (7)
Question 3 — Parallel lines and a transversal (10 marks)
Two parallel lines are cut by a transversal. One of the co-interior (same-side interior) angles is and the other is .
(a) Explain out loud the property that relates co-interior angles, and write the equation it gives. (3) (b) Solve for . (3) (c) Find the size of each co-interior angle, and state the size of the alternate angle to the first one. Justify. (4)
Question 4 — Surface area & volume, derived (12 marks)
A solid cylinder has radius and height .
(a) Starting from its net, derive the formula for the total surface area of a cylinder, explaining where each term comes from. (4) (b) Compute the total surface area. (3) (c) Compute the volume. (2) (d) The cylinder is melted and recast into a sphere of the same volume. Derive an expression for the sphere's radius in terms of the cylinder's dimensions, then compute it (give to 2 d.p., using ). (3)
Question 5 — Composite area & perimeter (10 marks)
A trapezium has parallel sides and , a perpendicular height of , and the two non-parallel (slant) sides are each .
(a) Derive the area formula for a trapezium by splitting it into a rectangle and two triangles (or a parallelogram), then compute the area. (6) (b) Compute the perimeter. (2) (c) A semicircle of diameter is attached along the shorter parallel side. Find the total area of the composite shape. (2)
Question 6 — Symmetry & transformations, explain-out-loud (6 marks)
(a) State the order of rotational symmetry and the number of lines of symmetry for: a square, a rhombus (non-square), and an equilateral triangle. (3)
(b) The point is reflected in the line to give , then is translated by the vector to give . Find the coordinates of , explaining each step. (3)
End of paper.
Answer keyMark scheme & solutions
Question 1 (12)
(a) Draw a triangle . Through vertex draw line parallel to . (1 for construction)
- Angle between and = angle (alternate angles, ). (2)
- Angle between and = angle (alternate angles). (1)
- The three angles on line at form a straight angle: (angles on a straight line). (2) ∴ interior angles sum to .
(b) Let exterior angle at be (on straight line ). Then (straight line). But (from (a)). Equating: = sum of the two remote interior angles. (3)
(c) Exterior angle at third vertex = sum of remote interior angles . (2) Angles: , and third interior . Largest is → obtuse triangle. (1)
Question 2 (10)
(a) , . (2) Circumference scales with the single length (linear); area covers a 2-D region so it scales with (quadratic). (1)
(b) Fraction of circle . (i) Arc . (2) (ii) Sector area . (3) (iii) Perimeter arc . (2)
Question 3 (10)
(a) Co-interior (same-side interior) angles between parallel lines are supplementary (sum to ). (2) Equation: . (1)
(b) . (3)
(c) First angle ; second (check ✓). (2) The alternate angle to the first co-interior angle equals the other interior angle's supplement... more precisely: the alternate angle to a co-interior angle is supplementary to it, so alternate to is . (2)
Question 4 (12)
(a) Net = two circles (top & bottom) + one rectangle (curved surface unrolled). Rectangle width = circumference , height , so curved area ; two circles . Total: . (4)
(b) . (3)
(c) . (2)
(d) . (3)
Question 5 (10)
(a) Split trapezium into a central rectangle (width = shorter side ) and two right triangles. The base overhang total , so each triangle base . Area rectangle triangles . Equivalent to . (6)
(b) Perimeter . (2)
(c) Semicircle radius ; area . Total . (2)
Question 6 (6)
(a) Square: order , lines. Rhombus (non-square): order , lines. Equilateral triangle: order , lines. (3, 1 each)
(b) Reflect in : swap coords → . (1) Translate by : . (2)
[
{"claim":"Q1c: 3x=150 gives x=50 and third angle 30, obtuse largest 100","code":"x=Rational(150,3); third=180-150; result=(x==50 and third==30 and max(50,100,30)==100)"},
{"claim":"Q2b: arc=22, sector area=154, perimeter=50 with pi=22/7,r=14","code":"pi=Rational(22,7); r=14; arc=Rational(1,4)*2*pi*r; area=Rational(1,4)*pi*r**2; per=arc+2*r; result=(arc==22 and area==154 and per==50)"},
{"claim":"Q4b/c: cylinder SA=748, V=1540 with r=7,h=10,pi=22/7","code":"pi=Rational(22,7); r=7; h=10; SA=2*pi*r*(r+h); V=pi*r**2*h; result=(SA==748 and V==1540)"},
{"claim":"Q4d: sphere radius from V=1540 approx 7.16","code":"R=(Rational(3*49*10,4))**Rational(1,3); result=(abs(float(R)-7.157)<0.02)"},
{"claim":"Q5a: trapezium area=96, perimeter=52","code":"A=Rational(1,2)*(12+20)*6; P=12+20+10+10; result=(A==96 and P==52)"}
]