Extensive Form Games: Backward Induction and Imperfect Information Games

Size: px
Start display at page:

Download "Extensive Form Games: Backward Induction and Imperfect Information Games"

Transcription

1 Extensive Form Games: Backward Induction and Imperfect Information Games CPSC 532A Lecture 10 October 12, 2006 Extensive Form Games: Backward Induction and Imperfect Information Games CPSC 532A Lecture 10, Slide 1

2 Lecture Overview Recap Backward Induction Imperfect-Information Extensive-Form Games Extensive Form Games: Backward Induction and Imperfect Information Games CPSC 532A Lecture 10, Slide 2

3 Introduction The normal form game representation does not incorporate any notion of sequence, or time, of the actions of the players The extensive form is an alternative representation that makes the temporal structure explicit. Two variants: perfect information extensive-form games imperfect-information extensive-form games Extensive Form Games: Backward Induction and Imperfect Information Games CPSC 532A Lecture 10, Slide 3

4 efinition A (finite) perfect-information game (in extensive form) is a tuple G = (N, A, H, Z, χ, ρ, σ, u), where N is a set of n players A = (A 1,..., A n ) is a set of actions for each player H is a set of non-terminal choice nodes Z is a set of terminal nodes, disjoint from H χ : H 2 A is the action function assigns to each choice node a set of possible actions ρ : H N is the player function assigns to each non-terminal node a player i N who chooses an action at that node Extensive Form Games: Backward Induction and Imperfect Information Games CPSC 532A Lecture 10, Slide 4

5 efinition A (finite) perfect-information game (in extensive form) is a tuple G = (N, A, H, Z, χ, ρ, σ, u), where χ : H 2 A is the action function assigns to each choice node a set of possible actions ρ : H N is the player function assigns to each non-terminal node a player i N who chooses an action at that node σ : H A H Z is the successor function maps a choice node and an action to a new choice node or terminal node such that for all h 1, h 2 H and a 1, a 2 A, if σ(h 1, a 1 ) = σ(h 2, a 2 ) then h 1 = h 2 and a 1 = a 2 u = (u 1,..., u n ), where u i : Z R is a utility function for player i on the terminal nodes Z Note: the choice nodes form a tree, so we can identify a node with its history. Extensive Form Games: Backward Induction and Imperfect Information Games CPSC 532A Lecture 10, Slide 4

6 Pure Strategies Overall, a pure strategy for a player in a perfect-information game is a complete specification of which deterministic action to take at every node belonging to that player. efinition Let G = (N, A, H, Z, χ, ρ, σ, u) be a perfect-information extensive-form game. Then the pure strategies of player i consist of the cross product χ(h) h H,ρ(h)=i Extensive Form Games: Backward Induction and Imperfect Information Games CPSC 532A Lecture 10, Slide 5

7 Nash Equilibria Given our new definition of pure strategy, we are able to reuse our old definitions of: mixed strategies best response Nash equilibrium Theorem Every perfect information game in extensive form has a PSNE This is easy to see, since the players move sequentially. Extensive Form Games: Backward Induction and Imperfect Information Games CPSC 532A Lecture 10, Slide 6

8 0) yes Recap no yes no Backward Induction yes Imperfect-Information Extensive-Form Games (2,0) (0,0) (1,1) (0,0) (0,2) Induced Normal Form Figure 5.1 The Sharing game. t the definition contains a subtlety. An agent s strategy requires a decision ce node, regardless of whether or not it is possible to reach that node given oice nodes. In the Sharing game above the situation is straightforward three pure strategies, and player 2 has eight (why?). But now consider the in Figure 5.2. In fact, the connection to the normal form is even tighter we can convert an extensive-form game into normal form 2 C E F 1 (3,8) A (8,3) 1 B (5,5) 2 G H (2,10) (1,0) CE CF E F AG 3, 8 3, 8 8, 3 8, 3 AH 3, 8 3, 8 8, 3 8, 3 BG 5, 5 2, 10 5, 5 2, 10 BH 5, 5 1, 0 5, 5 1, 0 Figure 5.2 A perfect-information game in extensive form. define a complete strategy for this game, each of the players must choose each of his two choice nodes. Thus we can enumerate the pure strategies s as follows.,g),(a,h),(b,g),(b,h)} Extensive Form Games: Backward Induction and Imperfect Information Games CPSC 532A Lecture 10, Slide 7

9 Subgame Perfection efine subgame of G rooted at h: the restriction of G to the descendents of H. efine set of subgames of G: subgames of G rooted at nodes in G s is a subgame perfect equilibrium of G iff for any subgame G of G, the restriction of s to G is a Nash equilibrium of G Notes: since G is its own subgame, every SPE is a NE. this definition rules out non-credible threats Extensive Form Games: Backward Induction and Imperfect Information Games CPSC 532A Lecture 10, Slide 8

10 Lecture Overview Recap Backward Induction Imperfect-Information Extensive-Form Games Extensive Form Games: Backward Induction and Imperfect Information Games CPSC 532A Lecture 10, Slide 9

11 Centipede Game 5 Reasoning and Computing with the Extensive Form 1 A 2 A 1 A 2 A 1 A (3,5) (1,0) (0,2) (3,1) (2,4) (4,3) Figure 5.9 Play this as a fun game... The centipede game place. In other words, you have reached a state to which your analysis has given a probability of zero. How should you amend your beliefs and course of action based on this measure-zero event? It turns out this seemingly small inconvenience actually raises a fundamental problem in game theory. We will not develop the subject further here, but let us only mention that there exist different accounts of this situation, and they depend on the probabilistic assumptions made, on what is common knowledge (in Extensive Form Games: Backward Induction and Imperfect Information Games CPSC 532A Lecture 10, Slide 10

12 Computing Subgame Perfect Equilibria Idea: Identify the equilibria in the bottom-most trees, and adopt these as one moves up the tree function BackwardInduction (node h) returns u(h) if h Z then return u(h) {h is a terminal node} best util for all a χ(h) do {all actions available at node h} util at child BackwardInduction(σ(h, a)) if util at child ρ(h) > best util ρ(h) then best util util at child end if end for return best util util at child is a vector denoting the utility for each player the procedure doesn t return an equilibrium strategy, but rather labels each node with a vector of real numbers. This labeling can be seen as an extension of the game s utility function to the non-terminal nodes The equilibrium strategies: take the best action at each node. Extensive Form Games: Backward Induction and Imperfect Information Games CPSC 532A Lecture 10, Slide 11

13 Backward Induction 5 Reasoning and Computing with the Extensive Form 1 A 2 A 1 A 2 A 1 A (3,5) (1,0) (0,2) (3,1) (2,4) (4,3) Figure 5.9 The centipede game What happens when we use this procedure on Centipede? In the only equilibrium, player 1 goes down in the first move. place. In other words, you have reached a state to which your analysis has given a probability However, of zero. How thisshould outcome you amend is Pareto-dominated your beliefs and courseby ofall action but based one on this measure-zero other outcome. event? It turns out this seemingly small inconvenience actually raises Twoa fundamental considerations: problem in game theory. We will not develop the subject further here, but let us only mention that there exist different accounts of this situation, and they depend practical: on the probabilistic human subjects assumptions don t made, on go what down is common right knowledge away (in particular, theoretical: whether there what is common should knowledge you of do rationality), as player and 2 on if exactly player how 1 one doesn t revises one s go down? beliefs in the face of measure zero events. The last question is intimately related to the subject SPE of analysis belief revision says to discussed go down. in Chapter However, 2. that same analysis says that P1 would already have gone down. How do you 5.2 Imperfect-information update yourextensive-form beliefs upon observation games of a measure zero event? Up to this point, but in our if player discussion 1 knows of extensive-form that you ll games dowe something have allowedelse, players it is to specify the action rational that they for would himtake notat to every gochoice downnode anymore... of the game. a paradox This implies that players know there s node a whole they are literature in, and recalling on thisthat question in such games we equate Extensive Formnodes Games: with Backward the histories Induction thatand ledimperfect to them all Information the prior Games choices, includingcpsc those532a of other Lecture 10, Slide 12

14 Lecture Overview Recap Backward Induction Imperfect-Information Extensive-Form Games Extensive Form Games: Backward Induction and Imperfect Information Games CPSC 532A Lecture 10, Slide 13

15 Intro Up to this point, in our discussion of extensive-form games we have allowed players to specify the action that they would take at every choice node of the game. This implies that players know the node they are in and all the prior choices, including those of other agents. We may want to model agents needing to act with partial or no knowledge of the actions taken by others, or even themselves. This is possible using imperfect information extensive-form games. each player s choice nodes are partitioned into information sets if two choice nodes are in the same information set then the agent cannot distinguish between them. Extensive Form Games: Backward Induction and Imperfect Information Games CPSC 532A Lecture 10, Slide 14

16 Formal definition efinition An imperfect-information games (in extensive form) is a tuple (N, A, H, Z, χ, ρ, σ, u, I), where (N, A, H, Z, χ, ρ, σ, u) is a perfect-information extensive-form game, and I = (I 1,..., I n ), where I i = (I i,1,..., I i,ki ) is an equivalence relation on (that is, a partition of) {h H : ρ(h) = i} with the property that χ(h) = χ(h ) and ρ(h) = ρ(h ) whenever there exists a j for which h Ii, j and h Ii, j. Extensive Form Games: Backward Induction and Imperfect Information Games CPSC 532A Lecture 10, Slide 15

17 layer Recap would be able tobackward distinguish Inductionthe nodes). Thus, Imperfect-Information if I I i is an Extensive-Form equivalence Games clas e can unambiguously use the notation χ(i) to denote the set of actions available layer Example i at any node in information set I. 1 L R 2 2 (1,1) A B 1 l r l r (0,0) (2,4) (2,4) (0,0) Figure 5.10 An imperfect-information game. What are the equivalence classes for each player? What are the pure strategies for each player? Consider the imperfect-information extensive-form game shown in Figure I his game, player 1 has two information sets: the set including the top choice node, an he set including the bottom choice nodes. Note that the two bottom choice nodes he second information set have the same set of possible actions. We can regard play as Extensive not knowing Form Games: whether Backward Induction player and2imperfect choseinformation A or BGames when she makes CPSC 532A herlecture choice 10, Slide betwee 16

