Level 5 — MasteryBasic Geometry

Basic Geometry

75 minutes60 marksprintable — key stays hidden on paper

Chapter: 1.2 Basic Geometry Level: 5 — Mastery (cross-domain: geometry + physics + coding, build & prove) Time limit: 75 minutes Total marks: 60

Use π=3.14159\pi = 3.14159 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 ABAB crosses two parallel walls 12\ell_1 \parallel \ell_2 (a transversal). At the point where the road meets 1\ell_1, the acute angle between road and wall is (3x+10)(3x + 10)^\circ. At the point where it meets 2\ell_2, the co-interior (same-side interior) angle on the same side is (5x30)(5x - 30)^\circ.

(a) Using the co-interior angle property, form an equation and solve for xx. 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 12 m12\text{ m} and 18 m18\text{ m} and perpendicular height 8 m8\text{ m}. A semicircular pond of diameter 6 m6\text{ m} 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 r=2 mr = 2\text{ m} and height h=5 mh = 5\text{ m} topped by a cone of the same radius and slant height l=2.5 ml = 2.5\text{ m}.

(a) Derive the cone's vertical height and hence its volume in terms of π\pi. (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 ρ=750 kg/m3\rho = 750\text{ kg/m}^3 fills the silo completely. Using g=9.81 m/s2g = 9.81\text{ m/s}^2, 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 r=2,h=5,l=2.5r=2,h=5,l=2.5 to 3 d.p. (7 marks)


Question 3 — Prove & Transform: Symmetry of a Rhombus (18 marks)

A rhombus PQRSPQRS is placed with centre at the origin, vertices P(0,4)P(0,4), Q(3,0)Q(3,0), R(0,4)R(0,-4), S(3,0)S(-3,0).

