Home » Aptitude » Pipes and Cistern

Three pipes fill a tank with uniform flow. The first two together take the same time as the third alone. The second pipe is 5 hours faster than the first and 4 hours slower than the third. How long does the first pipe take?

Difficulty: Hard

Correct Answer: 15 hours

Explanation:

Problem restatement
Let the individual times be t1, t2, t3 for the first, second, third pipes. Given relational constraints and that the rate of the third equals the combined rate of first and second.


Given data

  • t2 = t1 − 5
  • t2 = t3 + 4 ⇒ t3 = t1 − 9
  • 1/t1 + 1/t2 = 1/t3

Concept/Approach
Translate the time relations into rates, substitute t2, t3 in terms of t1, and solve the resulting rational equation.


Step-by-step calculation
1/t1 + 1/(t1 − 5) = 1/(t1 − 9)[(t1 − 5) + t1] / [t1(t1 − 5)] = 1/(t1 − 9)(2t1 − 5)(t1 − 9) = t1(t1 − 5)2t12 − 23t1 + 45 = t12 − 5t1t12 − 18t1 + 45 = 0Discriminant = 182 − 4×45 = 144 ⇒ t1 = (18 ± 12)/2 ⇒ 15 or 3Valid time: 15 hours (3 h would make t2 negative)


Verification/Alternative
t1=15 ⇒ t2=10, t3=6; rates 1/15 + 1/10 = 1/6 (true).


Common pitfalls
Equating times instead of rates: the statement implies equal rates over the same time interval.


Final Answer
15 hours

← Previous Question Next Question→

More Questions from Pipes and Cistern

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion