6

The classic puzzle goes something like this: "You are standing in front of a lake with a 3 gallon bucket and a 5 gallon bucket, how can you get 4 gallons of water?"

Is there an easy way to generate the triple (A,B,C) where you can get C gallons of water using buckets of size A and B?

flag
Not directly related to your question, but I remember Nathaniel Dean math.txstate.edu/people/faculty/dean.html giving a talk at the Joint Math Meetings in '09 about undergraduate research problems, and one of them was about generalization of this puzzle (in particular to more than two buckets). So there's life in that old puzzle still! – Thierry Zell Dec 30 2010 at 13:42

5 Answers

14

Simon's answer points out that the Euclidean algorithm shows that gcd(A,B) divides C is necessary, but the lack of large container makes the problem more difficult, because obviously you can't get $C$ if $C \gt A+B$. However, the following modification of the algorithm seems to work.

Let's assume $A \lt B$ and gcd$(A, B)=1$ for simplicity. By pouring from B into A and dumping A, you can get any positive integer $B-nA$ left in B. Do this until the answer is less than $A$. Then by transferring the contents to bucket A and filling it from B into it, we get $2B-(n+1)A$. Then subtract $A$ again until you have $0 \lt 2B-kA \lt A$, and we can iterate this process to get $3B-(k+1)A$, etc. This gives any integer linear combination $rB-sA$ up to the size of $A+B$ because once you get the right multiple of $B$ into the combination, you can always add bucketsful of $A$.

You just need to get $rB\equiv C$ (mod A) in order to find a combination for $C$, which happens if gcd$(A, B)=1$. With this algorithm run in the general case you can get any multiple of gcd($A, B$) up to $A+B$ (this holds trivially when $A=B$).

(Sorry, I had to edit this answer several times because parts disappeared, until I realized that my inequality signs were being parsed as HTML tag starts even after dollar signs.)

link|flag
The problem was the less-than and greater-than signs. I changed them to \lt and \gt instead. – Andrew Stacey Nov 17 2009 at 10:32
Ah--thank you very much, I will do that next time. I kept editing, though, and putting spaces in appears to have done the trick too. – Elizabeth S. Q. Goodman Nov 17 2009 at 10:35
1 
The problem is that the mathematics rendering is done last, even after it's been sent to the browser, so there's plenty of other things that muck around with the content first and the mathematics has to be safe-guarded from that. In particular, anything that looks remotely like an HTML tag will either get interpreted as such or removed by some zealous script. Putting a space after the opening sign means that it doesn't look like a tag any more so any compliant browser shouldn't misinterpret it. But there are plenty of non-compliant browsers out there so this isn't a stable solution. – Andrew Stacey Nov 17 2009 at 10:53
Thanks for the great answer. Should it be $2B-(n-1)A$ instead of $2B-(n+1)A$? – Shlomo Shamai Nov 18 2009 at 5:36
Thank you for accepting; I am glad to have seen the question. No, the way I wrote it works out--you have B in one bucket and B-nA in A before filling it, so you subtract B-(A-(B-nA))=B-((n+1)A-B). – Elizabeth S. Q. Goodman Nov 18 2009 at 6:01
show 1 more comment
3

Not an answer but rather a good thing to look at in connection with the problem-

http://numb3rs.wolfram.com/501/puzzle.html

link|flag
2

Yes. The answer follows from Bezout's theorem which says that given integers A,B and C, C can be written as XA+YB if and only if C is a multiple of the highest common factor of A and B. Euclid's algorithm tells you how to compute X and Y.

It is not too hard to see that the only volumes you can get are ones of the that are integer linear combinations of A and B and you can get every positive volume that arises in this way (as long as you have a large enough additional container to store it all).

link|flag
1 
What if you don't have that container? Is anything known about that? – Andrew Stacey Nov 17 2009 at 9:45
-3

Fill the 3 gallon bucket and pour it into the 5 gallon bucket. Fill the 3 gallon bucket again and pour as much as possible into the 5 gallon bucket without overflowing. Now you have a 3 gallon bucket with exactly 1 gallon of water in it. Now dump out the 5 gallon bucket and pour the 1 gallon into the 5 gallon bucket. Fill the 3 gallon bucket again and pour it into the 5 gallon bucket. You now have 4 gallons in the 5 gallon bucket.

link|flag
2 
The question is not about the original puzzle. – Qiaochu Yuan Apr 27 2010 at 15:32
0

1. The problem

You are given two buckets of A and B volume units of water. Can you measure C volume units out of those two buckets (not using any other container).

Hint:

  • What are the values of C that there is a solution, or there is no solution.
  • What is the minimum number of steps to get C, if you know there exists a solution.
  • Find the algorithm to describe the solution.

2. Analysis of the general problem:

  • There will be no solution if C > A + B, or C is not divisible by gcd(A,B).
  • The solution when C = A + B is just straightforward.

3. Formal properties of the problem

  • a) (Property of C given (A,B)) : For any value of A and B, there exists a solution if-and-only-if C <= A+B and gcd(A,B) | C
  • b) (How to describe C given (A,B)) : If there exist a solution, then there exists a pair of natural numbers (x, y) so that C = Ax - By and C <= A+B.
  • c) (An easier way to know if there exists a solution) : If there exist a pair of natural numbers (x,y) such that C = Ax - By and C <= A+B, then there exist a solution to the problem

4. Proof of the above mentioned properties:

  • a) Other people in this thread have given the hint on how to prove this. You can prove yourself by using "proof by contradiction".
  • b) Straight forward if you look at the analysis part (part 2).
  • c) The following algorithm (in part 5) will make sure that it would output a solution with the smallest amount of steps.

5. Algorithms to generate the solution

6. Correctness of the algorithms

Hope that helps. Thanks

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.