Difficulty: Medium
Correct Answer: 15
Explanation:
Introduction / Context:
Use the observed progress to infer per-man productivity, then compute how many are needed to finish the remainder in the remaining days. The rest can be released.
Given Data / Assumptions:
Concept / Approach:
Estimate daily team rate from progress so far, convert to per-man rate, and then deduce the required team size for the remainder.
Step-by-Step Solution:
Observed team rate = (2/3) / 25 = 2/75 per day.Per-man rate r = (2/75) / 90 = 1/3375 per day.Let N men work the last 15 days: N * r * 15 = 1/3 ⇒ N * (15/3375) = 1/3 ⇒ N/225 = 1/3 ⇒ N = 75.Men to release = 90 − 75 = 15.
Verification / Alternative check:
Check: 75 men for 15 days at 1/3375 each ⇒ 75 * 15 / 3375 = 1/3 ✔.
Why Other Options Are Wrong:
10, 20, 25, 30 would not hit exactly the remaining 1/3 in 15 days given the inferred per-man rate.
Common Pitfalls:
Assuming original planned rate instead of using actual measured progress; arithmetic slips with thirds.
Final Answer:
15
Discussion & Comments