Difficulty: Medium
Correct Answer: 20 , 25 , 30
Explanation:
Introduction / Context:
We are given combined earnings over multiple-day periods for different pairs and for all three together. The trick is to convert each total into a per-day figure and then solve the resulting system of linear equations to get individual daily earnings.
Given Data / Assumptions:
Concept / Approach:
Let a, b, c be daily earnings. Then we have three equations: a+b+c=75, a+b=45, a+c=50. Subtract to obtain b and c, and then find a.
Step-by-Step Solution:
a + b + c = 75a + b = 45 ⇒ c = 75 − 45 = 30a + c = 50 ⇒ a = 50 − 30 = 20Then b = 45 − a = 25Hence daily earnings: A = 20, B = 25, C = 30
Verification / Alternative check:
Check pairs: A+C = 20+30=50 (matches); A+B = 20+25=45 (matches); A+B+C = 75 (matches).
Why Other Options Are Wrong:
Other permutations present different assignments and do not satisfy all three equations simultaneously.
Common Pitfalls:
Forgetting to convert totals to per-day values; algebraic slip when subtracting equations; swapping the identities of b and c.
Final Answer:
20 , 25 , 30
Discussion & Comments