Difficulty: Medium
Correct Answer: 110
Explanation:
Introduction / Context:Given a parts ratio and an addition of water, enforce the final condition milk = 2*water to find original quantities.
Given Data / Assumptions:
Concept / Approach:11k = 2*(2k + 35) ⇒ solve k, then compute milk = 11k.
Step-by-Step Solution:
11k = 4k + 70 ⇒ 7k = 70 ⇒ k = 10.Original milk = 11k = 110 L.Verification / Alternative check:Original water 20 L; after addition 55 L; milk 110 L is indeed twice water 55 L.
Why Other Options Are Wrong:55 is water after addition; 70, 220 mismatch the given condition.
Common Pitfalls:Doubling the original water rather than the final water (which includes the added 35 L).
Final Answer:110
Discussion & Comments