Difficulty: Medium
Correct Answer: 3
Explanation:
Introduction / Context:When workload increases proportionally, compute new total hours required and distribute under constraints. Since children are capped at 6 hours, women must pick up the remaining hours.
Given Data / Assumptions:
Concept / Approach:Compute required women-hours as the difference between total needed and capped children-hours, then compare with normal women-hours to find the extra per woman.
Step-by-Step Solution:
Required total hours = 15nChildren hours (capped) = 6nWomen required hours = 15n - 6n = 9nNormal women hours = 6n → Extra women hours = 9n - 6n = 3nExtra per woman = (3n)/n = 3 hoursVerification / Alternative check:New total = 9n + 6n = 15n which equals 150% of original 10n → consistent.
Why Other Options Are Wrong:They miscount either the cap or the proportional increase.
Common Pitfalls:Assuming children also bear extra unlimited hours; here the legal cap binds.
Final Answer:3
Discussion & Comments