18 layer Recap would be able tobackward distinguish Inductionthe nodes). Thus, Imperfect-Information if I I i is an Extensive-Form equivalence Games clas e can unambiguously use the notation χ(i) to denote the set of actions available layer Example i at any node in information set I. 1 L R 2 2 (1,1) A B 1 l r l r (0,0) (2,4) (2,4) (0,0) Figure 5.10 An imperfect-information game. What are the equivalence classes for each player? What are the pure strategies for each player? Consider the imperfect-information extensive-form game shown in Figure I choice of an action in each equivalence class. his game, player 1 has two information sets: the set including the top choice node, an he set including Formally, the bottom the pure choice strategies nodes. of Note player that i the consist two of bottom the cross choice nodes he second information product Ii,j set I have i χ(i the i,j ). same set of possible actions. We can regard play as Extensive not knowing Form Games: whether Backward Induction player and2imperfect choseinformation A or BGames when she makes CPSC 532A herlecture choice 10, Slide betwee 16

19 Normal-form games 5 Reasoning and Computing with the Extensive We can represent any normal form game. 1 C 2 c d c d (-1,-1) (-4,0) (0,-4) (-3,-3) Figure Note 5.11 that it The would Prisoner s also be ilemma the same game if we in put extensive player 2 form. at the root node. ecall that perfect-information games were not expressive enough to captu soner s Extensive Form ilemma Games: Backward gameinduction and many and Imperfect other Information ones. Games In contrast, CPSC as is 532A obvious Lecture 10, from Slide 17 th

20 Induced Normal Form Same as before: enumerate pure strategies for all agents Mixed strategies are just mixtures over the pure strategies as before. Nash equilibria are also preserved. Note that we ve now defined both mapping from NF games to IIEF and a mapping from IIEF to NF. what happens if we apply each mapping in turn? we might not end up with the same game, but we do get one with the same strategy spaces and equilibria. Extensive Form Games: Backward Induction and Imperfect Information Games CPSC 532A Lecture 10, Slide 18

21 Randomized Strategies It turns out there are two meaningfully different kinds of randomized strategies in imperfect information extensive form games mixed strategies behavioral strategies Mixed strategy: randomize over pure strategies Behavioral strategy: independent coin toss every time an information set is encountered Extensive Form Games: Backward Induction and Imperfect Information Games CPSC 532A Lecture 10, Slide 19

22 Figure 5.1 The Sharing game. Recap Backward Induction Imperfect-Information Extensive-Form Games Randomized strategies example Notice that the definition contains a subtlety. An agent s strategy requires a decision at each choice node, regardless of whether or not it is possible to reach that node given the other choice nodes. In the Sharing game above the situation is straightforward player 1 has three pure strategies, and player 2 has eight (why?). But now consider the game shown in Figure A 1 B 2 C E F 1 (3,8) (8,3) (5,5) G H (2,10) (1,0) Figure 5.2 A perfect-information game in extensive form. In order to define a complete strategy for this game, each of the players must choose an action at each of his two choice nodes. Thus we can enumerate the pure strategies of the players as follows. Give an example of a behavioral strategy: S 1 = {(A,G),(A,H),(B,G),(B,H)} S 2 = {(C,E),(C,F),(,E),(,F)} It is important to note that we have to include the strategies (A,G) and (A,H), even though once A is chosen the G-versus-H choice is moot. The definition of best response and Nash equilibria in this game are exactly as they are in for normal form games. Indeed, this example illustrates how every perfectinformation game can be converted to an equivalent normal form game. For example, the perfect-information game of Figure 5.2 can be converted into the normal form image of the game, shown in Figure 5.3. Clearly, the strategy spaces of the two games are Multi Agent Systems, draft of September 19, 2006 Extensive Form Games: Backward Induction and Imperfect Information Games CPSC 532A Lecture 10, Slide 20

23 Figure 5.1 The Sharing game. Recap Backward Induction Imperfect-Information Extensive-Form Games Randomized strategies example Notice that the definition contains a subtlety. An agent s strategy requires a decision at each choice node, regardless of whether or not it is possible to reach that node given the other choice nodes. In the Sharing game above the situation is straightforward player 1 has three pure strategies, and player 2 has eight (why?). But now consider the game shown in Figure A 1 B 2 C E F 1 (3,8) (8,3) (5,5) G H (2,10) (1,0) Figure 5.2 A perfect-information game in extensive form. In order to define a complete strategy for this game, each of the players must choose an action at each of his two choice nodes. Thus we can enumerate the pure strategies of the players as follows. Give an example of a behavioral strategy: A with probability.5 and G with probability.3 S 1 = {(A,G),(A,H),(B,G),(B,H)} Give an Sexample 2 = {(C,E),(C,F),(,E),(,F)} of a mixed strategy that is not a behavioral strategy: It is important to note that we have to include the strategies (A,G) and (A,H), even though once A is chosen the G-versus-H choice is moot. The definition of best response and Nash equilibria in this game are exactly as they are in for normal form games. Indeed, this example illustrates how every perfectinformation game can be converted to an equivalent normal form game. For example, the perfect-information game of Figure 5.2 can be converted into the normal form image of the game, shown in Figure 5.3. Clearly, the strategy spaces of the two games are Multi Agent Systems, draft of September 19, 2006 Extensive Form Games: Backward Induction and Imperfect Information Games CPSC 532A Lecture 10, Slide 20

