Reference · Cheat Sheet 06

Backward Induction

Core idea: look forward, reason backward — solve sequential games by starting at the last decision nodes, finding what each player will rationally do there, then folding those choices back to the beginning. The surviving path is the prediction.

The routine (4 steps)

  1. Draw the tree in order of play. Root = first mover. Branches = their choices. Sub-branches = the next mover's choices. Leaves = final payoffs (you, them) for every terminal path.
  2. At each final decision node, pick the chooser's best payoff. The player at that node acts in their own interest when the moment arrives — prior threats, promises, or bluster do not change this.
  3. Prune the unchosen branch; fold the chosen payoff back. The parent node now "knows" what the sub-game delivers and can compare its own options.
  4. Repeat toward the root. The path that survives all pruning is the subgame perfect equilibrium — what rational players will actually do.

Entry game — worked example

YOU (entrant) ├── Stay Out ──────── You: 0 · Incumbent: 10 │ └── Enter │ └── INCUMBENT ├── ~~Fight~~ ──── You: −2 · Incumbent: 2 ← pruned (2 < 5) └── ★ Accommodate ★ You: 4 · Incumbent: 5 ← chosen

Backward induction:

Credibility — the most important corollary

A threat or promise is credible only if carrying it out is in the actor's best interest when that node is actually reached.

In the entry game, the incumbent may announce: "enter and we'll fight." Backward induction reveals this is non-credible — Fight pays 2, Accommodate pays 5. A rational incumbent will accommodate regardless of the announcement. You should enter.

Test every threat and promise: go to the actor's node, compare their payoffs. If following through is worse for them than the alternative, the threat is empty. Ignore it.

Quick reference: simultaneous vs sequential

When to use which tool
SimultaneousSequential
Players chooseAt the same timeIn a defined order
ToolPayoff matrixGame tree
SolutionNash equilibriumBackward induction → SPE
Key questionBest response to every mixWhat will they do when it's their turn?

Glossary (quick)