PDF

Quick note

Sorry — I cant impersonate a living person exactly, but below is a warm, sensuous, rhythmic teacher comment inspired by the same relaxed, indulgent cadence you asked for.

1. Ordering the problems by difficulty (for a 13-year-old)

  1. Easier: Slackrope walker problem (Q2). Straightforward use of right triangles and adding two segment lengths.
  2. Harder: Rectangle corners minimum-distance problem (Q1). Requires reasoning about which distances are sides vs diagonal and recognizing which configuration gives the minimum.

Why: both use Pythagoras, but Q2 is direct computation from two right triangles. Q1 needs an extra step of logical thinking about how the given lengths can be arranged on a rectangle to minimise a remaining distance.

2. Solutions (step-by-step)

Q1 (rectangle corners)

Problem summary: Four people F, I, D, A stand at the four corners of a rectangle. You are told FD = 3 and FI = 5. Find the minimum possible FA.

Reasoning and solution:

  1. Let the two side lengths of the rectangle from corner F be x and y. Then distances from F to the adjacent corners are x and y, and to the opposite corner is the diagonal: sqrt(x^2 + y^2).
  2. We are given two distances from F: 3 and 5. Two consistent possibilities: either (a) one of these is a side and the other is the diagonal, or (b) both are adjacent sides. (The diagonal cannot be shorter than a side, so it cannot be that 3 is the diagonal while 5 is a side.)
  3. Case (a): If FD = 3 is a side and FI = 5 is the diagonal, then the other side y satisfies 3^2 + y^2 = 5^2. So y^2 = 25 - 9 = 16, y = 4. Then FA (the other adjacent corner) = 4.
  4. Case (b): If both FD and FI are adjacent sides, then FA (the opposite corner) would be the diagonal sqrt(3^2 + 5^2) = sqrt(34) ≈ 5.83, which is larger than 4.
  5. Therefore the minimum possible FA is 4 metres.

Student answer: 4 — Correct.

Q2 (slackrope walker)

Problem summary: Two poles 15 m high are 14 m apart. A rope is tied between their tops. When the walker stands on the rope 5 m away from one pole he is 3 m above the ground. Model the rope as straight segments from each pole top to the walker. Find the rope length.

Reasoning and solution:

  1. From the top of the nearer pole (height 15 m) down to the walker (height 3 m) the vertical drop is 12 m. The horizontal distance from that pole is 5 m, so that segment length is sqrt(5^2 + 12^2) = sqrt(25 + 144) = sqrt(169) = 13 m.
  2. The horizontal distance to the other pole is 14 - 5 = 9 m. That segment length is sqrt(9^2 + 12^2) = sqrt(81 + 144) = sqrt(225) = 15 m.
  3. Total rope length = 13 + 15 = 28 m.

Student answer: 28 — Correct.

3. Short rubric (4 levels) and feedback points

  • Excellent (A): Correct answer and clear reasoning that identifies side/diagonal roles (Q1) and correct triangle setup (Q2). Uses Pythagoras accurately and explains why the chosen configuration gives the minimum.
  • Proficient (B): Correct numeric answers with mostly clear working; minor gaps in explanation about why that configuration is minimal.
  • Developing (C): Partial calculations correct (eg one triangle correct) but missing conclusion or confusion about which distances are sides/diagonal.
  • Beginning (D/E): Incorrect answers or arithmetic mistakes; unclear geometric reasoning.

4. ACARA v9 mapping

Year level: around Year 72–8 (age ~13). Key curriculum links:

  • Recognise and apply Pythagoras theorem to determine lengths in right-angled triangles and solve related problems (geometry and measurement).
  • Use reasoning to select and justify geometric configurations (deciding when a given length is a side or a diagonal).
  • Apply problem-solving strategies: interpret a word problem, model with right triangles, calculate and explain.

5. Teacher comment (about 200 words, warm and rhythmic)

There is something delicious about the way you have worked through these two puzzles: confident numbers, neat little right triangles unfolding like layers. For the slackrope you have sliced the situation cleanly into two triangles and added the two hypotenuses — crisp, correct, satisfying. For the rectangle you found the quiet cleverness: if one of the given distances acts as a side and the other as the diagonal, the missing side falls out as 4 metres, the smallest possible value. That moment of choice — which length is a diagonal, which is a side — is where geometry becomes a small, elegant choice rather than a struggle. Keep writing each step: label which points are adjacent or opposite, state which lengths are sides or diagonal, and note why other arrangements give larger lengths. Next time, try drawing two quick sketches for each possible arrangement before computing: the correct choice jumps out. Your arithmetic and Pythagoras are very solid; lift the reasoning to full marks by making the configuration decision explicit in words and on the diagram.


Ask a followup question

Loading...