24 Figure 5.1 The Sharing game. Recap Backward Induction Imperfect-Information Extensive-Form Games Randomized strategies example Notice that the definition contains a subtlety. An agent s strategy requires a decision at each choice node, regardless of whether or not it is possible to reach that node given the other choice nodes. In the Sharing game above the situation is straightforward player 1 has three pure strategies, and player 2 has eight (why?). But now consider the game shown in Figure A 1 B 2 C E F 1 (3,8) (8,3) (5,5) G H (2,10) (1,0) Figure 5.2 A perfect-information game in extensive form. In order to define a complete strategy for this game, each of the players must choose an action at each of his two choice nodes. Thus we can enumerate the pure strategies of the players as follows. Give an example of a behavioral strategy: A with probability.5 and G with probability.3 S 1 = {(A,G),(A,H),(B,G),(B,H)} Give an Sexample 2 = {(C,E),(C,F),(,E),(,F)} of a mixed strategy that is not a behavioral strategy: It is important to note that we have to include the strategies (A,G) and (A,H), even though once A is chosen the G-versus-H choice is moot. (.6(A, The definition G),.4(B, of best response H)) and (why Nash equilibria not?) in this game are exactly as they are in for normal form games. Indeed, this example illustrates how every perfectinformation game can be converted to an equivalent normal form game. For example, the perfect-information game of Figure 5.2 can be converted into the normal form image of the game, shown in Figure 5.3. Clearly, the strategy spaces of the two games are In this game every behavioral strategy corresponds to a mixed strategy... Multi Agent Systems, draft of September 19, 2006 Extensive Form Games: Backward Induction and Imperfect Information Games CPSC 532A Lecture 10, Slide 20

25 Games of imperfect recall 5.2 Imperfect-information extensive-form games 121 L 1 L R 2 U R 1,0 100,100 5,1 2,2 Figure 5.12 A game with imperfect recall What is the space of pure strategies in this game? librium. Note in particular that in a mixed strategy, agent 1 decides probabilistically whether to play L or R in his information set, but once he decides he plays that pure strategy consistently. Thus the payoff of 100 is irrelevant in the context of mixed strategies. On the other hand, with behavioral strategies agent 1 gets to randomize afresh each time he finds himself in the information set. Noting that the pure strategy is weakly dominant for agent 2 (and in fact is the unique best response to all strategies of agent 1 other than the pure strategy L), agent 1 computes the best response to as follows. If he uses the behavioral strategy (p,1 p) (that is, choosing L with probability p each time he finds himself in the information set), his expected payoff is 1 p p(1 p) + 2 (1 p) The expression simplifies to 99p p + 2, whose maximum is obtained at p = 98/198. Thus (R,) = ((0,1),(0,1)) is no longer an equilibrium in behavioral strategies, and instead we get the equilibrium ((98/198,100/198),(0,1)). There is, however, a broad class of imperfect-information games in which the expressive power of mixed and behavioral strategies coincides. This is the class of games Extensive Form Games: Backward Induction and Imperfect Information Games CPSC 532A Lecture 10, Slide 21 of perfect recall. Intuitively speaking, in these games no player forgets any information

26 Games of imperfect recall 5.2 Imperfect-information extensive-form games 121 L 1 L R 2 U R 1,0 100,100 5,1 2,2 Figure 5.12 A game with imperfect recall What is the space of pure strategies in this game? librium. Note in particular that in a mixed strategy, agent 1 decides probabilistically whether to play L or R in his information set, but once he decides he plays that pure strategy consistently. Thus the payoff of 100 is irrelevant in the context of mixed strategies. On the other hand, with behavioral strategies agent 1 gets to randomize afresh each time he finds himself in the information set. Noting that the pure strategy is weakly dominant for agent 2 (and in fact is the unique best response to all strategies of agent 1 other than the pure strategy L), agent 1 computes the best response to as follows. If he uses the behavioral strategy (p,1 p) (that is, choosing L with probability p each time he finds himself in the information set), his expected payoff is 1: (L, R); 2: (U, ) 1 p p(1 p) + 2 (1 p) The expression simplifies to 99p p + 2, whose maximum is obtained at p = 98/198. Thus (R,) = ((0,1),(0,1)) is no longer an equilibrium in behavioral strategies, and instead we get the equilibrium ((98/198,100/198),(0,1)). There is, however, a broad class of imperfect-information games in which the expressive power of mixed and behavioral strategies coincides. This is the class of games Extensive Form Games: Backward Induction and Imperfect Information Games CPSC 532A Lecture 10, Slide 21 of perfect recall. Intuitively speaking, in these games no player forgets any information

27 Games of imperfect recall 5.2 Imperfect-information extensive-form games 121 L 1 L R 2 U R 1,0 100,100 5,1 2,2 Figure 5.12 A game with imperfect recall What is the space of pure strategies in this game? librium. Note in particular that in a mixed strategy, agent 1 decides probabilistically whether to play L or R in his information set, but once he decides he plays that pure strategy consistently. Thus the payoff of 100 is irrelevant in the context of mixed strategies. On the other hand, with behavioral strategies agent 1 gets to randomize afresh each time he finds himself in the information set. Noting that the pure strategy is weakly dominant for agent 2 (and in fact is the unique best response to all strategies of agent 1 other than the pure strategy L), agent 1 computes the best response to as follows. If he uses the behavioral strategy (p,1 p) (that is, choosing L with probability p each time he finds himself in the information set), his expected payoff is 1: (L, R); 2: (U, ) What is the mixed strategy equilibrium? 1 p p(1 p) + 2 (1 p) The expression simplifies to 99p p + 2, whose maximum is obtained at p = 98/198. Thus (R,) = ((0,1),(0,1)) is no longer an equilibrium in behavioral strategies, and instead we get the equilibrium ((98/198,100/198),(0,1)). There is, however, a broad class of imperfect-information games in which the expressive power of mixed and behavioral strategies coincides. This is the class of games Extensive Form Games: Backward Induction and Imperfect Information Games CPSC 532A Lecture 10, Slide 21 of perfect recall. Intuitively speaking, in these games no player forgets any information

28 Games of imperfect recall 5.2 Imperfect-information extensive-form games 121 L 1 L R 2 U R 1,0 100,100 5,1 2,2 Figure 5.12 A game with imperfect recall What is the space of pure strategies in this game? librium. Note in particular that in a mixed strategy, agent 1 decides probabilistically whether to play L or R in his information set, but once he decides he plays that pure strategy consistently. Thus the payoff of 100 is irrelevant in the context of mixed strategies. On the other hand, with behavioral strategies agent 1 gets to randomize afresh each time he finds himself in the information set. Noting that the pure strategy is weakly dominant for agent 2 (and in fact is the unique best response to all strategies of agent 1 other than the pure strategy L), agent 1 computes the best response to as follows. If he uses the behavioral strategy (p,1 p) (that is, choosing L with probability p each time he finds himself in the information set), his expected payoff is 1: (L, R); 2: (U, ) What is the mixed strategy equilibrium? Observe that is dominant for 2. R, is better for 1 than L,, so R, is an equilibrium. 1 p p(1 p) + 2 (1 p) The expression simplifies to 99p p + 2, whose maximum is obtained at p = 98/198. Thus (R,) = ((0,1),(0,1)) is no longer an equilibrium in behavioral strategies, and instead we get the equilibrium ((98/198,100/198),(0,1)). There is, however, a broad class of imperfect-information games in which the expressive power of mixed and behavioral strategies coincides. This is the class of games Extensive Form Games: Backward Induction and Imperfect Information Games CPSC 532A Lecture 10, Slide 21 of perfect recall. Intuitively speaking, in these games no player forgets any information

