SOLVING COURNOT, STACKELBERG AND COLLUSION GAMES USING R

Size: px
Start display at page:

Download "SOLVING COURNOT, STACKELBERG AND COLLUSION GAMES USING R"

Transcription

1 SOLVING COURNOT, STACKELBERG AND COLLUSION GAMES USING R GIACOMO FRANCHINI AND MATTEO BONFANTI 1. Introduction The issue we would like to cover in this brief guide is how to run Cournot, Stackelberg Games and collusions using the R software and find the equilibrium values for such games. Cournot, Stackelberg and collusion are the most common models of oligopoly used in undergraduate Microeconomics. In this note we follow a game theoretic approach. In particular, we focus the attention on duopoly situations, where there are only two firms on the market, and consider only the case in which firms play only once. These are the cases covered in the first year Microeconomics course. The reason for doing so is that in this way we are allowed to develop a R model that is not necessarily taking into consideration cooperation among firms, indeed if we extend the model to more than one period what happened on the first round of the game becomes observable and punishment tools are available for firms. In our case on the other hand such punishment tools are not available because firms play simultaneously and just for one round. For each model, we first describe the associated game (and the special case we re considering), then we develop an analytical solution of a game and finally we provide the scripts necessary to obtain such results using R. The same is done for the other two models taken into consideration.. Cournot game A Cournot game is a model aimed to find equilibrium values in an Oligopoly (Oligopoly) situation in which firms play simultaneously and take a decision on how much to produce. 3. Analytical solution of a one-stage Cournot game for a duopoly 3.1. Introducing Cost, Price and Profit functions: We assume that firms in this model are identical, i.e. they have the same cost function given by: C(q i ) = c q i where i = 1, on the top of that we assume that they are experiencing constant return to scale and, for the sake of simplicity, that MC = c. The question then is how much are the firms taken into consideration going to produce? We start by assuming that each firm is taking the other firm s behavior as given in choosing what to do (as in the prisoners dilemma example). 1

2 GIACOMO FRANCHINI AND MATTEO BONFANTI To find the solution we consider the profit maximizing condition, and hence profit and price functions have to be introduced: π i = P qi c q i P = a b(q 1 + q ) then if we plug the price function into profit we get: π i = [a b(q 1 + q )]q i c q i This function can be used to find the profit of both firms (that are by assumption symmetric) Firm 1: π 1 = [a b(q 1 + q )]q 1 c q 1 that, after computations are performed gives: π 1 = aq 1 bq 1 bq 1q cq 1 symmetrically for firm two such function will be: π = aq bq bq 1q cq 3.. Applying the first order condition for profit maximizing: The first order condition for profit maximizing is: δπ δq i = 0 i.e. MR = MC If we apply such condition to firms profit functions we get each firm s reaction function: that in turn gives: { q 1 (q ) = a c b q q (q 1 ) = a c b q 1 q1, q = a c (that are Cournot equilibrium quantities for firms 1 and ) 3b Once quantities are computed plug them into the price function to find the equilibrium price: P = a b(q1 + q) = a + c (that is the Cournot equilibrium price) 3 and finally use q1, q and P to find profits for the single firm: π i = P q i cq i = (a c) 9b

3 SOLVING COURNOT, STACKELBERG AND COLLUSION GAMES USING R 3 4. Solving the problem using R In this section we want to solve a typical problem regarding the Cournot model previously developed, for instance: 4.1. Data: The market demand for the belts industry is given by P = 100 q 1 q, where q 1 is the amount of output Firm 1 produces and q is firm s level of output. The marginal cost of each firm is Problem: A) What is Firm 1 s profit-maximising output when firm produces an arbitrary output q (i.e. what is the equation of Firm 1 s reaction function)? B) Compute the Cournot equilibrium quantities and price in the belts market Solution : A) We know that: P = 100 1(q 1 + q ) Since we know from the previous section that the reaction function for Firm 1 is given by: q 1 (q ) = a c q b and that a = 100, b = 1 and c = 10 we substitute into the function to get: q 1 (q ) = B) We apply the previous result: q = 45 q { q 1 (q ) = a c b q q (q 1 ) = a c b q 1 and using the numbers provided by the exercise: { q 1 (q ) = q q (q 1 ) = q 1 ( 45 q 1 ) ( 1 ) + 45 q1 q 1 4 =, 5 q 1 = 30 then the Cournot equilibrium quantities are: q 1, q = = 30

4 4 GIACOMO FRANCHINI AND MATTEO BONFANTI Finally the Cournot equilibrium price can be determined by plugging the values of a, c, q1 and q into the Price function: P = a b(q 1 + q ) = ( ) = R script: To compute the equilibrium values of the problem using R we ll need just two item provided by the program: an assignment operator the function command (to use such command you ve to type: name function( variables of the function ) ( body of the function ) A)As first step assign values to the parameters a,b,c: a 100 b 1 c 10 and define the reaction function for firm 1 as follow: reaction.function.f1 < function(q) (a c)/ b q/ finally compute q1 and q using the theoretical result obtained in section 3: q1 function (a,b,c) (a-c)/3*b q function (a,b,c) (a-c)/3*b B)To find the equilibrium price we use a function command exploiting as before the theoretical result previously obtained: equilibrium.price < function (a,c) (a+*c)/3 5. Stackelberg game As with the Cournot game, Stackelberg model is aimed to find equilibrium values in an Oligopoly where firms take a decision on how much to produce. Stackelberg game is used to model a sequential game ( recall that the Cournot game was a simultaneous one) so now we have a Leader, i.e. a firm that moves first and grabs much of the industry profit and a Follower, i.e. a firm that moves after the leader. As in the Cournot game we stick to a situation in which we have just two firms, that we call Leader and Follower that are assumed to be identical, i.e., with the same cost function. 6. Analytical solution of a one-stage Stackelberg game for a duopoly 6.1. Introducing Cost and Price functions: As in the Cournot game the cost function is assumed to be: C(q i ) = c q i where i = L, F so that MC = c. On the top of that we re assuming rationality, i.e. that firms behave in order to maximize their profit. The Price function will be the same as the one used in the Cournot Game:

5 SOLVING COURNOT, STACKELBERG AND COLLUSION GAMES USING R 5 P = a b(q L + q F ) (6.1) 6.. Problem solution: Problem solution will be found through backward induction and is going to be structured like this: find the reaction function of the Follower as a function of Leader s optimal quantity value assuming that the Leader will maximize its profit; take into consideration such reaction function in the Leader s decision of how much to produce; plug the Leader s optimal quantity value into the Follower s reaction function in order to find the optimal quantity for the Follower Evaluate the Follower s reaction function: Follower s reaction function is evaluated in the same way as it was evaluated in the Cournot Game, here is a refresh: π i = P q i c q i π F = [a b(q L + q F )]q F c q F Then applying the First order condition: we have: δπ F δq F = 0 i.e. MR = MC q F (q L ) = a c b q L (6.) 6.4. Evaluate Leader s optimal quantity: Now that we know the Follower s reaction function we can pretend to be the Leader and use it to find out which is the optimal quantity of output to produce. Recall that the profit function for the Leader is given by: π L = P q L c q L if then we plug (6.1) and (6.) into the Leader s profit function we get: π L (q L ) = [a b (q L + q F )] q L c q L = { a b [q L + ( a c b q )]} L ql c q L finally we apply the First order condition to get: ql = a c b 6.5. Evaluate Follower s optimal quantity: As the last step we ve to determine the level of output that the Follower is going to produce. In order to do so we just plug ql into (6.) and we get: q F (q L ) = a c b q L = a c ( a c 1 ) = a c b b 4b

6 6 GIACOMO FRANCHINI AND MATTEO BONFANTI 6.6. Evaluate equilibrium price and Leader and Follower s profit: Once we know both the quantity produced by the Leader and by the Follower we can compute straight away the price that will be charged and the profit of each firm just by plugging ql and qf into the price function (to find the price) and respectively in the Leader and and the Follower s profit functions to compute profits for both firms P = a b(q L + q F ) = a b ( a c a c ) π i = [ a b ( a c b a c 4b b )] q i c q i where i = L, F 7. solving the problem using r We now want to solve the same problem as before (the one introduced in the Cournot game) using the Stackelberg model, so in this case we ll assume that there are a Leader and a Follower Data: The market demand for the belts industry is given by P = 100 q L q F, where q L is the amount of output the Leader produces and q F is Follower s level of output. Marginal costs are equal to 10 (i.e., MC = 10). 7.. Problem: Find q L and q F Solution: We use the same backward induction method of section 6 to solve the problem so: find the Follower s reaction function as a function of Leader s quantity; exploit Follower s reaction function to find Leader s optimal quantity ql ; paste it into the Follower s reaction function to find Follower s optimal value. Note they if you want to solve the exercise using R you just need to assign values to a,b,c and then evaluate ql and q F as we did with the previous problem. A detailed solution is provided in the next subsection. 1) The Follower s reaction function is evaluated starting from the Follower s profit function, and then setting its derivative w.r.t. qf equal to zero: 4b δπ F δq F : [[a b(q L + q F )]q F c q F ]] = 0 that using numbers provided by exercise gives: q F (q L ) = q L = 45 q L

