Basic Geometry
Chapter: 1.2 Basic Geometry Level: 5 — Mastery (cross-domain: geometry + physics + coding, build & prove) Time limit: 75 minutes Total marks: 60
Use where a numeric value is required unless told otherwise. Show all reasoning; proofs must be rigorous, code must be complete and runnable.
Question 1 — Prove & Compute: Transversal + Composite Area (20 marks)
A straight road crosses two parallel walls (a transversal). At the point where the road meets , the acute angle between road and wall is . At the point where it meets , the co-interior (same-side interior) angle on the same side is .
(a) Using the co-interior angle property, form an equation and solve for . State the acute angle the road makes with each wall. (5 marks)
(b) Prove, from the alternate-angles axiom, that co-interior angles of a transversal cutting parallel lines are supplementary. (Give a full logical proof, naming each angle relationship used.) (5 marks)
(c) Between the two walls a garden bed has the shape of a trapezium with parallel sides and and perpendicular height . A semicircular pond of diameter is cut out of the bed. Compute the remaining planted area to 2 decimal places. (6 marks)
(d) A gardener claims the pond removed "less than one-eighth of the trapezium's area." Determine by calculation whether the claim is true. (4 marks)
Question 2 — Build & Verify: A Cylinder-Cone Silo (Physics + Coding) (22 marks)
A grain silo is a cylinder of radius and height topped by a cone of the same radius and slant height .
(a) Derive the cone's vertical height and hence its volume in terms of . (4 marks)
(b) Compute the total external surface area (curved cylinder + curved cone + circular base, but not the join between them). Give the exact expression and a value to 2 d.p. (6 marks)
(c) Grain of density fills the silo completely. Using , compute the total weight (in newtons) of the grain to the nearest 100 N. (5 marks)
(d) Write a short Python function silo_volume(r, h, l) that returns the total interior volume (cylinder + cone), computing the cone height via Pythagoras internally. Then state the value your function returns for to 3 d.p. (7 marks)
Question 3 — Prove & Transform: Symmetry of a Rhombus (18 marks)
A rhombus is placed with centre at the origin, vertices , , , .
(a) Prove that the diagonals of this rhombus are perpendicular bisectors of each other, using coordinate geometry (gradients and midpoints). (6 marks)
(b) State the order of rotational symmetry of a rhombus and the number of lines of symmetry, justifying each with reference to . (4 marks)
(c) The rhombus is reflected in the line . Write the image coordinates . Then rotate the original rhombus anticlockwise about the origin and give those image coordinates. State one transformation that maps onto itself other than the identity. (5 marks)
(d) Compute the area of the rhombus using the diagonal formula and confirm it equals the area found by treating it as four right triangles. (3 marks)
Answer keyMark scheme & solutions
Question 1
(a) Co-interior angles between parallel lines are supplementary: (3) Acute angle at : . The road makes (acute) with each wall — same acute angle on both since corresponding angles are equal. (2)
(b) Let transversal cut parallels at (on ) and (on ). Consider co-interior angles (at ) and (at ) on the same side.
- At , angle and the alternate interior angle at are equal (alternate angles, ). (2)
- At , and lie on a straight line, so (angles on a straight line). (2)
- Substituting : . Hence co-interior angles are supplementary. ∎ (1)
(c) Trapezium area . (2) Semicircle radius ; area . (2) Remaining area (2 d.p.). (2)
(d) One-eighth of trapezium . Pond area . (3) The claim is TRUE. (1)
Question 2
(a) Cone height by Pythagoras: . (2) Volume . (2)
(b) Curved cylinder . Curved cone . Base circle . (3) Total . Numeric (2 d.p.). (3)
(c) Total interior volume cylinder cone . (2) . Mass . Weight (nearest 100 N). (3)
(d)
import math
def silo_volume(r, h, l):
hc = math.sqrt(l**2 - r**2) # cone height via Pythagoras
cyl = math.pi * r**2 * h # cylinder volume
cone = (1/3) * math.pi * r**2 * hc # cone volume
return cyl + coneMarks: Pythagoras height (2), cylinder term (2), cone term (2), correct return/structure (1).
silo_volume(2,5,2.5) returns . (value: 1 of the 7)
Question 3
(a) Diagonals are (from to ) and (from to ).
- is vertical (line ); is horizontal (line ). Vertical ⟂ horizontal, so perpendicular. (2)
- Midpoint of ; midpoint of . They share midpoint = origin, so each bisects the other. (2)
- Both diagonals pass through and are bisected at , and meet at right angles → perpendicular bisectors. ∎ (2)
(b) Order of rotational symmetry (rotations of and map to itself; , under ). (2) Lines of symmetry : the two diagonals and . (The sides are unequal in direction so no other axes.) (2)
(c) Reflection in maps : . (2) Rotation anticlockwise maps : . (2) Self-mapping transformation: rotation of about the origin (or reflection in the -axis or -axis). (1)
(d) Diagonal lengths: , . Area . (2) Four right triangles each with legs and : area . Confirmed equal. (1)
[
{"claim":"Q1a: 8x-20=180 gives x=25 and acute angle 85","code":"x=solve(Eq((3*symbols('x')+10)+(5*symbols('x')-30),180),symbols('x'))[0]; result=(x==25 and 3*x+10==85)"},
{"claim":"Q1c: remaining area = 120 - 0.5*pi*9 approx 105.86","code":"val=120-0.5*3.14159*9; result=abs(val-105.86)<0.01"},
{"claim":"Q2b: total surface area = 29*pi approx 91.11","code":"val=29*3.14159; result=abs(val-91.11)<0.01"},
{"claim":"Q2c: weight approx 508500 N (nearest 100)","code":"V=22*3.14159; m=750*V; w=m*9.81; result=abs(round(w/100)*100-508500)<=200"},
{"claim":"Q3d: rhombus area from diagonals equals 24","code":"result=(Rational(1,2)*8*6==24 and 4*(Rational(1,2)*4*3)==24)"}
]