vote up 2 vote down star
1

While reading through some lecture notes on preliminary number theory, I came across the solution to water jug problem (with two jugs) which is summed as thus:

Using the property of the G.C.D of two numbers that GCD(a,b) is the smallest possible linear combination of a and b, and hence a certain quantity Q is only measurable by the 2 jugs, iff Q is a n*GCD(a,b), since Q=sA + tB, where:

n = a positive integer
A = capacity of jug A
B=  capacity of jug B

And, then the method to the solution is discussed

Another model of the solution is to model the various states as a state-space search problem as often resorted to in Artificial Intelligence.

My question is: What other known methods exist which models the solution, and how? Google didn't throw up much.

flag

72% accept rate

3 Answers

vote up 0 vote down

The search space method is what I would've suggested. I made a program to solve generic water jugs problems using a BFS. Could send it to you if you wish.

link|flag
vote up 1 vote down

An amazing and amusing approach (for 3 jugs) is through barycentric coordinates (really!), as described at the always brilliant website Cut-the-Knot: Barycentric coordinates: A Curious Application.

link|flag
vote up 0 vote down

This type of problem is often amenable to dynamic programming techniques. I've ofetn seen this specific problem used as an example in operations research courses. One nice step-by-step description is here.

link|flag

Your Answer

Get an OpenID
or

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