7 SOLVING COURNOT, STACKELBERG AND COLLUSION GAMES USING R 7 ) Now that we have the reaction function of qf as a function of q L we plug such expression into the Leader s profit function and apply the first order condition: π L (q L ) = [a b (q L + q F )] q L c q L = { a b [q L + ( 45 q )]} L ql c q L then set the derivative w.r.t. ql equal to 0 δπ [ ( F : [a b(q L + 45 q ] L )]q F c q F ] = 0 δq F that using numbers provided by the exercise ql = = 45 3) The final step consists just in using ql to find q F q F (q L ) = 45 q L 45 = 45 =, R script: The R script needed is very similar to the one needed to solve the Cournot problem: a) Use the arrow to assign the values given by the problem to the parameters a,b,c: a 100 b 1 c 10 b) Define Leader and Follower s quantity functions using the command function ql (a-c)/*b qf (a-c)/4*b and R will compute ql and q F. 8. Collusion,a special case Collusion is not, strictly speaking, a competitive game; indeed in this situation firms that compose the Oligopoly decide not to compete and create a fake Monopoly in order to rise the price charged for the product through underproduction. Then, once the total level of production for the industry has been settled Firms divide the total production according to some proportions. In this section we assume that there are just two firms (so a theoretical Duopoly) that share the same cost function. 9. Analytical solution of a Collusion problem The framework in which we develop the solution of the Collusion situation is the same as the one we used both for Cournot and Stackelberg games. We define a Price function and a Cost function: P = a b q t C(q t ) = c q t

8 8 GIACOMO FRANCHINI AND MATTEO BONFANTI The problem will be solved by applying directly the first order condition the usual profit function: π(q t ) = P q t c q t after taking the derivative with respect to q t and solving for q t we get: q t = a c b that is the total quantity of output that will be produced in the industry. Finally by assumption we have that the two firms split the market in equal parts so each firm has a 50% market share: q 1 = q = a c b 1 n = a c b 1 = a c 4b (where n is the number of firms participating to the collusion ) 10. solving the problem using R We now want to solve the usual problem, rearranged to fit with the collusion situation. We first solve it analytically and then we provide the R script to quick check that the result is correct Data: In a particular industry the market demand is defined as: P = q t moreover we know that in the industry there are only two Firms that share the same market structure: C(q t ) = 10 q t 10.. Problem: find out q 1 and q Solution: Using the proof developed above we know that q t = = 45 Once we knowq t just divide it by 1 n i.e. 1 to get: q1 = q =, R script: the R script needed to solve a collusion problem is very similar to the one we used for Cournot and Stackelberg games. The only difference is that we ve to define one more parameter, i.e. the number of firms participating to the collusion: a 100 b 1 c 10 n then we define the total quantity function exploiting the theoretical result obtained above as: qt function(a,b,c) ((a-b)/b) and the single firm s quantity function as: q1. function(a,b,c,n) ((a-b)/b))*(1/n)

9 SOLVING COURNOT, STACKELBERG AND COLLUSION GAMES USING R appendix The aim of this appendix is to provide a R script that can be used to solve the previously introduced exercises without using the main theoretical results. In order to do so we are going to use four R commands: Expression: such command builds an expression in R. D: this command provides the general derivative with respect to the specified variable of an expression. Function: this command builds a function of some variables. Uniroot: this command looks for the zeros of a function in a given interval. For our purposes Expression and Function commands are practically identical; we use both just because D requires an expression and uniroot a function. For any other explanation or example the Help page can be useful. Such page can be reached by typing??expression and??function Cournot: As a first step we have to provide R with a profit function for both firms profit1 expression(100 q 1 q 1 q 1 q 10 q 1 ) profit expression(100 q q q 1 q 10 q ) then in order to compute the derivative we use the command D d.profit1 D(profit1, q1 ) d.profit D(profit, q ) As usual once the object has been created, in order to visualize it we have to call it by typing its name: d.profit1 d.profit Once we have the general derivative for the profit of both firms we have to make q 1 and q explicit respectively in the first and in the second expression; after such rearrangement has been performed we paste the q function into the q 1 one (this passage cannot be performed using R,anyway is trivial). Once we have a function of only one variable, namely q 1 we transfer it into R using the command function: f 1 function(q1)(100 10)/ 0.5 ( q1) q1 as a final step we use the command uniroot: sol uniroot(f1, c(0, 100)) The root we find using such command is the equilibrium quantity for firm 1,and by symmetry also for firm Stackelberg: the procedure for solving the Stackelberg exercise is very similar to the one used for Cournot. We first derive the reaction function of the follower then such function is used to evaluate the leader optimal quantity. As a final step the quantity of the leader is plugged into the previously defined follower s reaction function in order to find out its optimal quantity. Though the problem is a little bit more complex than the Cournot one, once we have

10 10 GIACOMO FRANCHINI AND MATTEO BONFANTI established the procedure the commands that we need to solve the problem are the same as before. Here is the script: profit.follower expression((100 1 (q l + q f )) q f 10 q f ) d.profit.follower D(profit.follower, q f ) d.profit.follower profit.leader expression((100 1 (q l q l )) q l 10 q l ) d.profit.leader D(profit.leader, q l ) d.profit.leader f.l function(q l )(100 1 (q l q l )) (1 0.5) q l 10 sol.l uniroot(f.l, c(0, 100)) sol.l f.f function(q f )(100 1 (45 + q f )) q f 10 sol.f uniroot(f.f, c(0, 100)) sol.f Collusion. Collusion is the easiest among the three exercises. In order to make the script more elegant we introduce one more command: as.numeric ; this command translates the chosen object into a numeric item. Such command is used when extracting from the uniroot result the total quantity of the industry in order to divide it by two. Here is the script: profit.ind expression((100 qt) qt 10 qt) d.profit.ind D(profit.ind, qt ) d.profit.ind f.t function(qt)((100 qt) qt 10) sol.f or.f irm (as.numeric((uniroot(f.t, c(0, 100)))[1]))/ Final remark: The R scripts used in this appendix can be safely downloaded via dropbox at:

Exercises Solutions: Oligopoly

Exercises Solutions: Oligopoly Exercises Solutions: Oligopoly Exercise - Quantity competition 1 Take firm 1 s perspective Total revenue is R(q 1 = (4 q 1 q q 1 and, hence, marginal revenue is MR 1 (q 1 = 4 q 1 q Marginal cost is MC

More information

Oligopoly (contd.) Chapter 27

Oligopoly (contd.) Chapter 27 Oligopoly (contd.) Chapter 7 February 11, 010 Oligopoly Considerations: Do firms compete on price or quantity? Do firms act sequentially (leader/followers) or simultaneously (equilibrium) Stackelberg models:

More information

EC 202. Lecture notes 14 Oligopoly I. George Symeonidis

EC 202. Lecture notes 14 Oligopoly I. George Symeonidis EC 202 Lecture notes 14 Oligopoly I George Symeonidis Oligopoly When only a small number of firms compete in the same market, each firm has some market power. Moreover, their interactions cannot be ignored.

More information

DUOPOLY. MICROECONOMICS Principles and Analysis Frank Cowell. July 2017 Frank Cowell: Duopoly. Almost essential Monopoly

DUOPOLY. MICROECONOMICS Principles and Analysis Frank Cowell. July 2017 Frank Cowell: Duopoly. Almost essential Monopoly Prerequisites Almost essential Monopoly Useful, but optional Game Theory: Strategy and Equilibrium DUOPOLY MICROECONOMICS Principles and Analysis Frank Cowell 1 Overview Duopoly Background How the basic

More information

GS/ECON 5010 Answers to Assignment 3 November 2005

GS/ECON 5010 Answers to Assignment 3 November 2005 GS/ECON 5010 Answers to Assignment November 005 Q1. What are the market price, and aggregate quantity sold, in long run equilibrium in a perfectly competitive market for which the demand function has the

More information

Noncooperative Oligopoly

Noncooperative Oligopoly Noncooperative Oligopoly Oligopoly: interaction among small number of firms Conflict of interest: Each firm maximizes its own profits, but... Firm j s actions affect firm i s profits Example: price war

More information

Microeconomics I - Seminar #9, April 17, Suggested Solution

Microeconomics I - Seminar #9, April 17, Suggested Solution Microeconomics I - Seminar #9, April 17, 009 - Suggested Solution Problem 1: (Bertrand competition). Total cost function of two firms selling computers is T C 1 = T C = 15q. If these two firms compete

More information

Static Games and Cournot. Competition

Static Games and Cournot. Competition Static Games and Cournot Introduction In the majority of markets firms interact with few competitors oligopoly market Each firm has to consider rival s actions strategic interaction in prices, outputs,

More information

14.01 Principles of Microeconomics, Fall 2007 Chia-Hui Chen November 26, Lecture 28. Oligopoly

14.01 Principles of Microeconomics, Fall 2007 Chia-Hui Chen November 26, Lecture 28. Oligopoly Stackelberg.0 Principles of Microeconomics, Fall 2007 Chia-Hui Chen November 26, 2007 Lecture 28 Oligopoly Outline. Chap 2, 3: Stackelberg 2. Chap 2, 3: Bertr 3. Chap 2, 3: Prisoner s Dilemma In the discussion

More information

Lecture 9: Basic Oligopoly Models

Lecture 9: Basic Oligopoly Models Lecture 9: Basic Oligopoly Models Managerial Economics November 16, 2012 Prof. Dr. Sebastian Rausch Centre for Energy Policy and Economics Department of Management, Technology and Economics ETH Zürich

More information

MICROECONOMICS AND POLICY ANALYSIS - U8213 Professor Rajeev H. Dehejia Class Notes - Spring 2001

MICROECONOMICS AND POLICY ANALYSIS - U8213 Professor Rajeev H. Dehejia Class Notes - Spring 2001 MICROECONOMICS AND POLICY ANALYSIS - U813 Professor Rajeev H. Dehejia Class Notes - Spring 001 Imperfect Competition Wednesday, March 1 st Reading: Pindyck/Rubinfeld Chapter 1 Strategic Interaction figure

More information

Cournot with N rms (revisited)

Cournot with N rms (revisited) Cournot with N rms (revisited) Cournot model with N symmetric rms, constant unit variable cost c, and inverse demand function P(Q) = a bq where Q = N i=1 q i The results: q = a c b (1 + N) p = a + Nc 1

More information

Strategic Production Game 1

Strategic Production Game 1 Lec5-6.doc Strategic Production Game Consider two firms, which have to make production decisions without knowing what the other is doing. For simplicity we shall suppose that the product is essentially

More information

Answer Key. q C. Firm i s profit-maximization problem (PMP) is given by. }{{} i + γ(a q i q j c)q Firm j s profit

Answer Key. q C. Firm i s profit-maximization problem (PMP) is given by. }{{} i + γ(a q i q j c)q Firm j s profit Homework #5 - Econ 57 (Due on /30) Answer Key. Consider a Cournot duopoly with linear inverse demand curve p(q) = a q, where q denotes aggregate output. Both firms have a common constant marginal cost

More information

GS/ECON 5010 section B Answers to Assignment 3 November 2012

GS/ECON 5010 section B Answers to Assignment 3 November 2012 GS/ECON 5010 section B Answers to Assignment 3 November 01 Q1. What is the profit function, and the long run supply function, f a perfectly competitive firm with a production function f(x 1, x ) = ln x

More information

Introduction to Industrial Organization Professor: Caixia Shen Fall 2014 Lecture Note 5 Games and Strategy (Ch. 4)

Introduction to Industrial Organization Professor: Caixia Shen Fall 2014 Lecture Note 5 Games and Strategy (Ch. 4) Introduction to Industrial Organization Professor: Caixia Shen Fall 2014 Lecture Note 5 Games and Strategy (Ch. 4) Outline: Modeling by means of games Normal form games Dominant strategies; dominated strategies,

More information

When one firm considers changing its price or output level, it must make assumptions about the reactions of its rivals.

When one firm considers changing its price or output level, it must make assumptions about the reactions of its rivals. Chapter 3 Oligopoly Oligopoly is an industry where there are relatively few sellers. The product may be standardized (steel) or differentiated (automobiles). The firms have a high degree of interdependence.

More information

In the Name of God. Sharif University of Technology. Graduate School of Management and Economics

In the Name of God. Sharif University of Technology. Graduate School of Management and Economics In the Name of God Sharif University of Technology Graduate School of Management and Economics Microeconomics (for MBA students) 44111 (1393-94 1 st term) - Group 2 Dr. S. Farshad Fatemi Game Theory Game:

More information

DUOPOLY MODELS. Dr. Sumon Bhaumik (http://www.sumonbhaumik.net) December 29, 2008

DUOPOLY MODELS. Dr. Sumon Bhaumik (http://www.sumonbhaumik.net) December 29, 2008 DUOPOLY MODELS Dr. Sumon Bhaumik (http://www.sumonbhaumik.net) December 29, 2008 Contents 1. Collusion in Duopoly 2. Cournot Competition 3. Cournot Competition when One Firm is Subsidized 4. Stackelberg

More information

Chapter 11: Dynamic Games and First and Second Movers

Chapter 11: Dynamic Games and First and Second Movers Chapter : Dynamic Games and First and Second Movers Learning Objectives Students should learn to:. Extend the reaction function ideas developed in the Cournot duopoly model to a model of sequential behavior

More information

CUR 412: Game Theory and its Applications, Lecture 9

CUR 412: Game Theory and its Applications, Lecture 9 CUR 412: Game Theory and its Applications, Lecture 9 Prof. Ronaldo CARPIO May 22, 2015 Announcements HW #3 is due next week. Ch. 6.1: Ultimatum Game This is a simple game that can model a very simplified

More information

Business Strategy in Oligopoly Markets

Business Strategy in Oligopoly Markets Chapter 5 Business Strategy in Oligopoly Markets Introduction In the majority of markets firms interact with few competitors In determining strategy each firm has to consider rival s reactions strategic

More information

A monopoly is an industry consisting a single. A duopoly is an industry consisting of two. An oligopoly is an industry consisting of a few

A monopoly is an industry consisting a single. A duopoly is an industry consisting of two. An oligopoly is an industry consisting of a few 27 Oligopoly Oligopoly A monopoly is an industry consisting a single firm. A duopoly is an industry consisting of two firms. An oligopoly is an industry consisting of a few firms. Particularly, l each

More information

MICROECONOMICS II. Author: Gergely K hegyi. Supervised by Gergely K hegyi. February 2011

MICROECONOMICS II. Author: Gergely K hegyi. Supervised by Gergely K hegyi. February 2011 MICROECONOMICS II. Sponsored by a Grant TÁMOP-4.1.2-08/2/A/KMR-2009-0041 Course Material Developed by Department of Economics, Faculty of Social Sciences, Eötvös Loránd University Budapest (ELTE) Department

More information

EconS Oligopoly - Part 3

EconS Oligopoly - Part 3 EconS 305 - Oligopoly - Part 3 Eric Dunaway Washington State University eric.dunaway@wsu.edu December 1, 2015 Eric Dunaway (WSU) EconS 305 - Lecture 33 December 1, 2015 1 / 49 Introduction Yesterday, we

More information

Answers to Microeconomics Prelim of August 24, In practice, firms often price their products by marking up a fixed percentage over (average)

Answers to Microeconomics Prelim of August 24, In practice, firms often price their products by marking up a fixed percentage over (average) Answers to Microeconomics Prelim of August 24, 2016 1. In practice, firms often price their products by marking up a fixed percentage over (average) cost. To investigate the consequences of markup pricing,

More information

Title: The Relative-Profit-Maximization Objective of Private Firms and Endogenous Timing in a Mixed Oligopoly

Title: The Relative-Profit-Maximization Objective of Private Firms and Endogenous Timing in a Mixed Oligopoly Working Paper Series No. 09007(Econ) China Economics and Management Academy China Institute for Advanced Study Central University of Finance and Economics Title: The Relative-Profit-Maximization Objective

More information

ECON/MGMT 115. Industrial Organization

ECON/MGMT 115. Industrial Organization ECON/MGMT 115 Industrial Organization 1. Cournot Model, reprised 2. Bertrand Model of Oligopoly 3. Cournot & Bertrand First Hour Reviewing the Cournot Duopoloy Equilibria Cournot vs. competitive markets

More information

Elements of Economic Analysis II Lecture XI: Oligopoly: Cournot and Bertrand Competition

Elements of Economic Analysis II Lecture XI: Oligopoly: Cournot and Bertrand Competition Elements of Economic Analysis II Lecture XI: Oligopoly: Cournot and Bertrand Competition Kai Hao Yang /2/207 In this lecture, we will apply the concepts in game theory to study oligopoly. In short, unlike

More information

HE+ Economics Nash Equilibrium

HE+ Economics Nash Equilibrium HE+ Economics Nash Equilibrium Nash equilibrium Nash equilibrium is a fundamental concept in game theory, the study of interdependent decision making (i.e. making decisions where your decision affects

More information

is the best response of firm 1 to the quantity chosen by firm 2. Firm 2 s problem: Max Π 2 = q 2 (a b(q 1 + q 2 )) cq 2

is the best response of firm 1 to the quantity chosen by firm 2. Firm 2 s problem: Max Π 2 = q 2 (a b(q 1 + q 2 )) cq 2 Econ 37 Solution: Problem Set # Fall 00 Page Oligopoly Market demand is p a bq Q q + q.. Cournot General description of this game: Players: firm and firm. Firm and firm are identical. Firm s strategies:

More information

MKTG 555: Marketing Models

MKTG 555: Marketing Models MKTG 555: Marketing Models A Brief Introduction to Game Theory for Marketing February 14-21, 2017 1 Basic Definitions Game: A situation or context in which players (e.g., consumers, firms) make strategic

More information

Math 152: Applicable Mathematics and Computing

Math 152: Applicable Mathematics and Computing Math 152: Applicable Mathematics and Computing May 22, 2017 May 22, 2017 1 / 19 Bertrand Duopoly: Undifferentiated Products Game (Bertrand) Firm and Firm produce identical products. Each firm simultaneously

More information

Microeconomics III. Oligopoly prefacetogametheory (Mar 11, 2012) School of Economics The Interdisciplinary Center (IDC), Herzliya

Microeconomics III. Oligopoly prefacetogametheory (Mar 11, 2012) School of Economics The Interdisciplinary Center (IDC), Herzliya Microeconomics III Oligopoly prefacetogametheory (Mar 11, 01) School of Economics The Interdisciplinary Center (IDC), Herzliya Oligopoly is a market in which only a few firms compete with one another,

More information

Econ 302 Assignment 3 Solution. a 2bQ c = 0, which is the monopolist s optimal quantity; the associated price is. P (Q) = a b

Econ 302 Assignment 3 Solution. a 2bQ c = 0, which is the monopolist s optimal quantity; the associated price is. P (Q) = a b Econ 302 Assignment 3 Solution. (a) The monopolist solves: The first order condition is max Π(Q) = Q(a bq) cq. Q a Q c = 0, or equivalently, Q = a c, which is the monopolist s optimal quantity; the associated

More information

ECONS 424 STRATEGY AND GAME THEORY MIDTERM EXAM #2 ANSWER KEY

ECONS 424 STRATEGY AND GAME THEORY MIDTERM EXAM #2 ANSWER KEY ECONS 44 STRATEGY AND GAE THEORY IDTER EXA # ANSWER KEY Exercise #1. Hawk-Dove game. Consider the following payoff matrix representing the Hawk-Dove game. Intuitively, Players 1 and compete for a resource,

More information

EconS 424 Strategy and Game Theory. Homework #5 Answer Key

EconS 424 Strategy and Game Theory. Homework #5 Answer Key EconS 44 Strategy and Game Theory Homework #5 Answer Key Exercise #1 Collusion among N doctors Consider an infinitely repeated game, in which there are nn 3 doctors, who have created a partnership. In

More information

PRISONER S DILEMMA. Example from P-R p. 455; also 476-7, Price-setting (Bertrand) duopoly Demand functions

PRISONER S DILEMMA. Example from P-R p. 455; also 476-7, Price-setting (Bertrand) duopoly Demand functions ECO 300 Fall 2005 November 22 OLIGOPOLY PART 2 PRISONER S DILEMMA Example from P-R p. 455; also 476-7, 481-2 Price-setting (Bertrand) duopoly Demand functions X = 12 2 P + P, X = 12 2 P + P 1 1 2 2 2 1

More information

Solution Problem Set 2

Solution Problem Set 2 ECON 282, Intro Game Theory, (Fall 2008) Christoph Luelfesmann, SFU Solution Problem Set 2 Due at the beginning of class on Tuesday, Oct. 7. Please let me know if you have problems to understand one of

More information

Horizontal Mergers. Chapter 11: Horizontal Mergers 1

Horizontal Mergers. Chapter 11: Horizontal Mergers 1 Horizontal Mergers Chapter 11: Horizontal Mergers 1 Introduction Merger mania of 1990s disappeared after 9/11/2001 But now appears to be returning Oracle/PeopleSoft AT&T/Cingular Bank of America/Fleet

More information

Econ 101A Final exam May 14, 2013.

Econ 101A Final exam May 14, 2013. Econ 101A Final exam May 14, 2013. Do not turn the page until instructed to. Do not forget to write Problems 1 in the first Blue Book and Problems 2, 3 and 4 in the second Blue Book. 1 Econ 101A Final

More information

Answer Key: Problem Set 4

Answer Key: Problem Set 4 Answer Key: Problem Set 4 Econ 409 018 Fall A reminder: An equilibrium is characterized by a set of strategies. As emphasized in the class, a strategy is a complete contingency plan (for every hypothetical

More information

pq A q A = (6.01q A.01q C )q A q A = 6q A.01q 2 A.01q C q A q A.

pq A q A = (6.01q A.01q C )q A q A = 6q A.01q 2 A.01q C q A q A. In this chapter you will solve problems for firm and industry outcomes when the firms engage in Cournot competition, Stackelberg competition, and other sorts of oligopoly behavior In Cournot competition,

More information

Analysis of a highly migratory fish stocks fishery: a game theoretic approach

Analysis of a highly migratory fish stocks fishery: a game theoretic approach Analysis of a highly migratory fish stocks fishery: a game theoretic approach Toyokazu Naito and Stephen Polasky* Oregon State University Address: Department of Agricultural and Resource Economics Oregon

More information

Exercise Chapter 10

Exercise Chapter 10 Exercise 10.8.1 Where the isoprofit curves touch the gradients of the profits of Alice and Bob point in the opposite directions. Thus, increasing one agent s profit will necessarily decrease the other

More information

Mohammad Hossein Manshaei 1394

Mohammad Hossein Manshaei 1394 Mohammad Hossein Manshaei manshaei@gmail.com 1394 Let s play sequentially! 1. Sequential vs Simultaneous Moves. Extensive Forms (Trees) 3. Analyzing Dynamic Games: Backward Induction 4. Moral Hazard 5.

More information

Microeconomic Theory II Preliminary Examination Solutions Exam date: June 5, 2017

Microeconomic Theory II Preliminary Examination Solutions Exam date: June 5, 2017 Microeconomic Theory II Preliminary Examination Solutions Exam date: June 5, 07. (40 points) Consider a Cournot duopoly. The market price is given by q q, where q and q are the quantities of output produced

More information

IMPERFECT COMPETITION AND TRADE POLICY

IMPERFECT COMPETITION AND TRADE POLICY IMPERFECT COMPETITION AND TRADE POLICY Once there is imperfect competition in trade models, what happens if trade policies are introduced? A literature has grown up around this, often described as strategic

More information

Economics 111 Exam 1 Spring 2008 Prof Montgomery. Answer all questions. Explanations can be brief. 100 points possible.

Economics 111 Exam 1 Spring 2008 Prof Montgomery. Answer all questions. Explanations can be brief. 100 points possible. Economics 111 Exam 1 Spring 2008 Prof Montgomery Answer all questions. Explanations can be brief. 100 points possible. 1) [36 points] Suppose that, within the state of Wisconsin, market demand for cigarettes

More information

Static Games and Cournot. Competition

Static Games and Cournot. Competition Static Games and Cournot Competition Lecture 3: Static Games and Cournot Competition 1 Introduction In the majority of markets firms interact with few competitors oligopoly market Each firm has to consider

More information

Optimal Trade Policies for Exporting Countries under the Stackelberg Type of Competition between Firms

Optimal Trade Policies for Exporting Countries under the Stackelberg Type of Competition between Firms 17 RESEARCH ARTICE Optimal Trade Policies for Exporting Countries under the Stackelberg Type of Competition between irms Yordying Supasri and Makoto Tawada* Abstract This paper examines optimal trade policies

More information

EconS 424 Strategy and Game Theory. Homework #5 Answer Key

EconS 424 Strategy and Game Theory. Homework #5 Answer Key EconS 44 Strategy and Game Theory Homework #5 Answer Key Exercise #1 Collusion among N doctors Consider an infinitely repeated game, in which there are nn 3 doctors, who have created a partnership. In

More information

The Nightmare of the Leader: The Impact of Deregulation on an Oligopoly Insurance Market

The Nightmare of the Leader: The Impact of Deregulation on an Oligopoly Insurance Market The Nightmare of the Leader: The Impact of Deregulation on an Oligopoly Insurance Market Jennifer L. Wang, * Larry Y. Tzeng, and En-Lin Wang Abstract: This paper explores the impact of deregulation of

More information

Introduction to Game Theory

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

More information

Product Di erentiation: Exercises Part 1

Product Di erentiation: Exercises Part 1 Product Di erentiation: Exercises Part Sotiris Georganas Royal Holloway University of London January 00 Problem Consider Hotelling s linear city with endogenous prices and exogenous and locations. Suppose,

More information

ECO410H: Practice Questions 2 SOLUTIONS

ECO410H: Practice Questions 2 SOLUTIONS ECO410H: Practice Questions SOLUTIONS 1. (a) The unique Nash equilibrium strategy profile is s = (M, M). (b) The unique Nash equilibrium strategy profile is s = (R4, C3). (c) The two Nash equilibria are

More information

ECON106P: Pricing and Strategy

ECON106P: Pricing and Strategy ECON106P: Pricing and Strategy Yangbo Song Economics Department, UCLA June 30, 2014 Yangbo Song UCLA June 30, 2014 1 / 31 Game theory Game theory is a methodology used to analyze strategic situations in

More information

Price discrimination in asymmetric Cournot oligopoly

Price discrimination in asymmetric Cournot oligopoly Price discrimination in asymmetric Cournot oligopoly Barna Bakó Corvinus University of Budapest e-mail: Department of Microeconomics Fővám tér 8 H-1085 Budapest, Hungary, barna.bako@uni-corvinus.hu Abstract

More information

These notes essentially correspond to chapter 13 of the text.

These notes essentially correspond to chapter 13 of the text. These notes essentially correspond to chapter 13 of the text. 1 Oligopoly The key feature of the oligopoly (and to some extent, the monopolistically competitive market) market structure is that one rm

More information

EconS Industrial Organization Assignment 6 Homework Solutions

EconS Industrial Organization Assignment 6 Homework Solutions EconS 45 - Industrial Organization Assignment 6 Homework Solutions Assignment 6-1 Return to our vertical integration example we looked at in class today. Suppose now that the downstream rm requires two

More information

Econ 101A Final exam May 14, 2013.

Econ 101A Final exam May 14, 2013. Econ 101A Final exam May 14, 2013. Do not turn the page until instructed to. Do not forget to write Problems 1 in the first Blue Book and Problems 2, 3 and 4 in the second Blue Book. 1 Econ 101A Final

More information

DEPARTMENT OF ECONOMICS WORKING PAPER SERIES. International Trade, Crowding Out, and Market Structure: Cournot Approach. James P.

DEPARTMENT OF ECONOMICS WORKING PAPER SERIES. International Trade, Crowding Out, and Market Structure: Cournot Approach. James P. 1 DEPARTMENT OF ECONOMICS WORKING PAPER SERIES International Trade, Crowding Out, and Market Structure: Cournot Approach James P. Gander Working Paper No: 2017-07 February 2017 University of Utah Department

More information

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

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

More information

UC Berkeley Haas School of Business Economic Analysis for Business Decisions (EWMBA 201A) Fall 2012

UC Berkeley Haas School of Business Economic Analysis for Business Decisions (EWMBA 201A) Fall 2012 UC Berkeley Haas School of Business Economic Analysis for Business Decisions (EWMBA 01A) Fall 01 Oligopolistic markets (PR 1.-1.5) Lectures 11-1 Sep., 01 Oligopoly (preface to game theory) Another form

More information

AS/ECON 2350 S2 N Answers to Mid term Exam July time : 1 hour. Do all 4 questions. All count equally.

AS/ECON 2350 S2 N Answers to Mid term Exam July time : 1 hour. Do all 4 questions. All count equally. AS/ECON 2350 S2 N Answers to Mid term Exam July 2017 time : 1 hour Do all 4 questions. All count equally. Q1. Monopoly is inefficient because the monopoly s owner makes high profits, and the monopoly s

More information

LECTURE NOTES ON GAME THEORY. Player 2 Cooperate Defect Cooperate (10,10) (-1,11) Defect (11,-1) (0,0)

LECTURE NOTES ON GAME THEORY. Player 2 Cooperate Defect Cooperate (10,10) (-1,11) Defect (11,-1) (0,0) LECTURE NOTES ON GAME THEORY September 11, 01 Introduction: So far we have considered models of perfect competition and monopoly which are the two polar extreme cases of market outcome. In models of monopoly,

More information

I. Introduction and definitions

I. Introduction and definitions Economics 335 March 7, 1999 Notes 7: Noncooperative Oligopoly Models I. Introduction and definitions A. Definition A noncooperative oligopoly is a market where a small number of firms act independently,

More information

Duopoly models Multistage games with observed actions Subgame perfect equilibrium Extensive form of a game Two-stage prisoner s dilemma

Duopoly models Multistage games with observed actions Subgame perfect equilibrium Extensive form of a game Two-stage prisoner s dilemma Recap Last class (September 20, 2016) Duopoly models Multistage games with observed actions Subgame perfect equilibrium Extensive form of a game Two-stage prisoner s dilemma Today (October 13, 2016) Finitely

More information

Research Article Welfare Comparison of Leader-Follower Models in a Mixed Duopoly

Research Article Welfare Comparison of Leader-Follower Models in a Mixed Duopoly Applied Mathematics Volume 03 Article ID 307 7 pages http://dx.doi.org/0.55/03/307 Research Article Welfare Comparison of Leader-Follower Models in a Mixed Duopoly Aiyuan Tao Yingjun Zhu and Xiangqing

More information

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

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

More information

Fee versus royalty licensing in a Cournot duopoly model

Fee versus royalty licensing in a Cournot duopoly model Economics Letters 60 (998) 55 6 Fee versus royalty licensing in a Cournot duopoly model X. Henry Wang* Department of Economics, University of Missouri, Columbia, MO 65, USA Received 6 February 997; accepted

More information

FDPE Microeconomics 3 Spring 2017 Pauli Murto TA: Tsz-Ning Wong (These solution hints are based on Julia Salmi s solution hints for Spring 2015.

FDPE Microeconomics 3 Spring 2017 Pauli Murto TA: Tsz-Ning Wong (These solution hints are based on Julia Salmi s solution hints for Spring 2015. FDPE Microeconomics 3 Spring 2017 Pauli Murto TA: Tsz-Ning Wong (These solution hints are based on Julia Salmi s solution hints for Spring 2015.) Hints for Problem Set 3 1. Consider the following strategic

More information

Table 10.1: Elimination and equilibrium. 1. Is there a dominant strategy for either of the two agents?

Table 10.1: Elimination and equilibrium. 1. Is there a dominant strategy for either of the two agents? Chapter 10 Strategic Behaviour Exercise 10.1 Table 10.1 is the strategic form representation of a simultaneous move game in which strategies are actions. s b 1 s b 2 s b 3 s a 1 0, 2 3, 1 4, 3 s a 2 2,

More information

UC Berkeley Haas School of Business Game Theory (EMBA 296 & EWMBA 211) Summer 2016

UC Berkeley Haas School of Business Game Theory (EMBA 296 & EWMBA 211) Summer 2016 UC Berkeley Haas School of Business Game Theory (EMBA 296 & EWMBA 211) Summer 2016 More on strategic games and extensive games with perfect information Block 2 Jun 11, 2017 Auctions results Histogram of

More information

1 Solutions to Homework 3

1 Solutions to Homework 3 1 Solutions to Homework 3 1.1 163.1 (Nash equilibria of extensive games) 1. 164. (Subgames) Karl R E B H B H B H B H B H B H There are 6 proper subgames, beginning at every node where or chooses an action.

More information

REPEATED GAMES. MICROECONOMICS Principles and Analysis Frank Cowell. Frank Cowell: Repeated Games. Almost essential Game Theory: Dynamic.

REPEATED GAMES. MICROECONOMICS Principles and Analysis Frank Cowell. Frank Cowell: Repeated Games. Almost essential Game Theory: Dynamic. Prerequisites Almost essential Game Theory: Dynamic REPEATED GAMES MICROECONOMICS Principles and Analysis Frank Cowell April 2018 1 Overview Repeated Games Basic structure Embedding the game in context

More information

Notes on a Basic Business Problem MATH 104 and MATH 184 Mark Mac Lean (with assistance from Patrick Chan) 2011W

Notes on a Basic Business Problem MATH 104 and MATH 184 Mark Mac Lean (with assistance from Patrick Chan) 2011W Notes on a Basic Business Problem MATH 104 and MATH 184 Mark Mac Lean (with assistance from Patrick Chan) 2011W This simple problem will introduce you to the basic ideas of revenue, cost, profit, and demand.

More information

Econ 101A Final exam Th 15 December. Do not turn the page until instructed to.

Econ 101A Final exam Th 15 December. Do not turn the page until instructed to. Econ 101A Final exam Th 15 December. Do not turn the page until instructed to. 1 Econ 101A Final Exam Th 15 December. Please solve Problem 1, 2, and 3 in the first blue book and Problems 4 and 5 in the

More information

p =9 (x1 + x2). c1 =3(1 z),

p =9 (x1 + x2). c1 =3(1 z), ECO 305 Fall 003 Precept Week 9 Question Strategic Commitment in Oligopoly In quantity-setting duopoly, a firm will make more profit if it can seize the first move (become a Stackelberg leader) than in

More information

The Ohio State University Department of Economics Econ 601 Prof. James Peck Extra Practice Problems Answers (for final)

The Ohio State University Department of Economics Econ 601 Prof. James Peck Extra Practice Problems Answers (for final) The Ohio State University Department of Economics Econ 601 Prof. James Peck Extra Practice Problems Answers (for final) Watson, Chapter 15, Exercise 1(part a). Looking at the final subgame, player 1 must

More information

Volume 29, Issue 1. Second-mover advantage under strategic subsidy policy in a third market model

Volume 29, Issue 1. Second-mover advantage under strategic subsidy policy in a third market model Volume 29 Issue 1 Second-mover advantage under strategic subsidy policy in a third market model Kojun Hamada Faculty of Economics Niigata University Abstract This paper examines which of the Stackelberg

More information

DISCUSSION PAPER SERIES

DISCUSSION PAPER SERIES DISCUSSION PAPER SERIES Discussion paper No. 91 Endogenous Determination of the Liability Rule in Oligopolistic Markets Takao Ohkawa Faculty of Economics, Ritsumeikan University Tetsuya Shinkai School

More information

Economics 51: Game Theory

Economics 51: Game Theory Economics 51: Game Theory Liran Einav April 21, 2003 So far we considered only decision problems where the decision maker took the environment in which the decision is being taken as exogenously given:

More information

Advertisement Competition in a Differentiated Mixed Duopoly: Bertrand vs. Cournot

Advertisement Competition in a Differentiated Mixed Duopoly: Bertrand vs. Cournot Advertisement Competition in a Differentiated Mixed Duopoly: Bertrand vs. Cournot Sang-Ho Lee* 1, Dmitriy Li, and Chul-Hi Park Department of Economics, Chonnam National University Abstract We examine the

More information

CORVINUS ECONOMICS WORKING PAPERS. Quota bonuses as localized sales bonuses. by Barna Bakó, András Kálecz-Simon CEWP 1/2016

CORVINUS ECONOMICS WORKING PAPERS. Quota bonuses as localized sales bonuses. by Barna Bakó, András Kálecz-Simon CEWP 1/2016 CORVINUS ECONOMICS WORKING PAPERS CEWP 1/016 Quota bonuses as localized sales bonuses by Barna Bakó, András Kálecz-Simon http://unipub.lib.uni-corvinus.hu/180 Quota bonuses as localized sales bonuses Barna

More information

Econ 711 Homework 1 Solutions

Econ 711 Homework 1 Solutions Econ 711 Homework 1 s January 4, 014 1. 1 Symmetric, not complete, not transitive. Not a game tree. Asymmetric, not complete, transitive. Game tree. 1 Asymmetric, not complete, transitive. Not a game tree.

More information

Lecture Note 3. Oligopoly

Lecture Note 3. Oligopoly Lecture Note 3. Oligopoly 1. Competition by Quantity? Or by Price? By what do firms compete with each other? Competition by price seems more reasonable. However, the Bertrand model (by price) does not

More information

Lecture 5: Strategic commitment and applications to entry and exit

Lecture 5: Strategic commitment and applications to entry and exit Lecture 5: Strategic commitment and applications to entry and exit. Credible commitments. Preemption 3. Predation 4. Taxonomy of strategic commitments 5. Some Examples of Entry Deterrence Credible Commitments

More information

MS&E HW #1 Solutions

MS&E HW #1 Solutions MS&E 341 - HW #1 Solutions 1) a) Because supply and demand are smooth, the supply curve for one competitive firm is determined by equality between marginal production costs and price. Hence, C y p y p.

More information

Economics 171: Final Exam

Economics 171: Final Exam Question 1: Basic Concepts (20 points) Economics 171: Final Exam 1. Is it true that every strategy is either strictly dominated or is a dominant strategy? Explain. (5) No, some strategies are neither dominated

More information

STRATEGIC VERTICAL CONTRACTING WITH ENDOGENOUS NUMBER OF DOWNSTREAM DIVISIONS

STRATEGIC VERTICAL CONTRACTING WITH ENDOGENOUS NUMBER OF DOWNSTREAM DIVISIONS STRATEGIC VERTICAL CONTRACTING WITH ENDOGENOUS NUMBER OF DOWNSTREAM DIVISIONS Kamal Saggi and Nikolaos Vettas ABSTRACT We characterize vertical contracts in oligopolistic markets where each upstream firm

More information

LECTURE 17: STRATEGIC INTERACTION

LECTURE 17: STRATEGIC INTERACTION LECTURE 17: STRATEGIC INTERACTION Today s Topics: Oligopoly 1. Tw o Sellers: price takers versus a monopoly (car tel) versus... 2. A Cournot Duopoly: payoff matrices, dominant strategies, Nash Equilibrium.

More information

Answers to Problem Set 4

Answers to Problem Set 4 Answers to Problem Set 4 Economics 703 Spring 016 1. a) The monopolist facing no threat of entry will pick the first cost function. To see this, calculate profits with each one. With the first cost function,

More information

The Ohio State University Department of Economics Second Midterm Examination Answers

The Ohio State University Department of Economics Second Midterm Examination Answers Econ 5001 Spring 2018 Prof. James Peck The Ohio State University Department of Economics Second Midterm Examination Answers Note: There were 4 versions of the test: A, B, C, and D, based on player 1 s

More information

Microeconomics II. CIDE, MsC Economics. List of Problems

Microeconomics II. CIDE, MsC Economics. List of Problems Microeconomics II CIDE, MsC Economics List of Problems 1. There are three people, Amy (A), Bart (B) and Chris (C): A and B have hats. These three people are arranged in a room so that B can see everything

More information

Is a Threat of Countervailing Duties Effective in Reducing Illegal Export Subsidies?

Is a Threat of Countervailing Duties Effective in Reducing Illegal Export Subsidies? Is a Threat of Countervailing Duties Effective in Reducing Illegal Export Subsidies? Moonsung Kang Division of International Studies Korea University Seoul, Republic of Korea mkang@korea.ac.kr Abstract

More information

2- Demand and Engel Curves derive from consumer optimal choice problem: = PL

2- Demand and Engel Curves derive from consumer optimal choice problem: = PL Correction opics -he values of the utility function have no meaning. he only relevant property is how it orders the bundles. Utility is an ordinal measure rather than a cardinal one. herefore any positive

More information

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

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

More information

Dynamic Games. Econ 400. University of Notre Dame. Econ 400 (ND) Dynamic Games 1 / 18

Dynamic Games. Econ 400. University of Notre Dame. Econ 400 (ND) Dynamic Games 1 / 18 Dynamic Games Econ 400 University of Notre Dame Econ 400 (ND) Dynamic Games 1 / 18 Dynamic Games A dynamic game of complete information is: A set of players, i = 1,2,...,N A payoff function for each player

More information

Strategic Pre-Commitment

Strategic Pre-Commitment Strategic Pre-Commitment Felix Munoz-Garcia EconS 424 - Strategy and Game Theory Washington State University Strategic Commitment Limiting our own future options does not seem like a good idea. However,

More information