In [1]:
import gambit
Gambit version 16.0.0 is the current development version. You can get it from http://www.gambit-project.org.
In [2]:
gambit.__version__
Out[2]:
The game that we will use as our starting point is one which many of you may have encountered in some variation. Myerson's (1991) textbook refers to this as a one-card poker game; Reiley et at (2008) call this "stripped-down poker."
There is a deck consisting of two types of cards: Ace and King. There are two players, Alice and Bob. Both start by putting 1 in the pot. One player (Alice) draws a card; initially assume the cards are in equal proportion in the deck. Alice sees her card, and then decides whether she wants to raise (add another 1 to the pot) or fold (and concede the pot to Bob). If she raises, play passes to Bob, who much decide whether to meet her raise (and add another 1 to the pot) or pass (and concede the pot to Alice). If Alice raises and Bob meets, Alice reveals her card: If it is an Ace, she takes the pot, whereas if it is a King, Bob does.
Here is what the game looks like in extensive form (as drawn by Gambit's graphical viewer, which we will touch on separately):
In [3]:
g = gambit.Game.read_game("poker.efg")
Gambit's .efg format is a serialisation of an extensive game. The format looks somewhat dated (and indeed it was finalised in 1994), but is fast: recently I loaded a game with about 1M nodes in under 2s.
In [4]:
g
Out[4]:
The game offers a "Pythonic" interface. Most objects in a game can be accessed via iterable collections.
In [5]:
g.players
Out[5]:
All objects have an optional text label, which can be used to retrieve it from the collection:
In [6]:
g.players["Alice"]
Out[6]:
In this game, Alice has two information sets: when she has drawn the Ace, and when she has drawn the King:
In [7]:
g.players["Alice"].infosets
Out[7]:
The chance or nature player is a special player in the players
collection.
In [8]:
g.players.chance
Out[8]:
In [9]:
g.players.chance.infosets
Out[9]:
Gambit does sorting of the objects in each collection, so indexing collections by integer indices also works reliably if you save and load a game again.
In [10]:
g.players.chance.infosets[0].actions
Out[10]:
We can assign particular game objects to variables for convenient referencing. In this case, we will explore the strategic effects of changing the relative probabilities of the Ace and King cards.
In [11]:
deal = g.players.chance.infosets[0]
In the original version of the game, it was assumed that the Ace and King cards were equally likely to be dealt.
In [12]:
deal.actions["A"].prob
Out[12]:
In [13]:
deal.actions["K"].prob
Out[13]:
Gambit offers a variety of methods for computing Nash equilibria of games, which we will discuss in more detail separately. This is a two-player game in extensive form, for which we can use Lemke's algorithm applied to the sequence form of the game.
In the Python interface, solution methods are offered in the gambit.nash
module. Each method also is wrapped as a standalone command-line binary.
In [14]:
result = gambit.nash.lcp_solve(g)
The result of this method is a list of (mixed) behaviour profiles. (Future: the return value will be encapsulated in a results class retaining more detailed metadata about the run of the algorithm.)
In this game, there is a unique (Bayes-)Nash equilibrium.
In [15]:
len(result)
Out[15]:
A behaviour profile looks like a nested list. Entries are of the form profile[player][infoset][action]
.
In [16]:
result[0]
Out[16]:
In [17]:
result[0][g.players["Alice"]]
Out[17]:
In [18]:
result[0][g.players["Bob"]]
Out[18]:
We can compute various interesting quantities about behaviour profiles. Most interesting is perhaps the payoff to each player; because this is a constant-sum game, this is the value of the game.
In [19]:
result[0].payoff(g.players["Alice"])
Out[19]:
In [20]:
result[0].payoff(g.players["Bob"])
Out[20]:
Bob is randomising at his information set, so he must be indifferent between his actions there. We can check this.
In [21]:
result[0].payoff(g.players["Bob"].infosets[0].actions[0])
Out[21]:
In [22]:
result[0].payoff(g.players["Bob"].infosets[0].actions[1])
Out[22]:
As we teach our students, the key to understanding this game is that Alice plays so as to manipulate Bob's beliefs about the likelihood she has the Ace. We can examine Bob's beliefs over the nodes (members) of his one information set.
Given the structure of the betting rules, Bob becomes indifferent to his actions when he thinks there is a 3/4 chance Alice has the Ace.
In [23]:
result[0].belief(g.players["Bob"].infosets[0].members[0])
Out[23]:
In [24]:
result[0].belief(g.players["Bob"].infosets[0].members[1])
Out[24]:
The call to lcp_solve
above uses the sequence form rather than the (reduced) strategic form of the game. This representation takes advantage of the tree structure, and can avoid (in many games of interest) the exponential blowup of the size of the strategic form relative to the extensive form. (More details on this in a while!)
Nevertheless, the reduced strategic form of a game can be of interest. Gambit implements transparently the conversions between the extensive and strategic representations. For games in extensive form, the reduced strategic form is computed on-the-fly from the game tree; that is, the full normal form payoff tables are not stored in memory.
Each player has a data member strategies
which lists the reduced normal form strategies (s)he has.
In [25]:
g.players["Alice"].strategies
Out[25]:
In [26]:
g.players["Bob"].strategies
Out[26]:
We can also do a quick visualisation of the payoff matrix of the game using the built-in HTML output (plus Jupyter's inline rendering of HTML!)
Disclaimer: There's a bug in the 16.0.0 release which prevents the correct generation of HTML; this will be corrected in 16.0.1 (and is corrected in the 'master' branch of the git repository already).
In [27]:
import IPython.display; IPython.display.HTML(g.write('html'))
Out[27]:
Bonus note: Gambit also supports writing out games using Martin Osborne's sgame LaTeX style: https://www.economics.utoronto.ca/osborne/latex/. This doesn't have auto-rendering magic in Jupyter, but it's all ready to cut-and-paste to your favourite editor.
In [28]:
print g.write('sgame')
We can convert our behaviour profile to a corresponding mixed strategy profile. This is indexable as a nested list with elements [player][strategy]
.
In [29]:
msp = result[0].as_strategy()
msp
Out[29]:
Of course, Alice will receive the same expected payoff from this mixed strategy profile as she would in the original behaviour profile.
In [30]:
msp.payoff(g.players["Alice"])
Out[30]:
We can also ask what the expected payoffs to each of the strategies are. Alice's last two strategies correspond to folding when she has the Ace, which is dominated.
In [31]:
msp.strategy_values(g.players["Alice"])
Out[31]:
The real gain in having libraries for doing computation in game theory is to be able to script computations. For example, we can explore how the solution to the game changes, as we change the probability that Alice is dealt the Ace.
Payoffs and probabilities are represented in games in Gambit as exact-precision numbers, which can be either rational numbers of (exact-precision) decimals. These are called gambit.Rational
and gambit.Decimal
, and are compatible with the Python fractions.Fraction
and decimal.Decimal
classes, respectively. (In Gambit 16.0.0, they are derived from them.)
Caveat/Tip: This means one cannot set a payoff or probability to be a floating-point number. We justify this based on the principle "explicit is better than implicit." In two-player games, the extreme points of the set of Nash equilibria are rational numbers, whenever the data of the game are rational, and the Gambit equilibrium computation methods take advantage of this. If the payoff of a game were specified as a floating-point number, e.g. 0.333333 instead of 1/3, surprising results can occur due to rounding.
In [32]:
import pandas
probs = [ gambit.Rational(i, 20) for i in xrange(1, 20) ]
results = [ ]
for prob in probs:
g.players.chance.infosets[0].actions[0].prob = prob
g.players.chance.infosets[0].actions[1].prob = 1-prob
result = gambit.nash.lcp_solve(g)[0]
results.append({ "prob": prob,
"alice_payoff": result.payoff(g.players["Alice"]),
"bluff": result[g.players["Alice"].infosets[1].actions[0]],
"belief": result.belief(g.players["Bob"].infosets[0].members[1]) })
df = pandas.DataFrame(results)
df
Out[32]:
In [33]:
import pylab
%matplotlib inline
pylab.plot(df.prob, df.bluff, '-')
pylab.xlabel("Probability Alice gets ace")
pylab.ylabel("Probability Alice bluffs with king")
pylab.show()
In [34]:
pylab.plot(df.prob, df.alice_payoff, '-')
pylab.xlabel("Probability Alice gets ace")
pylab.ylabel("Alice's equilibrium payoff")
pylab.show()
In [35]:
pylab.plot(df.prob, df.belief, '-')
pylab.xlabel("Probability Alice gets ace")
pylab.ylabel("Bob's equilibrium belief")
pylab.ylim(0,1)
pylab.show()
As a final experiment, we can also change the payoff structure instead of the probability of the high card. How would the equilibrium change if a Raise/Meet required putting 2 into the pot instead of 1?
In [36]:
deal.actions[0].prob = gambit.Rational(1,2)
In [37]:
deal.actions[1].prob = gambit.Rational(1,2)
The outcomes
member of the game lists all of the outcomes. An outcome can appear at multiple nodes. Outcomes, like all other objects, can be given text labels for easy reference.
In [38]:
g.outcomes["Alice wins big"]
Out[38]:
In [39]:
g.outcomes["Alice wins big"][0] = 3
In [40]:
g.outcomes["Alice wins big"][1] = -3
In [41]:
g.outcomes["Bob wins big"][0] = -3
In [42]:
g.outcomes["Bob wins big"][1] = 3
Once again, solve the revised game using Lemke's algorithm on the sequence form.
In [43]:
result = gambit.nash.lcp_solve(g)
In [44]:
len(result)
Out[44]:
In [45]:
result[0]
Out[45]:
The value of the game to Alice is now higher: 1/2 instead of 1/3 with the original payoffs.
In [46]:
result[0].payoff(g.players["Alice"])
Out[46]:
Bob's equilibrium belief about Alice's hand is also different of course, as he now is indifferent between meeting and passing Alice's raise when he thinks the chance she has the Ace is 2/3 (instead of 3/4 before).
In [47]:
result[0].belief(g.players["Bob"].infosets[0].members[0])
Out[47]:
We already saw above some of the formats that can be used to serialise games. There are a few other standard options. For example, Gambit also has a format for games in strategic (or normal) form. You can get the reduced normal form of the extensive game in this format directly:
In [48]:
print g.write('nfg')
Also, we can write the game out in the XML format used by Game Theory Explorer:
In [49]:
print g.write('gte')