Solving "Who owns the Zebra" programmatically? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T03:04:41Z http://stackoverflow.com/feeds/question/318888 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/318888/solving-who-owns-the-zebra-programmatically 31 Solving "Who owns the Zebra" programmatically? divideandconquer.se 2008-11-25T21:14:26Z 2009-01-09T21:07:50Z <p>Edit: this puzzle is also known as "Einstein's Riddle"</p> <p>The <a href="http://www.blakjak.demon.co.uk/zebra.htm" rel="nofollow">Who owns the Zebra</a> is an example of a classic set of puzzles and I bet that most people on Stack Overflow can solve it with pen and paper. But what would a programmatic solution look like?</p> <p>Based on the clues listed below...</p> <ul> <li>There are five houses.</li> <li>Each house has its own unique color.</li> <li>All house owners are of different nationalities.</li> <li>They all have different pets.</li> <li>They all drink different drinks.</li> <li>They all smoke different cigarettes.</li> <li>The English man lives in the red house.</li> <li>The Swede has a dog.</li> <li>The Dane drinks tea.</li> <li>The green house is on the left side of the white house.</li> <li>They drink coffee in the green house.</li> <li>The man who smokes Pall Mall has birds.</li> <li>In the yellow house they smoke Dunhill.</li> <li>In the middle house they drink milk.</li> <li>The Norwegian lives in the first house.</li> <li>The man who smokes Blend lives in the house next to the house with cats.</li> <li>In the house next to the house where they have a horse, they smoke Dunhill.</li> <li>The man who smokes Blue Master drinks beer.</li> <li>The German smokes Prince.</li> <li>The Norwegian lives next to the blue house.</li> <li>They drink water in the house next to the house where they smoke Blend. </li> </ul> <p>...who owns the Zebra?</p> http://stackoverflow.com/questions/318888/solving-who-owns-the-zebra-programmatically/318903#318903 17 Answer by J Cooper for Solving "Who owns the Zebra" programmatically? J Cooper 2008-11-25T21:18:03Z 2008-11-25T21:18:03Z <p>Sounds like a job for declarative programming! Prolog, anyone? ...</p> http://stackoverflow.com/questions/318888/solving-who-owns-the-zebra-programmatically/318916#318916 6 Answer by LFSR Consulting for Solving "Who owns the Zebra" programmatically? LFSR Consulting 2008-11-25T21:22:07Z 2008-11-25T21:22:07Z <p>Picking up where this <a href="http://stackoverflow.com/questions/305223/jon-skeet-facts"> question</a> left off... <a href="http://stackoverflow.com/questions/305223/jon-skeet-facts?answer=318921#318921">Jon Skeet owns the zebra!</a></p> http://stackoverflow.com/questions/318888/solving-who-owns-the-zebra-programmatically/318922#318922 4 Answer by Larry OBrien for Solving "Who owns the Zebra" programmatically? Larry OBrien 2008-11-25T21:23:38Z 2008-11-25T21:38:38Z <p>Here's a solution using NSolver: <a href="http://tinyurl.com/3a894h" rel="nofollow">http://tinyurl.com/3a894h</a></p> <p>Here is an excerpt:</p> <pre><code>//The green house's owner drinks coffee Post(greenHouse.Eq(coffee)); //The person who smokes Pall Mall rears birds Post(pallMall.Eq(birds)); //The owner of the yellow house smokes Dunhill Post(yellowHouse.Eq(dunhill)); </code></pre> http://stackoverflow.com/questions/318888/solving-who-owns-the-zebra-programmatically/318989#318989 6 Answer by Chris for Solving "Who owns the Zebra" programmatically? Chris 2008-11-25T21:45:50Z 2008-11-25T23:44:18Z <p>Here's how I'd go about it. First I'd generate all the ordered n-tuples</p> <pre><code>(housenumber, color, nationality, pet, drink, smoke) </code></pre> <p>5^6 of those, 15625, easily manageable. Then I'd filter out the simple boolean conditions. there's ten of them, and each of those you'd expect to filter out 8/25 of the conditions (1/25 of the conditions contain a Swede with a dog, 16/25 contain a non-Swede with a non-dog). Of course they're not independent but after filtering those out there shouldn't be many left.</p> <p>After that, you've got a nice graph problem. Create a graph with each node representing one of the remaining n-tuples. Add edges to the graph if the two ends contain duplicates in some n-tuple position or violate any 'positional' constraints (there's five of those). From there you're almost home, search the graph for an independent set of five nodes (with none of the nodes connected by edges). If there's not too many, you could possibly just exhaustively generate all the 5-tuples of n-tuples and just filter them again.</p> <p>This could be a good candidate for code golf. Someone can probably solve it in one line with something like haskell :)</p> <p><strong>afterthought:</strong> The initial filter pass can also eliminate information from the positional constraints. Not much (1/25), but still significant.</p> http://stackoverflow.com/questions/318888/solving-who-owns-the-zebra-programmatically/318991#318991 6 Answer by rmeador for Solving "Who owns the Zebra" programmatically? rmeador 2008-11-25T21:45:57Z 2008-11-25T21:45:57Z <p>One poster already mentioned that Prolog is a potential solution. This is true, and it's the solution I would use. In more general terms, this is a perfect problem for an automated inference system. Prolog is a logic programming language (and associated interpreter) that form such a system. It basically allows concluding of facts from statements made using <a href="http://en.wikipedia.org/wiki/First-order_logic" rel="nofollow">First Order Logic</a>. FOL is basically a more advanced form of propositional logic. If you decide you don't want to use Prolog, you could use a similar system of your own creation using a technique such as <a href="http://en.wikipedia.org/wiki/Modus_ponens" rel="nofollow">modus ponens</a> to perform the draw the conclusions.</p> <p>You will, of course, need to add some rules about zebras, since it isn't mentioned anywhere... I believe the intent is that you can figure out the other 4 pets and thus deduce the last one is the zebra? You'll want to add rules that state a zebra is one of the pets, and each house can only have one pet. Getting this kind of "common sense" knowledge into an inference system is the major hurdle to using the technique as a true AI. There are some research projects, such as Cyc, which are attempting to give such common knowledge through brute force. They've met with an interesting amount of success.</p> http://stackoverflow.com/questions/318888/solving-who-owns-the-zebra-programmatically/320981#320981 57 Answer by J.F. Sebastian for Solving "Who owns the Zebra" programmatically? J.F. Sebastian 2008-11-26T14:59:07Z 2008-12-08T19:13:37Z <p>Here's a solution in Python based on constraint-programming:</p> <pre><code>from constraint import AllDifferentConstraint, InSetConstraint, Problem # variables colors = "blue red green white yellow".split() nationalities = "Norwegian German Dane Swede English".split() pets = "birds dog cats horse zebra".split() drinks = "tea coffee milk beer water".split() cigarettes = "Blend, Prince, Blue Master, Dunhill, Pall Mall".split(", ") # There are five houses. minn, maxn = 1, 5 problem = Problem() # value of a variable is the number of a house with corresponding property variables = colors + nationalities + pets + drinks + cigarettes problem.addVariables(variables, range(minn, maxn+1)) # Each house has its own unique color. # All house owners are of different nationalities. # They all have different pets. # They all drink different drinks. # They all smoke different cigarettes. for vars_ in (colors, nationalities, pets, drinks, cigarettes): problem.addConstraint(AllDifferentConstraint(), vars_) # In the middle house they drink milk. #NOTE: interpret "middle" in a numerical sense (not geometrical) problem.addConstraint(InSetConstraint([(minn + maxn) // 2]), ["milk"]) # The Norwegian lives in the first house. #NOTE: interpret "the first" as a house number problem.addConstraint(InSetConstraint([minn]), ["Norwegian"]) # The green house is on the left side of the white house. #XXX: what is "the left side"? (linear, circular, two sides, 2D house arrangment) #NOTE: interpret it as 'green house number' + 1 == 'white house number' problem.addConstraint(lambda a,b: a+1 == b, ["green", "white"]) def add_constraints(constraint, statements, variables=variables, problem=problem): for stmt in (line for line in statements if line.strip()): problem.addConstraint(constraint, [v for v in variables if v in stmt]) and_statements = """ They drink coffee in the green house. The man who smokes Pall Mall has birds. The English man lives in the red house. The Dane drinks tea. In the yellow house they smoke Dunhill. The man who smokes Blue Master drinks beer. The German smokes Prince. The Swede has a dog. """.split("\n") add_constraints(lambda a,b: a == b, and_statements) nextto_statements = """ The man who smokes Blend lives in the house next to the house with cats. In the house next to the house where they have a horse, they smoke Dunhill. The Norwegian lives next to the blue house. They drink water in the house next to the house where they smoke Blend. """.split("\n") #XXX: what is "next to"? (linear, circular, two sides, 2D house arrangment) add_constraints(lambda a,b: abs(a - b) == 1, nextto_statements) def solve(variables=variables, problem=problem): from itertools import groupby from operator import itemgetter # find &amp; print solutions for solution in problem.getSolutionIter(): for key, group in groupby(sorted(solution.iteritems(), key=itemgetter(1)), key=itemgetter(1)): print key, for v in sorted(dict(group).keys(), key=variables.index): print v.ljust(9), print if __name__ == '__main__': solve() </code></pre> <p>Output:</p> <pre><code>1 yellow Norwegian cats water Dunhill 2 blue Dane horse tea Blend 3 red English birds milk Pall Mall 4 green German zebra coffee Prince 5 white Swede dog beer Blue Master </code></pre> <p>It takes 0.6 seconds (CPU 1.5GHz) to find the solution.<br /> The answer is "German owns zebra."</p> <p><hr /></p> <p>To install the <a href="http://labix.org/python-constraint" rel="nofollow"><code>constraint</code> module</a>:</p> <ul> <li><p>download: </p> <p>$ wget <a href="http://labix.org/download/python-constraint/python-constraint-1.1.tar.bz2" rel="nofollow">http://labix.org/download/python-constraint/python-constraint-1.1.tar.bz2</a></p></li> <li><p>extract:</p> <p>$ bzip2 -cd python-constraint-1.1.tar.bz2 | tar xvf -</p></li> <li><p>install:</p> <p>$ cd python-constraint-1.1</p> <p>$ python setup.py install</p></li> </ul> http://stackoverflow.com/questions/318888/solving-who-owns-the-zebra-programmatically/360336#360336 3 Answer by Kaarel for Solving "Who owns the Zebra" programmatically? Kaarel 2008-12-11T18:18:13Z 2008-12-11T18:18:13Z <p>Here is a Prolog solution: <a href="http://en.literateprograms.org/Zebra_Puzzle_(Prolog)" rel="nofollow">http://en.literateprograms.org/Zebra_Puzzle_(Prolog)</a>. This page contains a link to another Prolog solution as well.</p> http://stackoverflow.com/questions/318888/solving-who-owns-the-zebra-programmatically/376653#376653 0 Answer by namin for Solving "Who owns the Zebra" programmatically? namin 2008-12-18T01:50:33Z 2008-12-18T01:50:33Z <p><a href="http://books.google.com/books?hl=en&amp;id=CmFlpuoPe1MC&amp;printsec=frontcover&amp;source=web&amp;ots=t7eYBiIqU9&amp;sig=NbM5q1JoBeItdoGjrjdTFsAfe6Y&amp;sa=X&amp;oi=book_result&amp;resnum=3&amp;ct=result#PPA373,M1" rel="nofollow">In PAIP (Chapter 11), Norvig solves the zebra puzzle using a Prolog embedded in Lisp</a>.</p> http://stackoverflow.com/questions/318888/solving-who-owns-the-zebra-programmatically/429743#429743 1 Answer by Bob Carpenter for Solving "Who owns the Zebra" programmatically? Bob Carpenter 2009-01-09T21:07:50Z 2009-01-09T21:07:50Z <p>This is really a constraint solving problem. You can do it with a generalized kind of constraint propagation in logic-programming like languages. We have a demo specifically for the Zebra problem in the ALE (attribute logic engine) system:</p> <p><a href="http://www.cs.toronto.edu/~gpenn/ale.html" rel="nofollow">http://www.cs.toronto.edu/~gpenn/ale.html</a> </p> <p>Here's the link to the coding of a simplified Zebra puzzle:</p> <p><a href="http://www.cs.toronto.edu/~gpenn/ale/files/grammars/baby.pl" rel="nofollow">http://www.cs.toronto.edu/~gpenn/ale/files/grammars/baby.pl</a></p> <p>To do this efficiently is another matter.</p>