Players and Strategies
Jennifer Nordstrom · CC BY-SA 4.0 · §1.1 Players and Strategies
A game is any situation where players choose strategies and receive payoffs. Game theory assumes every player is self-interested and perfectly rational. These two assumptions power everything that follows.
What is a game?
A game has three ingredients: players (who is playing), strategies (what each player can do), and payoffs (what each player gets for each outcome). A strategy is a complete plan. It tells you what to do in every situation, before the game starts.
Two assumptions that drive everything
Self-interest. Each player wants to maximize their own payoff. They do not care about fairness or the other player's outcome unless it affects their own.
Rationality. Each player considers all available information and makes the best possible decision. And each player knows the other is doing the same. This mutual knowledge of rationality is what makes game theory work.
Perfect information and finite games
A game has perfect information when every player knows all options, all opponent options, and all outcomes. Both know the other knows. Tic-tac-toe is perfect information. Poker is not (hidden cards).
A game is finite when it must end within some maximum number of moves. Tic-tac-toe is finite (at most 9 moves). Chess with the 50-move rule is finite. Without it, chess could loop forever.
Notation reference
| Term | Scheme | Meaning |
|---|---|---|
| Player | (make-player name strategies) | A decision-maker with a set of strategies |
| Strategy | 'A, 'B, ... | A complete plan for playing the game |
| Payoff | (payoff s1 s2) | What each player gets for a given outcome |
| Rational choice | (rational-choice options val) | Pick the option that maximizes your payoff |
| Perfect information | -- | All players know all options and outcomes |
Neighbors
Next sections
- 🎲 Nordstrom §1.2 — game matrices: payoffs in a table
- 🎲 Nordstrom §1.3 — zero-sum games: your gain is my loss
- 🎲 Nordstrom §2.2 — dominated strategies: delete what is always worse
Related paper pages
- 🍞 Hedges 2018 — compositional game theory formalizes these ideas categorically
Foundations (Wikipedia)