(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 PQRSPQRS. (4 marks)

(c) The rhombus is reflected in the line y=xy = x. Write the image coordinates P,Q,R,SP', Q', R', S'. Then rotate the original rhombus 9090^\circ anticlockwise about the origin and give those image coordinates. State one transformation that maps PQRSPQRS 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: (3x+10)+(5x30)=180(3x+10) + (5x-30) = 180 8x20=1808x=200x=25.8x - 20 = 180 \Rightarrow 8x = 200 \Rightarrow x = 25. (3) Acute angle at 1\ell_1: 3(25)+10=853(25)+10 = 85^\circ. The road makes 8585^\circ (acute) with each wall — same acute angle on both since corresponding angles are equal. (2)

(b) Let transversal cut parallels at AA (on 1\ell_1) and BB (on 2\ell_2). Consider co-interior angles α\alpha (at AA) and β\beta (at BB) on the same side.

  • At AA, angle α\alpha and the alternate interior angle α\alpha' at BB are equal (alternate angles, 12\ell_1\parallel\ell_2). (2)
  • At BB, α\alpha' and β\beta lie on a straight line, so α+β=180\alpha' + \beta = 180^\circ (angles on a straight line). (2)
  • Substituting α=α\alpha' = \alpha: α+β=180\alpha + \beta = 180^\circ. Hence co-interior angles are supplementary. ∎ (1)

(c) Trapezium area =12(a+b)h=12(12+18)(8)=12(30)(8)=120 m2= \tfrac12(a+b)h = \tfrac12(12+18)(8) = \tfrac12(30)(8) = 120\text{ m}^2. (2) Semicircle radius =3 m= 3\text{ m}; area =12πr2=12(3.14159)(9)=14.1372 m2= \tfrac12\pi r^2 = \tfrac12(3.14159)(9) = 14.1372\text{ m}^2. (2) Remaining area =12014.1372=105.86 m2= 120 - 14.1372 = 105.86\text{ m}^2 (2 d.p.). (2)

(d) One-eighth of trapezium =120/8=15 m2= 120/8 = 15\text{ m}^2. Pond area =14.14 m2<15 m2=14.14\text{ m}^2 < 15\text{ m}^2. (3) The claim is TRUE. (1)


Question 2

(a) Cone height by Pythagoras: hc=l2r2=2.5222=6.254=2.25=1.5 mh_c = \sqrt{l^2 - r^2} = \sqrt{2.5^2 - 2^2} = \sqrt{6.25-4} = \sqrt{2.25} = 1.5\text{ m}. (2) Volume =13πr2hc=13π(4)(1.5)=2π m3= \tfrac13\pi r^2 h_c = \tfrac13\pi(4)(1.5) = 2\pi\text{ m}^3. (2)

(b) Curved cylinder =2πrh=2π(2)(5)=20π= 2\pi r h = 2\pi(2)(5) = 20\pi. Curved cone =πrl=π(2)(2.5)=5π= \pi r l = \pi(2)(2.5) = 5\pi. Base circle =πr2=π(4)=4π= \pi r^2 = \pi(4) = 4\pi. (3) Total =20π+5π+4π=29π m2= 20\pi + 5\pi + 4\pi = 29\pi\text{ m}^2. Numeric =29(3.14159)=91.11 m2= 29(3.14159) = 91.11\text{ m}^2 (2 d.p.). (3)

(c) Total interior volume == cylinder ++ cone =πr2h+2π=π(4)(5)+2π=20π+2π=22π m3= \pi r^2 h + 2\pi = \pi(4)(5) + 2\pi = 20\pi + 2\pi = 22\pi\text{ m}^3. (2) V=22(3.14159)=69.115 m3V = 22(3.14159) = 69.115\text{ m}^3. Mass =ρV=750×69.115=51836 kg= \rho V = 750 \times 69.115 = 51836\text{ kg}. Weight =mg=51836×9.81=508513 N508,500 N= mg = 51836 \times 9.81 = 508513\text{ N} \approx 508{,}500\text{ N} (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 + cone

Marks: Pythagoras height (2), cylinder term (2), cone term (2), correct return/structure (1). silo_volume(2,5,2.5) returns 22π69.115 m322\pi \approx 69.115\text{ m}^3. (value: 1 of the 7)


Question 3

(a) Diagonals are PRPR (from (0,4)(0,4) to (0,4)(0,-4)) and QSQS (from (3,0)(3,0) to (3,0)(-3,0)).

  • PRPR is vertical (line x=0x=0); QSQS is horizontal (line y=0y=0). Vertical ⟂ horizontal, so perpendicular. (2)
  • Midpoint of PR=(0,0)PR = (0,0); midpoint of QS=(0,0)QS = (0,0). They share midpoint = origin, so each bisects the other. (2)
  • Both diagonals pass through and are bisected at (0,0)(0,0), and meet at right angles → perpendicular bisectors. ∎ (2)

(b) Order of rotational symmetry =2= 2 (rotations of 180180^\circ and 360360^\circ map PQRSPQRS to itself; PRP\to R, QSQ\to S under 180180^\circ). (2) Lines of symmetry =2= 2: the two diagonals x=0x=0 and y=0y=0. (The sides are unequal in direction so no other axes.) (2)

(c) Reflection in y=xy=x maps (x,y)(y,x)(x,y)\to(y,x): P(4,0), Q(0,3), R(4,0), S(0,3)P'(4,0),\ Q'(0,3),\ R'(-4,0),\ S'(0,-3). (2) Rotation 9090^\circ anticlockwise maps (x,y)(y,x)(x,y)\to(-y,x): P(4,0), Q(0,3), R(4,0), S(0,3)P\to(-4,0),\ Q\to(0,3),\ R\to(4,0),\ S\to(0,-3). (2) Self-mapping transformation: rotation of 180180^\circ about the origin (or reflection in the xx-axis or yy-axis). (1)

(d) Diagonal lengths: PR=8PR = 8, QS=6QS = 6. Area =12d1d2=12(8)(6)=24= \tfrac12 d_1 d_2 = \tfrac12(8)(6) = 24. (2) Four right triangles each with legs 44 and 33: area =4×12(4)(3)=4×6=24= 4\times\tfrac12(4)(3) = 4\times 6 = 24. 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)"}
]