Is there a Python library out there that solves for the Nash equilibrium of two-person zero-games? I know the solution can be written down in terms of linear constraints and, in theory, scipy should be able to optimize it. However, for two-person zero-games the solution is exact and unique, but some of the solvers fail to converge for certain problems.

Rather than listing any of the libraries on Linear programing on the Python website, I would like to know what library would be most effective in terms of ease of use and speed.

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

Raymond Hettinger wrote a recipe for solving zero-sum payoff matrices. It should serve your purposes alright.

As for a more general library for solving game theory, there's nothing specifically designed for that. But, like you said, scipy can tackle optimization problems like this. You might be able to do something with GarlicSim, which claims to be for "any kind of simulation: Physics, game theory..." but I've never used it before so I can't recommend it.

link|improve this answer
The code snippet seems to work well, however it uses an iterative technique, an exact solution would be nice since it exists and is unique. – Hooked Feb 4 '11 at 19:29
@Hooked blame Raymond, not me ;) You can try GarlicSim, but no promises – Rafe Kettler Feb 4 '11 at 19:47
GarlicSim developer here. If you're looking for an analytical solution, GarlicSim is not good for you. If you want to run simulations of players playing your games, you can do it with GarlicSim, and you can try to use that to get a numerical solution, but I think you're better off with an analytical solution, i.e., not using GarlicSim. Assuming I understood your question correctly. – Ram Rachum Mar 7 '11 at 21:24
feedback

Your Answer

 
or
required, but never shown

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