29 Games of imperfect recall 5.2 Imperfect-information extensive-form games 121 L 1 L R 2 U R 1,0 100,100 5,1 2,2 Figure 5.12 A game with imperfect recall What is the space of pure strategies in this game? librium. Note in particular that in a mixed strategy, agent 1 decides probabilistically whether to play L or R in his information set, but once he decides he plays that pure strategy consistently. Thus the payoff of 100 is irrelevant in the context of mixed strategies. On the other hand, with behavioral strategies agent 1 gets to randomize afresh each time he finds himself in the information set. Noting that the pure strategy is weakly dominant for agent 2 (and in fact is the unique best response to all strategies of agent 1 other than the pure strategy L), agent 1 computes the best response to as follows. If he uses the behavioral strategy (p,1 p) (that is, choosing L with probability p each time he finds himself in the information set), his expected payoff is 1: (L, R); 2: (U, ) What is the mixed strategy equilibrium? Observe that is dominant for 2. R, is better for 1 than L,, so R, is an equilibrium. 1 p p(1 p) + 2 (1 p) The expression simplifies to 99p p + 2, whose maximum is obtained at p = 98/198. Thus (R,) = ((0,1),(0,1)) is no longer an equilibrium in behavioral strategies, and instead we get the equilibrium ((98/198,100/198),(0,1)). There is, however, a broad class of imperfect-information games in which the expressive power of mixed and behavioral strategies coincides. This is the class of games Extensive Form Games: Backward Induction and Imperfect Information Games CPSC 532A Lecture 10, Slide 21 of perfect recall. Intuitively speaking, in these games no player forgets any information

30 Games of imperfect recall 5.2 Imperfect-information extensive-form games 121 L 1 L R 2 U R 1,0 100,100 5,1 2,2 Figure 5.12 A game with imperfect recall What is an equilibrium in behavioral strategies? librium. Note in particular that in a mixed strategy, agent 1 decides probabilistically whether to play L or R in his information set, but once he decides he plays that pure strategy consistently. Thus the payoff of 100 is irrelevant in the context of mixed strategies. On the other hand, with behavioral strategies agent 1 gets to randomize afresh each time he finds himself in the information set. Noting that the pure strategy is weakly dominant for agent 2 (and in fact is the unique best response to all strategies of agent 1 other than the pure strategy L), agent 1 computes the best response to as follows. If he uses the behavioral strategy (p,1 p) (that is, choosing L with probability p each time he finds himself in the information set), his expected payoff is 1 p p(1 p) + 2 (1 p) The expression simplifies to 99p p + 2, whose maximum is obtained at p = 98/198. Thus (R,) = ((0,1),(0,1)) is no longer an equilibrium in behavioral strategies, and instead we get the equilibrium ((98/198,100/198),(0,1)). There is, however, a broad class of imperfect-information games in which the expressive power of mixed and behavioral strategies coincides. This is the class of games of perfect recall. Intuitively speaking, in these games no player forgets any information he knew about moves made so far; in particular, he remembers precisely all his own Extensive Form Games: Backward moves. Induction Formally: and Imperfect Information Games CPSC 532A Lecture 10, Slide 22

31 Games of imperfect recall 5.2 Imperfect-information extensive-form games 121 L 1 L R 2 U R 1,0 100,100 5,1 2,2 Figure 5.12 A game with imperfect recall What is an equilibrium in behavioral strategies? librium. Note in particular that in a mixed strategy, agent 1 decides probabilistically whether to play L or R in his information set, but once he decides he plays that pure again, strategy strongly consistently. Thus dominant the payoff of 100 isfor irrelevant 2 in the context of mixed strategies. On other hand, with behavioral strategies agent 1 gets to randomize afresh if 1 uses each time the he finds behavioural himself in the information strategy set. Noting (p, that 1 the pure p), strategy his is expected weakly dominant for agent 2 (and in fact is the unique best response to all strategies of utility is 1 p p(1 p) + 2 (1 p) agent 1 other than the pure strategy L), agent 1 computes the best response to as follows. If he uses the behavioral strategy (p,1 p) (that is, choosing L with probability simplifies p each time to he 99p p + 2 finds himself in the information set), his expected payoff is maximum at p = 1 98/198 p p(1 p) + 2 (1 p) thus equilibrium is (98/198, 100/198), (0, 1) The expression simplifies to 99p p + 2, whose maximum is obtained at p = 98/198. Thus (R,) = ((0,1),(0,1)) is no longer an equilibrium in behavioral strategies, and instead we get the equilibrium ((98/198,100/198),(0,1)). Thus, we can have behavioral strategies that are different There is, however, a broad class of imperfect-information games in which the expressive power of mixed and behavioral strategies coincides. This is the class of games from mixed of perfect strategies. recall. Intuitively speaking, in these games no player forgets any information he knew about moves made so far; in particular, he remembers precisely all his own Extensive Form Games: Backward moves. Induction Formally: and Imperfect Information Games CPSC 532A Lecture 10, Slide 22

Extensive Form Games: Backward Induction and Imperfect Information Games

Extensive Form Games: Backward Induction and Imperfect Information Games Extensive Form Games: Backward Induction and Imperfect Information Games CPSC 532A Lecture 10 Extensive Form Games: Backward Induction and Imperfect Information Games CPSC 532A Lecture 10, Slide 1 Lecture

More information

Backward Induction. ISCI 330 Lecture 14. March 1, Backward Induction ISCI 330 Lecture 14, Slide 1

Backward Induction. ISCI 330 Lecture 14. March 1, Backward Induction ISCI 330 Lecture 14, Slide 1 ISCI 330 Lecture 4 March, 007 ISCI 330 Lecture 4, Slide Lecture Overview Recap ISCI 330 Lecture 4, Slide Subgame Perfection Notice that the definition contains a subtlety. n agent s strategy requires a

More information

Extensive Form Games and Backward Induction

Extensive Form Games and Backward Induction Recap Subgame Perfection ackward Induction Extensive Form ames and ackward Induction ISCI 330 Lecture 3 February 7, 007 Extensive Form ames and ackward Induction ISCI 330 Lecture 3, Slide Recap Subgame

More information

Imperfect Information Extensive Form Games

Imperfect Information Extensive Form Games Imperfect Information Extensive Form Games ISCI 330 Lecture 15 March 6, 2007 Imperfect Information Extensive Form Games ISCI 330 Lecture 15, Slide 1 Lecture Overview 1 Recap 2 Imperfect Information Extensive

More information

Repeated Games. ISCI 330 Lecture 16. March 13, Repeated Games ISCI 330 Lecture 16, Slide 1

Repeated Games. ISCI 330 Lecture 16. March 13, Repeated Games ISCI 330 Lecture 16, Slide 1 Repeated Games ISCI 330 Lecture 16 March 13, 2007 Repeated Games ISCI 330 Lecture 16, Slide 1 Lecture Overview Repeated Games ISCI 330 Lecture 16, Slide 2 Intro Up to this point, in our discussion of extensive-form

More information

Dynamic Games: Backward Induction and Subgame Perfection

Dynamic Games: Backward Induction and Subgame Perfection Dynamic Games: Backward Induction and Subgame Perfection Carlos Hurtado Department of Economics University of Illinois at Urbana-Champaign hrtdmrt2@illinois.edu Jun 22th, 2017 C. Hurtado (UIUC - Economics)

More information

Topic 1: defining games and strategies. SF2972: Game theory. Not allowed: Extensive form game: formal definition

Topic 1: defining games and strategies. SF2972: Game theory. Not allowed: Extensive form game: formal definition SF2972: Game theory Mark Voorneveld, mark.voorneveld@hhs.se Topic 1: defining games and strategies Drawing a game tree is usually the most informative way to represent an extensive form game. Here is one

More information

Dynamic games: Backward induction and subgame perfection

