Intuition. Hierarchy of Games in game theory.

Pure Strategy

def. Pure Strategy Nash Equilibrium is a set of strategies (one for each player) which is the best response strategy of each other’s move; i.e. you can’t deviate without destabilizing the equilibrium.

where:

  • : strategies of all other players (excluding -th player)
  • : strategy for -th player
  • : strategy set for -th player
  • : cost function for -th player

How to Find PNE

  • In Simultaenous Games: Use the Corner method
  • In Sequential Games:
    • Make the Decision Tree into a Payoff Matrix, and use the Corner method
    • Just test out every combination of Strategy

alg. Corner Method to find NE. Finding the Nash Equilibrium in a payoff matrix.

  1. For each player:
  2. For each other player’s move; highlight the line of the best response → When both the left and top lines are highlighted that is NE.

Example. Driving left or Right:

Subgame Perfect Nash Equilibrium (for Pure Strategy)

def. A Non-credible threat is when the follower in a sequential move game says: “If I can’t win, I’ll take you down no matter how much it costs to me.”

  • In the above game, is an example of a non-credible threat because when Player 1 chooses L, Player 2’s best response is L—but Player 2 threatens to go R. This is because they want the best possible outcome for them,

def. Subgame Perfect Nash Equilibria (SPNE) are NE where the follower will only choose strategies that are best for them, and can’t threaten the leader beforehand with non-credible threats.

alg. Backwards Induction. To find the SPNE of a game, use Backwards Induction:

  1. Determine the last player’s best strategy
  2. The second-last player knows what the last player will do. Then determine what the second-last player will do.
  3. Continue solving until the first player.
  • Example. Caterpillar game unravelingUntitled|400
  • , payoff is (1,0) which is a lot worse off that global optimal.

Mixed Strategy Nash Equilibrium

def. Mixed Strategy Nash Equilibrium

  1. Each player chooses a distribution over strategy set is public knowledge
  2. At runtime, each player chooses strategy independent of other players
  3. is a Mixed Nash Equilibrium if:

thm. (Existence of MNE, John Nash) Any game with finite players and finite set of strategies for each player has an MNE. Proof. The proof as three parts: the proof of Sperner’s Lemma, using it to prove Brouwer’s Fixed Point Theorem, and then reducing a mixed Nash Equillibrium to a fixed point in Brouwer’s Fixed Point theorem. We will only reveal the last part in this proof. Consider the following:

  • Agent has the strategy set . There are agents. Their payoff is .
  • is the mixed strategy set of agent with each corresponding to the probability of each strategy in .
    • This makes it a unit simplex in
  • is all possible combinations of mixed strategy of all agents.
    • is a compact set, and we want to apply Brouwer’s theorem on this space Let function be:

Then, let function be defined . Then is continuous, thus there exists a point in which . This means at there is no more expected payoff maximization that can be made by any individual, i.e. MNE.

alg. Computation of MNE using Linear Programming.

  • The payoff matrix denotes what the column player (=minimizing player) gives to row player (=maximizing player)
  1. Row player thinks that column player will minimize exchange (stackleberg solution)
  2. Column player thinks that row player will maximize exchange (stackleberg solution)
  3. Strategy tuple that satisfies both conditions is an MNE.

Correlated Nash Equilibrium (CNE)

def. Correlated Nash Equilibrium

  1. 3rd party computes joint distribution of all parties , to joint distribution ← this joint distribution is public knowledge.
  2. At runtime, 3rd party draws strategy vector
  3. 3rd party tells player to play
  4. Player computes the posterior distribution of what other players will do:
  5. is a Correlated Nash Equilibrium iff:

alg. CNE Computation Using Integer Linear Programming:

Example of Correlated Nash Equilibirum: Traffic Lights game:

Imperfect Information

Baysian Nash Equilibrium

In a

  • mixed strategy (players each have probability of action)

  • one-shot game def. Baysian Nash Equilibirum is a set of strategies that are mutual best responses given a certain probability of other’s actions

  • For a BNE to exist, each person’s strategy must assign probabilities such that the opponent is neutral to each of their options. (if not, it means there is a dominant strategy for the opponent)

def. Perfect Baysian Equilibirum. In a mixed strategy, finitely repeated game, with each player having a belief a Perfect Baysian Equilibirum is one that

  • the player’s beliefs are consistent with strategy (rational)
  • is a BNE for each subgame → Signaling Game is a good example