Difficulty: Easy
Correct Answer: 54
Explanation:
Introduction / Context:Ratio chaining across three numbers allows expressing all in one variable. With the average known, compute each and then the required difference (range).Given Data / Assumptions:
Concept / Approach:Let third = t ⇒ second = 2t ⇒ first = 4t. Then 4t + 2t + t = 7t = 126, so t = 18. Largest is 4t, smallest is t.Step-by-Step Solution:
7t = 126 ⇒ t = 18Numbers: 72, 36, 18Difference largest - smallest = 72 - 18 = 54Verification / Alternative check:Average check: (72 + 36 + 18) / 3 = 126/3 = 42, consistent.Why Other Options Are Wrong:
Common Pitfalls:Reversing the doubling chain or forgetting that average fixes the sum first.Final Answer:
54
Discussion & Comments