Dynamic games: Backward induction and subgame perfection Dynamic games: Backward induction and subgame perfection ectures in Game Theory Fall 04, ecture 3 0.0.04 Daniel Spiro, ECON300/400 ecture 3 Recall the extensive form: It specifies Players: {,..., i,...,

More information

Extensive Form Games. Mihai Manea MIT

Extensive Form Games. Mihai Manea MIT Extensive Form Games Mihai Manea MIT Extensive-Form Games N: finite set of players; nature is player 0 N tree: order of moves payoffs for every player at the terminal nodes information partition actions

More information

The extensive form representation of a game

The extensive form representation of a game The extensive form representation of a game Nodes, information sets Perfect and imperfect information Addition of random moves of nature (to model uncertainty not related with decisions of other players).

More information

Introduction to Game Theory

Introduction to Game Theory Introduction to Game Theory Part 2. Dynamic games of complete information Chapter 4. Dynamic games of complete but imperfect information Ciclo Profissional 2 o Semestre / 2011 Graduação em Ciências Econômicas

More information

Domination Rationalizability Correlated Equilibrium Computing CE Computational problems in domination. Game Theory Week 3. Kevin Leyton-Brown

Domination Rationalizability Correlated Equilibrium Computing CE Computational problems in domination. Game Theory Week 3. Kevin Leyton-Brown Game Theory Week 3 Kevin Leyton-Brown Game Theory Week 3 Kevin Leyton-Brown, Slide 1 Lecture Overview 1 Domination 2 Rationalizability 3 Correlated Equilibrium 4 Computing CE 5 Computational problems in

More information

Multiagent Systems: Intro to Game Theory. CS 486/686: Introduction to Artificial Intelligence

Multiagent Systems: Intro to Game Theory. CS 486/686: Introduction to Artificial Intelligence Multiagent Systems: Intro to Game Theory CS 486/686: Introduction to Artificial Intelligence 1 1 Introduction So far almost everything we have looked at has been in a single-agent setting Today - Multiagent

More information

SF2972: Game theory. Mark Voorneveld, February 2, 2015

SF2972: Game theory. Mark Voorneveld, February 2, 2015 SF2972: Game theory Mark Voorneveld, mark.voorneveld@hhs.se February 2, 2015 Topic: extensive form games. Purpose: explicitly model situations in which players move sequentially; formulate appropriate

More information

Game Theory Refresher. Muriel Niederle. February 3, A set of players (here for simplicity only 2 players, all generalized to N players).

Game Theory Refresher. Muriel Niederle. February 3, A set of players (here for simplicity only 2 players, all generalized to N players). Game Theory Refresher Muriel Niederle February 3, 2009 1. Definition of a Game We start by rst de ning what a game is. A game consists of: A set of players (here for simplicity only 2 players, all generalized

More information

Mixed Strategies; Maxmin

Mixed Strategies; Maxmin Mixed Strategies; Maxmin CPSC 532A Lecture 4 January 28, 2008 Mixed Strategies; Maxmin CPSC 532A Lecture 4, Slide 1 Lecture Overview 1 Recap 2 Mixed Strategies 3 Fun Game 4 Maxmin and Minmax Mixed Strategies;

More information

Extensive-Form Games with Perfect Information

Extensive-Form Games with Perfect Information Extensive-Form Games with Perfect Information Yiling Chen September 22, 2008 CS286r Fall 08 Extensive-Form Games with Perfect Information 1 Logistics In this unit, we cover 5.1 of the SLB book. Problem

More information

3 Game Theory II: Sequential-Move and Repeated Games

3 Game Theory II: Sequential-Move and Repeated Games 3 Game Theory II: Sequential-Move and Repeated Games Recognizing that the contributions you make to a shared computer cluster today will be known to other participants tomorrow, you wonder how that affects

More information

Backward Induction and Stackelberg Competition

Backward Induction and Stackelberg Competition Backward Induction and Stackelberg Competition Economics 302 - Microeconomic Theory II: Strategic Behavior Shih En Lu Simon Fraser University (with thanks to Anke Kessler) ECON 302 (SFU) Backward Induction

More information

Multiagent Systems: Intro to Game Theory. CS 486/686: Introduction to Artificial Intelligence

Multiagent Systems: Intro to Game Theory. CS 486/686: Introduction to Artificial Intelligence Multiagent Systems: Intro to Game Theory CS 486/686: Introduction to Artificial Intelligence 1 Introduction So far almost everything we have looked at has been in a single-agent setting Today - Multiagent

More information

February 11, 2015 :1 +0 (1 ) = :2 + 1 (1 ) =3 1. is preferred to R iff

February 11, 2015 :1 +0 (1 ) = :2 + 1 (1 ) =3 1. is preferred to R iff February 11, 2015 Example 60 Here s a problem that was on the 2014 midterm: Determine all weak perfect Bayesian-Nash equilibria of the following game. Let denote the probability that I assigns to being

More information

Games of Perfect Information and Backward Induction

Games of Perfect Information and Backward Induction Games of Perfect Information and Backward Induction Economics 282 - Introduction to Game Theory Shih En Lu Simon Fraser University ECON 282 (SFU) Perfect Info and Backward Induction 1 / 14 Topics 1 Basic

More information

Multiagent Systems: Intro to Game Theory. CS 486/686: Introduction to Artificial Intelligence

Multiagent Systems: Intro to Game Theory. CS 486/686: Introduction to Artificial Intelligence Multiagent Systems: Intro to Game Theory CS 486/686: Introduction to Artificial Intelligence 1 Introduction So far almost everything we have looked at has been in a single-agent setting Today - Multiagent

More information

1. Introduction to Game Theory

1. Introduction to Game Theory 1. Introduction to Game Theory What is game theory? Important branch of applied mathematics / economics Eight game theorists have won the Nobel prize, most notably John Nash (subject of Beautiful mind

More information

Minmax and Dominance

Minmax and Dominance Minmax and Dominance CPSC 532A Lecture 6 September 28, 2006 Minmax and Dominance CPSC 532A Lecture 6, Slide 1 Lecture Overview Recap Maxmin and Minmax Linear Programming Computing Fun Game Domination Minmax

More information

Computing Nash Equilibrium; Maxmin

Computing Nash Equilibrium; Maxmin Computing Nash Equilibrium; Maxmin Lecture 5 Computing Nash Equilibrium; Maxmin Lecture 5, Slide 1 Lecture Overview 1 Recap 2 Computing Mixed Nash Equilibria 3 Fun Game 4 Maxmin and Minmax Computing Nash

More information

Game Theory and Economics of Contracts Lecture 4 Basics in Game Theory (2)

Game Theory and Economics of Contracts Lecture 4 Basics in Game Theory (2) Game Theory and Economics of Contracts Lecture 4 Basics in Game Theory (2) Yu (Larry) Chen School of Economics, Nanjing University Fall 2015 Extensive Form Game I It uses game tree to represent the games.

More information

Extensive Games with Perfect Information A Mini Tutorial

Extensive Games with Perfect Information A Mini Tutorial Extensive Games withperfect InformationA Mini utorial p. 1/9 Extensive Games with Perfect Information A Mini utorial Krzysztof R. Apt (so not Krzystof and definitely not Krystof) CWI, Amsterdam, the Netherlands,

More information

GAME THEORY: STRATEGY AND EQUILIBRIUM

GAME THEORY: STRATEGY AND EQUILIBRIUM Prerequisites Almost essential Game Theory: Basics GAME THEORY: STRATEGY AND EQUILIBRIUM MICROECONOMICS Principles and Analysis Frank Cowell Note: the detail in slides marked * can only be seen if you

More information

NORMAL FORM GAMES: invariance and refinements DYNAMIC GAMES: extensive form

NORMAL FORM GAMES: invariance and refinements DYNAMIC GAMES: extensive form 1 / 47 NORMAL FORM GAMES: invariance and refinements DYNAMIC GAMES: extensive form Heinrich H. Nax hnax@ethz.ch & Bary S. R. Pradelski bpradelski@ethz.ch March 19, 2018: Lecture 5 2 / 47 Plan Normal form

More information

CS510 \ Lecture Ariel Stolerman

CS510 \ Lecture Ariel Stolerman CS510 \ Lecture04 2012-10-15 1 Ariel Stolerman Administration Assignment 2: just a programming assignment. Midterm: posted by next week (5), will cover: o Lectures o Readings A midterm review sheet will

More information

G5212: Game Theory. Mark Dean. Spring 2017

G5212: Game Theory. Mark Dean. Spring 2017 G5212: Game Theory Mark Dean Spring 2017 The Story So Far... Last week we Introduced the concept of a dynamic (or extensive form) game The strategic (or normal) form of that game In terms of solution concepts

More information

Game Theory. Lecture Notes By Y. Narahari. Department of Computer Science and Automation Indian Institute of Science Bangalore, India August 2012

Game Theory. Lecture Notes By Y. Narahari. Department of Computer Science and Automation Indian Institute of Science Bangalore, India August 2012 Game Theory Lecture Notes By Y. Narahari Department of Computer Science and Automation Indian Institute of Science Bangalore, India August 01 Rationalizable Strategies Note: This is a only a draft version,

More information

Analyzing Games: Mixed Strategies

Analyzing Games: Mixed Strategies Analyzing Games: Mixed Strategies CPSC 532A Lecture 5 September 26, 2006 Analyzing Games: Mixed Strategies CPSC 532A Lecture 5, Slide 1 Lecture Overview Recap Mixed Strategies Fun Game Analyzing Games:

More information

Game Theory and Economics Prof. Dr. Debarshi Das Humanities and Social Sciences Indian Institute of Technology, Guwahati

Game Theory and Economics Prof. Dr. Debarshi Das Humanities and Social Sciences Indian Institute of Technology, Guwahati Game Theory and Economics Prof. Dr. Debarshi Das Humanities and Social Sciences Indian Institute of Technology, Guwahati Module No. # 05 Extensive Games and Nash Equilibrium Lecture No. # 03 Nash Equilibrium

More information

8.F The Possibility of Mistakes: Trembling Hand Perfection

8.F The Possibility of Mistakes: Trembling Hand Perfection February 4, 2015 8.F The Possibility of Mistakes: Trembling Hand Perfection back to games of complete information, for the moment refinement: a set of principles that allow one to select among equilibria.

More information

Computational Methods for Non-Cooperative Game Theory

Computational Methods for Non-Cooperative Game Theory Computational Methods for Non-Cooperative Game Theory What is a game? Introduction A game is a decision problem in which there a multiple decision makers, each with pay-off interdependence Each decisions

More information

Repeated Games. Economics Microeconomic Theory II: Strategic Behavior. Shih En Lu. Simon Fraser University (with thanks to Anke Kessler)

Repeated Games. Economics Microeconomic Theory II: Strategic Behavior. Shih En Lu. Simon Fraser University (with thanks to Anke Kessler) Repeated Games Economics 302 - Microeconomic Theory II: Strategic Behavior Shih En Lu Simon Fraser University (with thanks to Anke Kessler) ECON 302 (SFU) Repeated Games 1 / 25 Topics 1 Information Sets

More information

Game Theory. Wolfgang Frimmel. Subgame Perfect Nash Equilibrium

Game Theory. Wolfgang Frimmel. Subgame Perfect Nash Equilibrium Game Theory Wolfgang Frimmel Subgame Perfect Nash Equilibrium / Dynamic games of perfect information We now start analyzing dynamic games Strategic games suppress the sequential structure of decision-making

More information

Leandro Chaves Rêgo. Unawareness in Extensive Form Games. Joint work with: Joseph Halpern (Cornell) Statistics Department, UFPE, Brazil.

Leandro Chaves Rêgo. Unawareness in Extensive Form Games. Joint work with: Joseph Halpern (Cornell) Statistics Department, UFPE, Brazil. Unawareness in Extensive Form Games Leandro Chaves Rêgo Statistics Department, UFPE, Brazil Joint work with: Joseph Halpern (Cornell) January 2014 Motivation Problem: Most work on game theory assumes that:

More information

Computational aspects of two-player zero-sum games Course notes for Computational Game Theory Section 3 Fall 2010

Computational aspects of two-player zero-sum games Course notes for Computational Game Theory Section 3 Fall 2010 Computational aspects of two-player zero-sum games Course notes for Computational Game Theory Section 3 Fall 21 Peter Bro Miltersen November 1, 21 Version 1.3 3 Extensive form games (Game Trees, Kuhn Trees)

More information

Non-Cooperative Game Theory

Non-Cooperative Game Theory Notes on Microeconomic Theory IV 3º - LE-: 008-009 Iñaki Aguirre epartamento de Fundamentos del Análisis Económico I Universidad del País Vasco An introduction to. Introduction.. asic notions.. Extensive

More information

Weeks 3-4: Intro to Game Theory

Weeks 3-4: Intro to Game Theory Prof. Bryan Caplan bcaplan@gmu.edu http://www.bcaplan.com Econ 82 Weeks 3-4: Intro to Game Theory I. The Hard Case: When Strategy Matters A. You can go surprisingly far with general equilibrium theory,

More information

International Economics B 2. Basics in noncooperative game theory

International Economics B 2. Basics in noncooperative game theory International Economics B 2 Basics in noncooperative game theory Akihiko Yanase (Graduate School of Economics) October 11, 2016 1 / 34 What is game theory? Basic concepts in noncooperative game theory

More information

Introduction to Industrial Organization Professor: Caixia Shen Fall 2014 Lecture Note 6 Games and Strategy (ch.4)-continue

Introduction to Industrial Organization Professor: Caixia Shen Fall 2014 Lecture Note 6 Games and Strategy (ch.4)-continue Introduction to Industrial Organization Professor: Caixia Shen Fall 014 Lecture Note 6 Games and Strategy (ch.4)-continue Outline: Modeling by means of games Normal form games Dominant strategies; dominated

More information

CHAPTER LEARNING OUTCOMES. By the end of this section, students will be able to:

CHAPTER LEARNING OUTCOMES. By the end of this section, students will be able to: CHAPTER 4 4.1 LEARNING OUTCOMES By the end of this section, students will be able to: Understand what is meant by a Bayesian Nash Equilibrium (BNE) Calculate the BNE in a Cournot game with incomplete information

More information

Dominant and Dominated Strategies

Dominant and Dominated Strategies Dominant and Dominated Strategies Carlos Hurtado Department of Economics University of Illinois at Urbana-Champaign hrtdmrt2@illinois.edu Junel 8th, 2016 C. Hurtado (UIUC - Economics) Game Theory On the

More information

Game theory lecture 5. October 5, 2013

Game theory lecture 5. October 5, 2013 October 5, 2013 In normal form games one can think that the players choose their strategies simultaneously. In extensive form games the sequential structure of the game plays a central role. In this section

More information

Microeconomics II Lecture 2: Backward induction and subgame perfection Karl Wärneryd Stockholm School of Economics November 2016

Microeconomics II Lecture 2: Backward induction and subgame perfection Karl Wärneryd Stockholm School of Economics November 2016 Microeconomics II Lecture 2: Backward induction and subgame perfection Karl Wärneryd Stockholm School of Economics November 2016 1 Games in extensive form So far, we have only considered games where players

More information

Extensive Games with Perfect Information. Start by restricting attention to games without simultaneous moves and without nature (no randomness).

Extensive Games with Perfect Information. Start by restricting attention to games without simultaneous moves and without nature (no randomness). Extensive Games with Perfect Information There is perfect information if each player making a move observes all events that have previously occurred. Start by restricting attention to games without simultaneous

More information

Appendix A A Primer in Game Theory

Appendix A A Primer in Game Theory Appendix A A Primer in Game Theory This presentation of the main ideas and concepts of game theory required to understand the discussion in this book is intended for readers without previous exposure to

More information

Lecture 5: Subgame Perfect Equilibrium. November 1, 2006

Lecture 5: Subgame Perfect Equilibrium. November 1, 2006 Lecture 5: Subgame Perfect Equilibrium November 1, 2006 Osborne: ch 7 How do we analyze extensive form games where there are simultaneous moves? Example: Stage 1. Player 1 chooses between fin,outg If OUT,

More information

Dynamic Games of Complete Information

Dynamic Games of Complete Information Dynamic Games of Complete Information Dynamic Games of Complete and Perfect Information F. Valognes - Game Theory - Chp 13 1 Outline of dynamic games of complete information Dynamic games of complete information

More information

Sequential Games When there is a sufficient lag between strategy choices our previous assumption of simultaneous moves may not be realistic. In these

Sequential Games When there is a sufficient lag between strategy choices our previous assumption of simultaneous moves may not be realistic. In these When there is a sufficient lag between strategy choices our previous assumption of simultaneous moves may not be realistic. In these settings, the assumption of sequential decision making is more realistic.

More information

final examination on May 31 Topics from the latter part of the course (covered in homework assignments 4-7) include:

final examination on May 31 Topics from the latter part of the course (covered in homework assignments 4-7) include: The final examination on May 31 may test topics from any part of the course, but the emphasis will be on topic after the first three homework assignments, which were covered in the midterm. Topics from

More information

Game Theory and Randomized Algorithms

Game Theory and Randomized Algorithms Game Theory and Randomized Algorithms Guy Aridor Game theory is a set of tools that allow us to understand how decisionmakers interact with each other. It has practical applications in economics, international

More information

Games in Extensive Form

Games in Extensive Form Games in Extensive Form the extensive form of a game is a tree diagram except that my trees grow sideways any game can be represented either using the extensive form or the strategic form but the extensive

More information

1. Simultaneous games All players move at same time. Represent with a game table. We ll stick to 2 players, generally A and B or Row and Col.

1. Simultaneous games All players move at same time. Represent with a game table. We ll stick to 2 players, generally A and B or Row and Col. I. Game Theory: Basic Concepts 1. Simultaneous games All players move at same time. Represent with a game table. We ll stick to 2 players, generally A and B or Row and Col. Representation of utilities/preferences

More information

3-2 Lecture 3: January Repeated Games A repeated game is a standard game which isplayed repeatedly. The utility of each player is the sum of

3-2 Lecture 3: January Repeated Games A repeated game is a standard game which isplayed repeatedly. The utility of each player is the sum of S294-1 Algorithmic Aspects of Game Theory Spring 2001 Lecturer: hristos Papadimitriou Lecture 3: January 30 Scribes: Kris Hildrum, ror Weitz 3.1 Overview This lecture expands the concept of a game by introducing

More information

2. The Extensive Form of a Game

2. The Extensive Form of a Game 2. The Extensive Form of a Game In the extensive form, games are sequential, interactive processes which moves from one position to another in response to the wills of the players or the whims of chance.

More information

CSCI 699: Topics in Learning and Game Theory Fall 2017 Lecture 3: Intro to Game Theory. Instructor: Shaddin Dughmi

CSCI 699: Topics in Learning and Game Theory Fall 2017 Lecture 3: Intro to Game Theory. Instructor: Shaddin Dughmi CSCI 699: Topics in Learning and Game Theory Fall 217 Lecture 3: Intro to Game Theory Instructor: Shaddin Dughmi Outline 1 Introduction 2 Games of Complete Information 3 Games of Incomplete Information

More information

ECO 199 B GAMES OF STRATEGY Spring Term 2004 B February 24 SEQUENTIAL AND SIMULTANEOUS GAMES. Representation Tree Matrix Equilibrium concept

ECO 199 B GAMES OF STRATEGY Spring Term 2004 B February 24 SEQUENTIAL AND SIMULTANEOUS GAMES. Representation Tree Matrix Equilibrium concept CLASSIFICATION ECO 199 B GAMES OF STRATEGY Spring Term 2004 B February 24 SEQUENTIAL AND SIMULTANEOUS GAMES Sequential Games Simultaneous Representation Tree Matrix Equilibrium concept Rollback (subgame

More information

Mohammad Hossein Manshaei 1394

Mohammad Hossein Manshaei 1394 Mohammad Hossein Manshaei manshaei@gmail.com 394 Some Formal Definitions . First Mover or Second Mover?. Zermelo Theorem 3. Perfect Information/Pure Strategy 4. Imperfect Information/Information Set 5.

More information

CMU-Q Lecture 20:

CMU-Q Lecture 20: CMU-Q 15-381 Lecture 20: Game Theory I Teacher: Gianni A. Di Caro ICE-CREAM WARS http://youtu.be/jilgxenbk_8 2 GAME THEORY Game theory is the formal study of conflict and cooperation in (rational) multi-agent

More information

Sequential games. Moty Katzman. November 14, 2017

Sequential games. Moty Katzman. November 14, 2017 Sequential games Moty Katzman November 14, 2017 An example Alice and Bob play the following game: Alice goes first and chooses A, B or C. If she chose A, the game ends and both get 0. If she chose B, Bob

More information

Advanced Microeconomics: Game Theory

Advanced Microeconomics: Game Theory Advanced Microeconomics: Game Theory P. v. Mouche Wageningen University 2018 Outline 1 Motivation 2 Games in strategic form 3 Games in extensive form What is game theory? Traditional game theory deals

More information

Lecture 9. General Dynamic Games of Complete Information

Lecture 9. General Dynamic Games of Complete Information Lecture 9. General Dynamic Games of Complete Information Till now: Simple dynamic games and repeated games Now: General dynamic games but with complete information (for dynamic games with incomplete information

More information

Finite games: finite number of players, finite number of possible actions, finite number of moves. Canusegametreetodepicttheextensiveform.

Finite games: finite number of players, finite number of possible actions, finite number of moves. Canusegametreetodepicttheextensiveform. A game is a formal representation of a situation in which individuals interact in a setting of strategic interdependence. Strategic interdependence each individual s utility depends not only on his own

More information

LECTURE 26: GAME THEORY 1

LECTURE 26: GAME THEORY 1 15-382 COLLECTIVE INTELLIGENCE S18 LECTURE 26: GAME THEORY 1 INSTRUCTOR: GIANNI A. DI CARO ICE-CREAM WARS http://youtu.be/jilgxenbk_8 2 GAME THEORY Game theory is the formal study of conflict and cooperation

More information

Introduction to Game Theory

Introduction to Game Theory Introduction to Game Theory Review for the Final Exam Dana Nau University of Maryland Nau: Game Theory 1 Basic concepts: 1. Introduction normal form, utilities/payoffs, pure strategies, mixed strategies

More information

Simple Decision Heuristics in Perfec Games. The original publication is availabl. Press

Simple Decision Heuristics in Perfec Games. The original publication is availabl. Press JAIST Reposi https://dspace.j Title Simple Decision Heuristics in Perfec Games Author(s)Konno, Naoki; Kijima, Kyoichi Citation Issue Date 2005-11 Type Conference Paper Text version publisher URL Rights

More information

Strategies and Game Theory

Strategies and Game Theory Strategies and Game Theory Prof. Hongbin Cai Department of Applied Economics Guanghua School of Management Peking University March 31, 2009 Lecture 7: Repeated Game 1 Introduction 2 Finite Repeated Game

More information

Game Theory Lecturer: Ji Liu Thanks for Jerry Zhu's slides

Game Theory Lecturer: Ji Liu Thanks for Jerry Zhu's slides Game Theory ecturer: Ji iu Thanks for Jerry Zhu's slides [based on slides from Andrew Moore http://www.cs.cmu.edu/~awm/tutorials] slide 1 Overview Matrix normal form Chance games Games with hidden information

More information

Summary Overview of Topics in Econ 30200b: Decision theory: strong and weak domination by randomized strategies, domination theorem, expected utility

Summary Overview of Topics in Econ 30200b: Decision theory: strong and weak domination by randomized strategies, domination theorem, expected utility Summary Overview of Topics in Econ 30200b: Decision theory: strong and weak domination by randomized strategies, domination theorem, expected utility theorem (consistent decisions under uncertainty should

More information

SF2972 GAME THEORY Normal-form analysis II

SF2972 GAME THEORY Normal-form analysis II SF2972 GAME THEORY Normal-form analysis II Jörgen Weibull January 2017 1 Nash equilibrium Domain of analysis: finite NF games = h i with mixed-strategy extension = h ( ) i Definition 1.1 Astrategyprofile

More information

MS&E 246: Lecture 15 Perfect Bayesian equilibrium. Ramesh Johari

MS&E 246: Lecture 15 Perfect Bayesian equilibrium. Ramesh Johari MS&E 246: ecture 15 Perfect Bayesian equilibrium amesh Johari Dynamic games In this lecture, we begin a study of dynamic games of incomplete information. We will develop an analog of Bayesian equilibrium

More information

Lecture 6: Basics of Game Theory

Lecture 6: Basics of Game Theory 0368.4170: Cryptography and Game Theory Ran Canetti and Alon Rosen Lecture 6: Basics of Game Theory 25 November 2009 Fall 2009 Scribes: D. Teshler Lecture Overview 1. What is a Game? 2. Solution Concepts:

More information

Economics 201A - Section 5

Economics 201A - Section 5 UC Berkeley Fall 2007 Economics 201A - Section 5 Marina Halac 1 What we learnt this week Basics: subgame, continuation strategy Classes of games: finitely repeated games Solution concepts: subgame perfect

More information

Games in Extensive Form, Backward Induction, and Subgame Perfection:

Games in Extensive Form, Backward Induction, and Subgame Perfection: Econ 460 Game Theory Assignment 4 Games in Extensive Form, Backward Induction, Subgame Perfection (Ch. 14,15), Bargaining (Ch. 19), Finitely Repeated Games (Ch. 22) Games in Extensive Form, Backward Induction,

More information

ESSENTIALS OF GAME THEORY

ESSENTIALS OF GAME THEORY ESSENTIALS OF GAME THEORY 1 CHAPTER 1 Games in Normal Form Game theory studies what happens when self-interested agents interact. What does it mean to say that agents are self-interested? It does not necessarily

More information

EconS 424- Strategy and Game Theory Reputation and Incomplete information in a public good project How to nd Semi-separating equilibria?

EconS 424- Strategy and Game Theory Reputation and Incomplete information in a public good project How to nd Semi-separating equilibria? EconS 424- Strategy and Game Theory Reputation and Incomplete information in a public good project How to nd Semi-separating equilibria? April 14, 2014 1 A public good game Let us consider the following

More information

The Mother & Child Game

The Mother & Child Game BUS 4800/4810 Game Theory Lecture Sequential Games and Credible Threats Winter 2008 The Mother & Child Game Child is being BD Moms responds This is a Sequential Game 1 Game Tree: This is the EXTENDED form

More information

2. Extensive Form Games

2. Extensive Form Games Lecture Notes By Y. Narahari Department of Computer Science and Automation Indian Institute of Science Bangalore, India July 0. Extensive Form Games Note: his is a only a draft version, so there could

More information

FIRST PART: (Nash) Equilibria

FIRST PART: (Nash) Equilibria FIRST PART: (Nash) Equilibria (Some) Types of games Cooperative/Non-cooperative Symmetric/Asymmetric (for 2-player games) Zero sum/non-zero sum Simultaneous/Sequential Perfect information/imperfect information

More information

ECON 312: Games and Strategy 1. Industrial Organization Games and Strategy

ECON 312: Games and Strategy 1. Industrial Organization Games and Strategy ECON 312: Games and Strategy 1 Industrial Organization Games and Strategy A Game is a stylized model that depicts situation of strategic behavior, where the payoff for one agent depends on its own actions

More information

Elements of Game Theory

Elements of Game Theory Elements of Game Theory S. Pinchinat Master2 RI 20-202 S. Pinchinat (IRISA) Elements of Game Theory Master2 RI 20-202 / 64 Introduction Economy Biology Synthesis and Control of reactive Systems Checking

More information

The tenure game. The tenure game. Winning strategies for the tenure game. Winning condition for the tenure game

The tenure game. The tenure game. Winning strategies for the tenure game. Winning condition for the tenure game The tenure game The tenure game is played by two players Alice and Bob. Initially, finitely many tokens are placed at positions that are nonzero natural numbers. Then Alice and Bob alternate in their moves

More information

Game Theory. 6 Dynamic Games with imperfect information

Game Theory. 6 Dynamic Games with imperfect information Game Theory 6 Dynamic Games with imperfect information Review of lecture five Game tree and strategies Dynamic games of perfect information Games and subgames ackward induction Subgame perfect Nash equilibrium

More information

DECISION MAKING GAME THEORY

DECISION MAKING GAME THEORY DECISION MAKING GAME THEORY THE PROBLEM Two suspected felons are caught by the police and interrogated in separate rooms. Three cases were presented to them. THE PROBLEM CASE A: If only one of you confesses,

More information

Asynchronous Best-Reply Dynamics

Asynchronous Best-Reply Dynamics Asynchronous Best-Reply Dynamics Noam Nisan 1, Michael Schapira 2, and Aviv Zohar 2 1 Google Tel-Aviv and The School of Computer Science and Engineering, The Hebrew University of Jerusalem, Israel. 2 The

More information

Rational decisions in non-probabilistic setting

Rational decisions in non-probabilistic setting Computational Logic Seminar, Graduate Center CUNY Rational decisions in non-probabilistic setting Sergei Artemov October 20, 2009 1 In this talk The knowledge-based rational decision model (KBR-model)

More information

ANoteonthe Game - Bounded Rationality and Induction

ANoteonthe Game - Bounded Rationality and Induction ANoteontheE-mailGame - Bounded Rationality and Induction Uwe Dulleck y Comments welcome Abstract In Rubinstein s (1989) E-mail game there exists no Nash equilibrium where players use strategies that condition

More information

EconS Backward Induction and Subgame Perfection

EconS Backward Induction and Subgame Perfection EconS 424 - Backward Induction and Subgame Perfection Félix Muñoz-García Washington State University fmunoz@wsu.edu March 24, 24 Félix Muñoz-García (WSU) EconS 424 - Recitation 5 March 24, 24 / 48 Watson,

More information

2. Basics of Noncooperative Games

2. Basics of Noncooperative Games 2. Basics of Noncooperative Games Introduction Microeconomics studies the behavior of individual economic agents and their interactions. Game theory plays a central role in modeling the interactions between

More information

Chapter 13. Game Theory

Chapter 13. Game Theory Chapter 13 Game Theory A camper awakens to the growl of a hungry bear and sees his friend putting on a pair of running shoes. You can t outrun a bear, scoffs the camper. His friend coolly replies, I don

More information

Normal Form Games: A Brief Introduction

Normal Form Games: A Brief Introduction Normal Form Games: A Brief Introduction Arup Daripa TOF1: Market Microstructure Birkbeck College Autumn 2005 1. Games in strategic form. 2. Dominance and iterated dominance. 3. Weak dominance. 4. Nash

More information

GAME THEORY: ANALYSIS OF STRATEGIC THINKING Exercises on Multistage Games with Chance Moves, Randomized Strategies and Asymmetric Information

GAME THEORY: ANALYSIS OF STRATEGIC THINKING Exercises on Multistage Games with Chance Moves, Randomized Strategies and Asymmetric Information GAME THEORY: ANALYSIS OF STRATEGIC THINKING Exercises on Multistage Games with Chance Moves, Randomized Strategies and Asymmetric Information Pierpaolo Battigalli Bocconi University A.Y. 2006-2007 Abstract

More information

GOLDEN AND SILVER RATIOS IN BARGAINING

GOLDEN AND SILVER RATIOS IN BARGAINING GOLDEN AND SILVER RATIOS IN BARGAINING KIMMO BERG, JÁNOS FLESCH, AND FRANK THUIJSMAN Abstract. We examine a specific class of bargaining problems where the golden and silver ratios appear in a natural

More information

Reading Robert Gibbons, A Primer in Game Theory, Harvester Wheatsheaf 1992.

Reading Robert Gibbons, A Primer in Game Theory, Harvester Wheatsheaf 1992. Reading Robert Gibbons, A Primer in Game Theory, Harvester Wheatsheaf 1992. Additional readings could be assigned from time to time. They are an integral part of the class and you are expected to read

More information

ECON 301: Game Theory 1. Intermediate Microeconomics II, ECON 301. Game Theory: An Introduction & Some Applications

ECON 301: Game Theory 1. Intermediate Microeconomics II, ECON 301. Game Theory: An Introduction & Some Applications ECON 301: Game Theory 1 Intermediate Microeconomics II, ECON 301 Game Theory: An Introduction & Some Applications You have been introduced briefly regarding how firms within an Oligopoly interacts strategically

More information