Difficulty: Medium
Correct Answer: 5 / 28 km
Explanation:
Introduction / Context:
When multiple runners all return to a common starting post at the same time, the track length must divide the distance each runner covers in that time, so that each completes an integer number of laps. The largest feasible track length equals the greatest common divisor (GCD) of the three distances covered.
Given Data / Assumptions:
Concept / Approach:
Distances: d1 = v1*t = 5*(15/4) = 75/4; d2 = (36/7)*(15/4) = 135/7; d3 = (16/3)*(15/4) = 20. The maximum track length L is the GCD of {d1, d2, d3}.
Step-by-Step Solution:
Verification / Alternative check:
Check laps: (525/28)/(5/28) = 105; (540/28)/(5/28) = 108; (560/28)/(5/28) = 112. All integers.
Why Other Options Are Wrong:
Other fractions do not divide each distance into an integer number of laps.
Common Pitfalls:
Using LCM of times without converting to distances, or taking an average instead of the GCD.
Final Answer:
5 / 28 km
Discussion & Comments