Nash Equilibrium: Existence Proof
110 words
1 min read
Visual companion
Python
Type and operator map
Python Week 1: the first filter for runtime behavior
View
Revision summary
What this note is really saying
Short form
# Nash Equilibrium: Existence Proof ## Nash's Theorem **Theorem (Nash, 1950):** Every finite game has at least one Nash equilibrium (possibly in mixed strategies). **Proof sketch (using Kakutani fixed-point theorem):** Define a correspondence $\phi: \Sigma \to \Sigma$ where $\Sigma$ is the set of mixed strategy prof...

Nash Equilibrium: Existence Proof
Nash's Theorem
Theorem (Nash, 1950): Every finite game has at least one Nash equilibrium (possibly in mixed strategies).
Proof sketch (using Kakutani fixed-point theorem): Define a correspondence ϕ:Σ→Σ where Σ is the set of mixed strategy profiles, and ϕ(σ) is the set of profiles where each player best-responds to σ−i. By Kakutani's theorem, ϕ has a fixed point σ∗∈ϕ(σ∗), which is a Nash equilibrium.
Computing Nash Equilibria
For 2×2 games: Solve indifference conditions as we did in Week 3. For larger games: Lemke-Howson algorithm (complementary pivoting). General case: Linear complementarity problem (LCP).
Join Discord
PreviousNash EquilibriumNextMixed Strategy Equilibrium