Math Spring 2017 Mathematical Models in Economics

Size: px
Start display at page:

Download "Math Spring 2017 Mathematical Models in Economics"

Transcription

1 Steven Tschantz Math Spring 2017 Mathematical Models in Economics Steven Tschantz 2/7/17 Profit maximizing firms Logit demand model Problem Determine the impact of a merger between two of a number of competing firms in a differentiated product market where consumers choose between products. Find an analytically and computationally tractable choice model of demand that can be used for more than just two products, that has a reasonably small number of free parameters, can be calibrated to limited demand data, and can be used for calculating Nash equilibrium, profit maximizing, pricing for firms selling the products. Model We imagine that firms are profit maximizing before the merger, use current price and quantity data and any available demand elasticity estimates to calibrate a demand model and estimate firms' marginal costs. Then, assuming the firms will be profit maximizing after the merger, we can determine price increases for the merged firm and the responses of the other firms in Nash equilibrium. To make any of this practical, we need a reasonable computational model of demand. In particular, if the model has too many parameters, then it will be difficult to get enough data to adequately calibrate the model. We will have to make some arbitrary simplifying assumptions in any case, and there is some sense in which the best idea is to take a model derived from certain basic assumptions. What we need in merger analysis is some idea of the magnitude of the effects of a merger, not a precise prediction. We rarely have enough data or time to make a detailed industry projection. If enough data is available to contradict the

2 LogitDemandModel.nb basic assumptions of the model, then a more elaborate model can be formulated. The specification of a parsimonious demand model (one with relatively few parameters) is a practical question, not a theoretical one. We have given a general choice model of demand; it is simply(?) a matter of defining the joint distribution of values for products over the population of all potential consumers. The choice probabilities of products, as functions of the prices of products, are given by certain (multidimensional) integrals, which can at least be numerically integrated. Derivatives of choice probabilities, as derivatives of the integrals defining the choice probabilities, can be expressed in turn as more complicated integrals, so elasticities and first order equilibrium conditions can all be written down. Computation of profit maximizing prices can be computed by numerical root finding where the functions to be evaluated are computed by numerical integration. At least, in principle. A general enough demand model would allow us to calibrate the model to arbitrary quantities at given prices and own and cross price elasticities. If there are n products, the elasticity matrix has n 2 entries. However, rarely is there enough good data to estimate a full elasticity matrix. Such an estimation would require prices of the products to vary sufficiently and vary independently of each other enough to determine how demand shifts between products in response to changes in each price alone. But prices frequently vary up and down together, because of competition between firms, in response to changing conditions and changing demand. It is simple enough to calibrate a linear or constant elasticity demand to n quantities and n 2 elasticities at given prices, if we had such estimates. Instead, focusing on a choice model of demand constrains how demand shifts between products. What one product loses in demand because of an increase in price, may partially add to the demand for competing products, the rest of the lost demand choosing not to purchase any product. We would not expect to see more added demand for competing products than is lost by the product with increased price. However further simplifications are necessary. Independent values - normal distributions It is hard to specify and evaluate multivariate distributions where the variables are not independent. In any case, we would not want to have to calibrate a model requiring perhaps n 2 independent covariance parameters. Instead, consider models where the consumer values of the different products vary independently over the population of consumers. For example, suppose there are n 3 products, selling for prices p 1, p 2, and p 3, where consumer values are independent random variables V i, given by cumulative distribution functions F i (x), or probability density functions f i (x). Then the joint probability density function for values is f(x 1, x 2, x 3 ) f 1 (x 1 ) f 2 (x 2 ) f 3 (x 3 ), and the joint distribution function is F(v 1, v 2, v 3 ) Prob(V 1 v 1, V 2 v 2, and V 3 v 3 ) v 1 v 2 v f(x 1, x 2, x 3 ) dx 3 dx 2 dx 1 v 1 v - f 1 (x 1 ) dx 2 v 1 - f 2 (x 2 ) dx f 3 (x 3 ) dx 3 F 1 (v 1 ) F 2 (v 2 ) F 3 (v 3 ) The choice probability for, say, product 1 is then

3 05.1-LogitDemandModel.nb 3 π 1 (p 1, p 2, p 3 ) Prob(V 1 - p 1 > 0, V 2 - p 2, and V 3 - p 3 ) x 1 -p 1 +p 2 - x 1 -p 1 +p 3 p1 - f(x 1, x 2, x 3 ) dx 3 dx 2 dx 1 x p1 f 1 (x 1 ) 1 -p 1 +p 2 x - f 2 (x 2 ) dx 2 1 -p 1 +p 3 - f 3 (x 3 ) dx 3 dx 1 p1 f 1 (x 1 ) F 2 (x 1 - p 1 + p 2 ) F 3 (x 1 - p 1 + p 3 ) dx 1 0 f 1 (u 1 + p 1 ) F 2 (u 1 + p 2 ) F 3 (u 1 + p 3 ) du 1 For example, with V i independent normally distributed variables with means μ i and standard deviations σ i, we would compute In[1]: Clear[choiceprob1, mu1, mu2, mu3, sigma1, sigma2, sigma3] In[2]: choiceprob1[p1_, p2_, p3_] Integrate[PDF[NormalDistribution[mu1, sigma1], u1 + p1] * CDF[NormalDistribution[mu2, sigma2], u1 + p2] * CDF[NormalDistribution[mu3, sigma3], u1 + p3], {u1, 0, Infinity}] (-mu1+p1+u1)2 e- 2 sigma12 Erfc mu2-p2-u1 mu3-p3-u1 Erfc 2 sigma2 2 sigma3 Out[2] π sigma1 du1 And though Mathematica will try very hard, there is no reasonable formula for this integral. Instead, we would have to do a numerical integration, which since it is one-dimensional would not be too bad. Assign some values for the means and standard deviations for example. In[3]: Clear[choiceprob1, mu1, mu2, mu3, sigma1, sigma2, sigma3] In[4]: mu1 20.; mu2 15.; mu3 25.; sigma1 5.; sigma2 2.; sigma3 7.; In[10]: choiceprob1[p1_, p2_, p3_] : NIntegrate[PDF[NormalDistribution[mu1, sigma1], u1 + p1] * CDF[NormalDistribution[mu2, sigma2], u1 + p2] * CDF[NormalDistribution[mu3, sigma3], u1 + p3], {u1, 0, Infinity}]; In[11]: choiceprob1[20., 15., 25.] Out[11]

4 LogitDemandModel.nb In[12]: Plot[choiceprob1[p1, 15., 25.], {p1, 0., 30.}] Out[12] In[13]: ContourPlot[choiceprob1[p1, p2, 25.], {p1, 0., 30.}, {p2, 0., 20.}] Out[13] Computing the elasticity of demand requires that we evaluate the derivative of the choice probability integral. But since this integral is numerically defined, we need to compute this numerically as well. dπ 1 (p 1,p 2,p 3 ) dp 1 0 f 1 (u1 + p 1 ) F 2 (u 1 + p 2 ) F 3 (u 1 + p 3 ) du 1 In[14]: dpdf1[x_] D[PDF[NormalDistribution[mu1, sigma1], x], x] Out[14] e (-20.+x)2 ( x) In[15]: dchoiceprob1dp1[p1_, p2_, p3_] : NIntegrate[dpdf1[u1 + p1] * CDF[NormalDistribution[mu2, sigma2], u1 + p2] * CDF[NormalDistribution[mu3, sigma3], u1 + p3], {u1, 0, Infinity}];

5 05.1-LogitDemandModel.nb 5 In[16]: dchoiceprob1dp1[20., 15., 25.] Out[16] In[17]: choiceprob1[20.01, 15., 25.] - choiceprob1[20., 15., 25.] 0.01 Out[17] In[18]: elast11 dchoiceprob1dp1[20., 15., 25.] * 20. choiceprob1[20., 15., 25.] Out[18] The total demands are given by multiplying the choice probabilities by the size of the population of consumers. This model requires 2 n + 1 parameters, the means and standard deviations of the n products and the population. It requires one-dimensional numerical integration to evaluate choice probabilities and derivatives. While practical we can do better. The outside good We make one modification to the assumption that consumer values for products are independent. The n products are considered the inside goods, meaning the products that we explicitly consider, evaluating their price response to a merger. The consumer may choose not to purchase any of the inside goods, deciding not to purchase, or perhaps choosing a product not modeled, a product whose price is considered constant and not responding to a merger and which we do not observe. Either of these cases is considered the outside good. We have imagined that the values of inside goods are measured relative to a fixed value for the outside good. But we could as well imagine that the outside good, say indexed by i 0, also has a value V 0 independent as well of the other V i, say taking a price for the outside good of p 0 0. The consumer chooses one of the inside goods or the outside good, whichever gives the maximum of V i - p i even if this value is negative, choosing the least bad choice in essence, since we include for i 0 an explicit value for the outside good. Then the probability of choosing any given product is a function of the prices and the differences V i - V 0, and since V 1 - V 0 and V 2 - V 0 include the same component V 0, these relative values will no longer be independent, unless V 0 is a constant. As an aside, in programming I usually take a list of n + 1 values representing the n inside goods plus outside good, and since lists start indexing at 1 not 0, it often proves convenient to take the last element of the list as the outside good. Mathematica takes negative indices as counting from the end of the list backwards, so the -1 index is the last element of the list. The choice probability integral for 3 products plus the outside good becomes π 1 (p 1, p 2, p 3 ) Prob(V 1 - p 1 > V 0 - p 0, V 2 - p 2, and V 3 - p 3 ) x 1 -p 1 +p 0 - x 1 -p 1 +p 2 - x 1 -p 1 +p f(x 1, x 2, x 3 ) dx 3 dx 2 dx 0 dx 1 - f 1 (x 1 ) F 0 (x 1 - p 1 + p 0 ) F 2 (x 1 - p 1 + p 2 ) F 3 (x 1 - p 1 + p 3 ) dx 1 - f 1 (u 1 + p 1 ) F 0 (u 1 + p 0 ) F 2 (u 1 + p 2 ) F 3 (u 1 + p 3 ) du 1 To make this work out nicely, the translations F i (x + p i ) of the F i (x), should be simply related to each other. Also the products of F i (x) should have a simple formulation. The product F 0 (u 1 + p 0 ) F 2 (u 1 + p 2 ) F 3 (u 1 + p 3 ) Prob(u 1 max(v 0 - p 0, V 2 - p 2, V 3 - p 3 ))

6 LogitDemandModel.nb is the distribution function for the maximum of translations of independent random variables, so it would be nice to have a class of distributions, closed under translations and under maximums. The extreme value distribution The average of n independent samples from a distribution, under broad assumptions, tends to a normal distribution as n, the mean being the mean of the distribution and the variance decreasing as 1/n. On the other hand, the maximum of n independent samples from a distribution, under certain assumptions, tends to an extreme value distribution. In[19]: sample : Table[Random[NormalDistribution[0, 1]], {60}]; In[20]: maxsample : Max[sample]; In[21]: maxsample Out[21] In[22]: maxsample Out[22] In[23]: sortedmaxsamples Sort[Table[maxsample, {500}]] Out[23] { , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , 1.833, , , , , , , , , , , , , 1.881, , , 1.893, , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , 2.222, , , ,

7 05.1-LogitDemandModel.nb , , , , , , , , , , , , , , , , , , 2.261, , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , 2.611, , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , 3.366, , , , , , , , } Sorting the results from taking the maximum of 60 standard normally distributed samples gives an idea of how the maxima are distributed. Here is a picture approximating the CDF for the maximum of 60 standard normally distributed samples.

8 LogitDemandModel.nb In[24]: maxsamplescdfplot ListPlot[Table[{sortedmaxsamples[[i]], i / Length[sortedmaxsamples]}, {i, 1, Length[sortedmaxsamples]}]] Out[24] It is harder to get a reasonable picture of the PDF. In[25]: maxsamplespdfplot ListPlot Transpose Drop[Drop[sortedmaxsamples, 10], -10], 20 Length[sortedmaxsamples] Drop[sortedmaxsamples, 20] - Drop[sortedmaxsamples, -20] Out[25] The density looks "spiky", and while we should expect some random clustering of results and so noise in this plot, it might also partly be due to roundoff or other imperfections in the random number generation process. This no longer looks like a normal distribution; it is no longer symmetrical, with a fatter tail on the right. In[26]:? ExtremeValueDistribution ExtremeValueDistribution[α, β] represents an extreme value distribution with location parameter α and scale parameter β. ExtremeValueDistribution[] represents an extreme value distribution with location parameter 0 and scale parameter 1. The mean and standard deviation of an extreme value distribution are not the same as the location and scale parameters, though they are simply related. Since I use α and β frequently for other purposes, I use η and λ for the location and scale parameters.

9 05.1-LogitDemandModel.nb 9 In[27]: Mean[ExtremeValueDistribution[eta, ]] Out[27] eta + EulerGamma In[28]: Out[28] StandardDeviation[ExtremeValueDistribution[eta, ]] π 6 To match the above distribution to the extreme value distribution approximating it we solve for the scale and location parameters giving the same mean and standard deviation. In[29]: Mean[sortedmaxsamples] Out[29] In[30]: StandardDeviation[sortedmaxsamples] Out[30] In[31]: evsoln Solve[{Mean[ExtremeValueDistribution[eta, ]] Mean[sortedmaxsamples], StandardDeviation[ExtremeValueDistribution[eta, ]] StandardDeviation[sortedmaxsamples]}, {eta, }] Out[31] {{eta , }} In[32]: evdist ExtremeValueDistribution[eta, ] /. evsoln[[1]] Out[32] ExtremeValueDistribution[2.1218, ] We can visually see the correspondence. In[33]: evcdfplot Plot[CDF[evdist, x], {x, 1.0, 4.5}] Out[33]

10 LogitDemandModel.nb In[34]: Show[evCDFplot, maxsamplescdfplot] Out[34] In[35]: evpdfplot Plot[PDF[evdist, x], {x, 1.0, 4.5}] Out[35] In[36]: Show[evPDFplot, maxsamplespdfplot, PlotRange All] Out[36] Here is the CDF of the extreme value distribution and some properties of this distribution. In[37]: CDF[ExtremeValueDistribution[eta, ], x] Out[37] e -e- -eta+x Translation of an extreme value distribution is again an extreme value distribution.

11 05.1-LogitDemandModel.nb 11 In[38]: Out[38] Simplify[CDF[ExtremeValueDistribution[eta, ], x + p] True CDF[ExtremeValueDistribution[eta - p, ], x]] The maximum of extreme value distributions with the same scale parameter is again an extreme value distribution. In[39]: Simplify CDF[ExtremeValueDistribution[eta1, ], x] * Out[39] True CDF[ExtremeValueDistribution[eta2, ], x] CDF ExtremeValueDistribution * Log Exp eta1 + Exp eta2,, x If F(x) is the CDF and f(x) is the PDF of an extreme value distribution function with location η and scale λ, then log(f(x + p)) -exp(-(x + p - η)/λ) -exp(-p/λ) exp(-(x - η)/λ) exp(p/λ) log(f(x)) and so by differentiating, f (x+p) f(x) exp(-p/λ) F(x+p) F(x) In[40]: Simplify[PDF[ExtremeValueDistribution[eta, ], x + p] / Out[40] True CDF[ExtremeValueDistribution[eta, ], x + p] Exp[- p / ] * PDF[ExtremeValueDistribution[eta, ], x] / CDF[ExtremeValueDistribution[eta, ], x]] Logit demand model We mean to evaluate the choice probability π 1 (p 1, p 2, p 3 ) - f 1 (u 1 + p 1 ) F 0 (u 1 + p 0 ) F 2 (u 1 + p 2 ) F 3 (u 1 + p 3 ) du 1 f 1 (u 1 +p 1 ) F - F 1 (u 1 +p 1 ) 0(u 1 + p 0 ) F 1 (u 1 + p 1 ) F 2 (u 1 + p 2 ) F 3 (u 1 + p 3 ) du 1 Suppose now the V i are independent extreme value distributed random variables with location parameters η i and the same scale parameter λ. Set p 0 0. Since only differences in values matter, we may as well set η 0 0. Then F i (x) exp -e (x-η i)/λ, so F i (x + p i ) is the CDF of an e.v. distribution with location η i - p i, and F max (u 1 ) Prob(u 1 max(v 0 - p 0, V 1 - p 1, V 2 - p 2, V 3 - p 3 )) F 0 (u 1 + p 0 ) F 0 (u 1 + p 1 ) F 2 (u 1 + p 2 ) F 3 (u 1 + p 3 ) is the CDF of an extreme value distributed random variable V max max(v 0, V 1, V 2, V 3 ) with location parameter η max λlog(exp((η 0 - p 0 )/λ) + exp((η 1 - p 1 )/λ) + exp((η 2 - p 2 )/λ) + exp((η 3 - p 3 )/λ)) and scale parameter λ. Let f max (u 1 ) be the corresponding PDF. Then log(f 1 (u 1 + p 1 )) -exp(-(u 1 + p 1 - η 1 )/λ) -exp((η 1 - p 1 - η max )/λ) exp(-(u 1 - η max )/λ) exp((η 1 - p 1 - η max )/λ) log(f max (u 1 )) so by differentiating we have

12 LogitDemandModel.nb f 1 (u 1 +p 1 ) exp((η F 1 (u 1 +p 1 ) 1 - p 1 - η max )/λ) f max(u 1 ) F max (u 1 ) So the choice probability integral becomes f π 1 (p 1, p 2, p 3 ) 1 (u 1 +p 1 ) F - F 1 (u 1 +p 1 ) 0(u 1 + p 0 ) F 1 (u 1 + p 1 ) F 2 (u 1 + p 2 ) F 3 (u 1 + p 3 ) du 1 f max (u 1 ) exp((η 1 - p 1 - η max )/λ) F - F max (u 1 ) max(u 1 ) du 1 exp((η 1 - p 1 - η max )/λ) exp((η 1 -p 1 )/λ) exp((η 0 -p 0 )/λ)+exp((η 1 -p 1 )/λ)+exp((η 2 -p 2 )/λ)+exp((η 3 -p 3 )/λ) exp((η 1 -p 1 )/λ) 1+exp((η 1 -p 1 )/λ)+exp((η 2 -p 2 )/λ)+exp((η 3 -p 3 )/λ) since η 0 p 0 0. The choice probabilities for the other products are of course similar. The choice probability for the outside good is then likewise exp((η 0 -p 0 )/λ) exp((η 0 -p 0 )/λ)+exp((η 1 -p 1 )/λ)+exp((η 2 -p 2 )/λ)+exp((η 3 -p 3 )/λ) 1 1+exp((η 1 -p 1 )/λ)+exp((η 2 -p 2 )/λ)+exp((η 3 -p 3 )/λ) π 0 (p 1, p 2, p 3 ) Of course, exactly similar formulas apply if there are more than 3 products. The total demands for each product are given by multiplying the choice probabilities by the total population of consumers, or a market size scale factor, M. q i (p 1, p 2, p 3 ) M exp((η i -p i )/λ) 1+exp((η 1 -p 1 )/λ)+exp((η 2 -p 2 )/λ)+exp((η 3 -p 3 )/λ) This is called the logit demand model. There are n + 2 parameters, the n location parameters η i, the scale parameter λ, and the market size M. In[41]: etamax * Log Exp eta0 - p0 + Out[41] Exp eta1 - p1 + Exp eta2 - p2 + Exp eta3 - p3 Log e eta0-p0 + e eta1-p1 + e eta2-p2 + e eta3-p3 In[42]: Simplify PDF[ExtremeValueDistribution[eta1, ], u1 + p1] * Out[42] True CDF[ExtremeValueDistribution[eta0, ], u1 + p0] * CDF[ExtremeValueDistribution[eta2, ], u1 + p2] * CDF[ExtremeValueDistribution[eta3, ], u1 + p3] Exp eta1 - p1 - etamax * PDF[ExtremeValueDistribution[etamax, ], u1] In[43]: Integrate[PDF[ExtremeValueDistribution[eta1, ], u1 + p1] * CDF[ExtremeValueDistribution[eta0, ], u1 + p0] * CDF[ExtremeValueDistribution[eta2, ], u1 + p2] * CDF[ExtremeValueDistribution[eta3, ], u1 + p3], {u1, - Infinity, Infinity}, Assumptions { > 0}] Out[43] e eta3+p0+p1+p2 + e eta2+p0+p1+p3 e eta1+p0+p2+p3 + e eta1+p0+p2+p3 + e eta0+p1+p2+p3

13 05.1-LogitDemandModel.nb 13 In[44]: Simplify Exp eta1 - p1 - etamax Out[44] e eta3+p0+p1+p2 + e eta2+p0+p1+p3 e eta1+p0+p2+p3 + e eta1+p0+p2+p3 + e eta0+p1+p2+p3 In[45]: Simplify Exp eta1 - p1 - etamax /. {eta1 - p1 nu1} /. {nu1 eta1 - p1} Out[45] e eta0-p0 + e eta1-p1 e eta1-p1 + e eta2-p2 + e eta3-p3 In[46]: Clear[choiceprob1]; In[47]: choiceprob1[p1_, p2_, p3_] Simplify Exp eta1 - p1 - etamax /. {eta1 - p1 nu1} /. {nu1 eta1 - p1} /. {eta0 0, p0 0} Out[47] 1 + e eta1-p1 e eta1-p1 + e eta2-p2 + e eta3-p3 Model calibration Next, we need to be able to calibrate a logit demand model to given conditions. The demands q i (p 1,..., p n ) M exp((η i -p i )/λ) 1+exp((η 1 -p 1 )/λ)+...+exp((η n -p n )/λ) are determined by the n + 2 parameters η i, λ, and M Suppose that the demands at prices p i * are q i * for i 1,..., n. The conditions q i (p i * ) q i * give n conditions on the parameters. Generally, we cannot observe the consumers that choose not to buy one of the inside goods, so we cannot know M and the choice probabilities directly. For given λ and M, it is not difficult to solve for the location parameters η i. The problem is how to estimate reasonable values of λ and M. Now we may want simply to guess at λ and M, trying a range of values for these parameters, possibly computing the characteristics of the implied demand functions to determine which combinations are plausible, and then derive the merger effects for these combinations of parameters to get a feel for the range of likely consequences of a merger. A more systematic procedure is to calibrate these parameters to corresponding demand characteristics, estimate these characteristics directly, or else try a range of plausible values for these more intuitive quantities. In any case, getting reliable information about demand beyond current prices and quantities is often problematic. What merger modeling does is give a systematic procedure for translating expert opinion about the basic characteristics of demand into a specific demand model and the consequential merger effects. The parameter M represents the total population of consumers. The quantity q 0 M - q q n represents the number of consumers who choose not to buy, the larger M is, the larger q 0 and the more attractive the outside good. As the prices of all inside goods increase, consumers will switch to the outside good, and the more attractive the outside good the more readily consumers will switch. To capture this sensitivity of the total demand for the inside goods with respect to the prices of the inside goods, we define an aggregate elasticity of demand. Imagine increasing all of the prices of inside goods by the same Δp. Then the total demand for inside goods increases by some Δq inside. To

14 LogitDemandModel.nb express this relationship as an elasticity we should multiply Δq inside /Δp by some average price and divide by the total demand for inside goods q iniside. The appropriate average price is to weight the p i by the quantities q i. The aggregate elasticity is then i1 ϵ aggregate lim n q i (p 1 +Δp,...,p n +Δp)-q i (p 1,...,p n ) Δp 0 Δp i1 n p i q i (p 1,...,p n ) ( i1 n q i (p 1,...,p n )) 2 To express this more simply, note that q 0 M - q inside, and imagine that we take p 0 as a variable instead of a constant equal to 0. Increasing the prices of all the inside products is equivalent to decreasing the price p 0 of the outside good; the choice of the maximum of V i - (p i + Δp) or V 0 - p 0 gives the same result as the choice of the maximum of V i - p i or V 0 - (p 0 - Δp), the only difference being the addition of Δp to each of the quantities to be compared. Thus with q 0 we have M exp((η 0 -p 0 )/λ) exp((η 0 -p 0 )/λ)+exp((η 1 -p 1 )/λ)+...+exp((η n -p n )/λ) i1 lim n q i (p 1 +Δp,...,p n +Δp)-q i (p 1,...,p n ) Δp 0 dq 0 Δp dp 0 then substituting p 0 0. We calculate dq 0 dp 0-1 λ q λ q 0 2 M - q 0 λm (M - q 0) and (M - q 0 ) is the total demand for the inside goods so ϵ aggregate - q 0 p λm - p λ where p i1 n p i q i (p 1,...,p n ) n q i (p 1,...,p n ) i1 i1 1 - n M q i - π 0 p λ - p λ 1 1+exp((η 1 -p 1 )/λ)+...+exp((η n -p n )/λ) is the average price. As M increases starting from n i1 q i, ϵ aggregate decreases from 0 approaching a limiting value of - p. Within this range, assuming p and λ are given, we can solve for the M giving a λ specified aggregate elasticity of demand for the inside goods. That leaves the parameter λ to be determined. Recall that λ is proportional to the standard deviation of the values distribution of each product. The smaller λ is, the more sensitive demand will be to price differences, that is, the greater will be the price elasticity of demand of any product. For example, the own price elasticity of demand for product 1 is q1 1- M ϵ 11 - p 1 - (1-π 1) p 1. λ λ The aggregate elasticity and own price elasticity of one product can be used in combination to determine the λ and M parameters. In[48]: Out[48] Simplify D[choiceprob1[p1, p2, p3], p1] * p1 choiceprob1[p1, p2, p3] True choiceprob1[p1, p2, p3] * p1 Summary The logit choice model for n inside products is specified by n location parameters η i (reflecting mean consumer values), a scale parameter λ (in proportion to the standard deviations of consumer values), and a total consumer population, or market size, M. The choice probability for product i is given by

15 05.1-LogitDemandModel.nb 15 π i (p 1,..., p n ) exp((η i -p i )/λ) 1+exp((η 1 -p 1 )/λ)+...+exp((η n -p n )/λ) and the demand for product i is then q i (p 1,..., p n ) Mπ i (p 1,..., p n ) M exp((η i -p i )/λ) 1+exp((η 1 -p 1 )/λ)+...+exp((η n -p n )/λ). The choice probability and demand for the outside good are π 0 (p 1,..., p n ) and 1 1+exp((η 1 -p 1 )/λ)+...+exp((η n -p n )/λ) q 0 (p 1,..., p n ) Mπ 0 (p 1,..., p n ) M 1+exp((η 1 -p 1 )/λ)+...+exp((η n -p n )/λ). The aggregate elasticity of demand is defined by ϵ aggregate - p λ where p i1 n p i q i (p 1,...,p n ) n q i (p 1,...,p n ) i1 i1 1 - n M q i is the average price. The own price elasticity of demand for product 1, for example, is q1 1- M ϵ 11 - p 1. λ * Given initial prices and demands p i and q * i, the location parameters η i can be found in terms of λ and M from the conditions q i (p i * ) q i *. The values of λ and M can be determined from specified estimates of * the aggregate elasticity ϵ aggregate and an own price elasticity of one product, say, ϵ * 11, so that * ϵ aggregate ϵ aggregate and ϵ 11 ϵ * 11.

4. Partial Equilibrium under Imperfect Competition

4. Partial Equilibrium under Imperfect Competition 4. Partial Equilibrium under Imperfect Competition Partial equilibrium studies the existence of equilibrium in the market of a given commodity and analyzes its properties. Prices in other markets as well

More information

Bresnahan, JIE 87: Competition and Collusion in the American Automobile Industry: 1955 Price War

Bresnahan, JIE 87: Competition and Collusion in the American Automobile Industry: 1955 Price War Bresnahan, JIE 87: Competition and Collusion in the American Automobile Industry: 1955 Price War Spring 009 Main question: In 1955 quantities of autos sold were higher while prices were lower, relative

More information

Bertrand Model of Price Competition. Advanced Microeconomic Theory 1

Bertrand Model of Price Competition. Advanced Microeconomic Theory 1 Bertrand Model of Price Competition Advanced Microeconomic Theory 1 ҧ Bertrand Model of Price Competition Consider: An industry with two firms, 1 and 2, selling a homogeneous product Firms face market

More information

Empirical Industrial Organization (ECO 310) University of Toronto. Department of Economics Fall Instructor: Victor Aguirregabiria

Empirical Industrial Organization (ECO 310) University of Toronto. Department of Economics Fall Instructor: Victor Aguirregabiria Empirical Industrial Organization (ECO 30) University of Toronto. Department of Economics Fall 208. Instructor: Victor Aguirregabiria FINAL EXAM Tuesday, December 8th, 208. From 7pm to 9pm (2 hours) Exam

More information

Mathematics 2 for Business Schools Topic 7: Application of Integration to Economics. Building Competence. Crossing Borders.

Mathematics 2 for Business Schools Topic 7: Application of Integration to Economics. Building Competence. Crossing Borders. Mathematics 2 for Business Schools Topic 7: Application of Integration to Economics Building Competence. Crossing Borders. Spring Semester 2017 Learning objectives After finishing this section you should

More information

GS/ECON 5010 Answers to Assignment 3 W2005

GS/ECON 5010 Answers to Assignment 3 W2005 GS/ECON 500 Answers to Assignment 3 W005 Q. What are the market price, and aggregate quantity sold, in long run equilibrium in a perfectly competitive market f which the demand function has the equation

More information

Train the model with a subset of the data. Test the model on the remaining data (the validation set) What data to choose for training vs. test?

Train the model with a subset of the data. Test the model on the remaining data (the validation set) What data to choose for training vs. test? Train the model with a subset of the data Test the model on the remaining data (the validation set) What data to choose for training vs. test? In a time-series dimension, it is natural to hold out the

More information

Econ 110: Introduction to Economic Theory. 8th Class 2/7/11

Econ 110: Introduction to Economic Theory. 8th Class 2/7/11 Econ 110: Introduction to Economic Theory 8th Class 2/7/11 go over problem answers from last time; no new problems today given you have your problem set to work on; we'll do some problems for these concepts

More information

Advanced Microeconomics

Advanced Microeconomics Advanced Microeconomics Leonardo Felli EC441: Room D.106, Z.332, D.109 Lecture 8 bis: 24 November 2004 Monopoly Consider now the pricing behavior of a profit maximizing monopolist: a firm that is the only

More information

October 16, 2018 Notes on Cournot. 1. Teaching Cournot Equilibrium

October 16, 2018 Notes on Cournot. 1. Teaching Cournot Equilibrium October 1, 2018 Notes on Cournot 1. Teaching Cournot Equilibrium Typically Cournot equilibrium is taught with identical zero or constant-mc cost functions for the two firms, because that is simpler. I

More information

Industrial Organization Lecture 7: Product Differentiation

Industrial Organization Lecture 7: Product Differentiation Industrial Organization Lecture 7: Product Differentiation Nicolas Schutz Nicolas Schutz Product Differentiation 1 / 57 Introduction We now finally drop the assumption that firms offer homogeneous products.

More information

Joint Probability Distributions and Random Samples (Devore Chapter Five)

Joint Probability Distributions and Random Samples (Devore Chapter Five) Joint Probability Distributions and Random Samples (Devore Chapter Five) 1016-345-01: Probability and Statistics for Engineers Spring 2013 Contents 1 Joint Probability Distributions 2 1.1 Two Discrete

More information

Lecture 4. Xavier Gabaix. February 26, 2004

Lecture 4. Xavier Gabaix. February 26, 2004 14.127 Lecture 4 Xavier Gabaix February 26, 2004 1 Bounded Rationality Three reasons to study: Hope that it will generate a unified framework for behavioral economics Some phenomena should be captured:

More information

Math489/889 Stochastic Processes and Advanced Mathematical Finance Solutions for Homework 7

Math489/889 Stochastic Processes and Advanced Mathematical Finance Solutions for Homework 7 Math489/889 Stochastic Processes and Advanced Mathematical Finance Solutions for Homework 7 Steve Dunbar Due Mon, November 2, 2009. Time to review all of the information we have about coin-tossing fortunes

More information

3. Partial Equilibrium under Imperfect Competition Competitive Equilibrium

3. Partial Equilibrium under Imperfect Competition Competitive Equilibrium 3. Imperfect Competition 3. Partial Equilirium under Imperfect Competition Competitive Equilirium Partial equilirium studies the existence of equilirium in the market of a given commodity and analyzes

More information

Wireless Network Pricing Chapter 6: Oligopoly Pricing

Wireless Network Pricing Chapter 6: Oligopoly Pricing Wireless Network Pricing Chapter 6: Oligopoly Pricing Jianwei Huang & Lin Gao Network Communications and Economics Lab (NCEL) Information Engineering Department The Chinese University of Hong Kong Huang

More information

Optimization, constrained optimization and applications of integrals.

Optimization, constrained optimization and applications of integrals. ams 11b Study Guide econ 11b Optimization, constrained optimization and applications of integrals. (*) In all the constrained optimization problems below, you may assume that the critical values you find

More information

Answer Key: Problem Set 3

Answer Key: Problem Set 3 Answer Key: Problem Set Econ 409 018 Fall Question 1 a This is a standard monopoly problem; using MR = a 4Q, let MR = MC and solve: Q M = a c 4, P M = a + c, πm = (a c) 8 The Lerner index is then L M P

More information

Basics of Game Theory

Basics of Game Theory Basics of Game Theory Giacomo Bacci and Luca Sanguinetti Department of Information Engineering University of Pisa, Pisa, Italy {giacomo.bacci,luca.sanguinetti}@iet.unipi.it April - May, 2010 G. Bacci and

More information

Sometimes the domains X and Z will be the same, so this might be written:

Sometimes the domains X and Z will be the same, so this might be written: II. MULTIVARIATE CALCULUS The first lecture covered functions where a single input goes in, and a single output comes out. Most economic applications aren t so simple. In most cases, a number of variables

More information

Game Theory and Algorithms Lecture 2: Nash Equilibria and Examples

Game Theory and Algorithms Lecture 2: Nash Equilibria and Examples Game Theory and Algorithms Lecture 2: Nash Equilibria and Examples February 24, 2011 Summary: We introduce the Nash Equilibrium: an outcome (action profile) which is stable in the sense that no player

More information

Microeconomic theory focuses on a small number of concepts. The most fundamental concept is the notion of opportunity cost.

Microeconomic theory focuses on a small number of concepts. The most fundamental concept is the notion of opportunity cost. Microeconomic theory focuses on a small number of concepts. The most fundamental concept is the notion of opportunity cost. Opportunity Cost (or "Wow, I coulda had a V8!") The underlying idea is derived

More information

Industrial Organization

Industrial Organization Industrial Organization Lecture Notes Sérgio O. Parreiras Fall, 2017 Outline Mathematical Toolbox Intermediate Microeconomic Theory Revision Perfect Competition Monopoly Oligopoly Mathematical Toolbox

More information

Department of Agricultural Economics. PhD Qualifier Examination. May 2009

Department of Agricultural Economics. PhD Qualifier Examination. May 2009 Department of Agricultural Economics PhD Qualifier Examination May 009 Instructions: The exam consists of six questions. You must answer all questions. If you need an assumption to complete a question,

More information

Lecture #11: Introduction to the New Empirical Industrial Organization (NEIO) -

Lecture #11: Introduction to the New Empirical Industrial Organization (NEIO) - Lecture #11: Introduction to the New Empirical Industrial Organization (NEIO) - What is the old empirical IO? The old empirical IO refers to studies that tried to draw inferences about the relationship

More information

September Math Course: First Order Derivative

September Math Course: First Order Derivative September Math Course: First Order Derivative Arina Nikandrova Functions Function y = f (x), where x is either be a scalar or a vector of several variables (x,..., x n ), can be thought of as a rule which

More information

Endogenous Information Choice

Endogenous Information Choice Endogenous Information Choice Lecture 7 February 11, 2015 An optimizing trader will process those prices of most importance to his decision problem most frequently and carefully, those of less importance

More information

Generalized Linear Models for Non-Normal Data

Generalized Linear Models for Non-Normal Data Generalized Linear Models for Non-Normal Data Today s Class: 3 parts of a generalized model Models for binary outcomes Complications for generalized multivariate or multilevel models SPLH 861: Lecture

More information

Hotelling's Location Model with Quality Choice in Mixed Duopoly. Abstract

Hotelling's Location Model with Quality Choice in Mixed Duopoly. Abstract Hotelling's Location Model with Quality Choice in Mixed Duopoly Yasuo Sanjo Graduate School of Economics, Nagoya University Abstract We investigate a mixed duopoly market by introducing quality choice

More information

Oblivious Equilibrium: A Mean Field Approximation for Large-Scale Dynamic Games

Oblivious Equilibrium: A Mean Field Approximation for Large-Scale Dynamic Games Oblivious Equilibrium: A Mean Field Approximation for Large-Scale Dynamic Games Gabriel Y. Weintraub, Lanier Benkard, and Benjamin Van Roy Stanford University {gweintra,lanierb,bvr}@stanford.edu Abstract

More information

MITOCW MITRES6_012S18_L23-05_300k

MITOCW MITRES6_012S18_L23-05_300k MITOCW MITRES6_012S18_L23-05_300k We will now go through a beautiful example, in which we approach the same question in a number of different ways and see that by reasoning based on the intuitive properties

More information

Fundamentals of Operations Research. Prof. G. Srinivasan. Indian Institute of Technology Madras. Lecture No. # 15

Fundamentals of Operations Research. Prof. G. Srinivasan. Indian Institute of Technology Madras. Lecture No. # 15 Fundamentals of Operations Research Prof. G. Srinivasan Indian Institute of Technology Madras Lecture No. # 15 Transportation Problem - Other Issues Assignment Problem - Introduction In the last lecture

More information

Multivariate Distributions

Multivariate Distributions IEOR E4602: Quantitative Risk Management Spring 2016 c 2016 by Martin Haugh Multivariate Distributions We will study multivariate distributions in these notes, focusing 1 in particular on multivariate

More information

Oligopoly Theory. This might be revision in parts, but (if so) it is good stu to be reminded of...

Oligopoly Theory. This might be revision in parts, but (if so) it is good stu to be reminded of... This might be revision in parts, but (if so) it is good stu to be reminded of... John Asker Econ 170 Industrial Organization January 23, 2017 1 / 1 We will cover the following topics: with Sequential Moves

More information

EconS Vertical Integration

EconS Vertical Integration EconS 425 - Vertical Integration Eric Dunaway Washington State University eric.dunaway@wsu.edu Industrial Organization Eric Dunaway (WSU) EconS 425 Industrial Organization 1 / 26 Introduction Let s continue

More information

EC611--Managerial Economics

EC611--Managerial Economics EC611--Managerial Economics Optimization Techniques and New Management Tools Dr. Savvas C Savvides, European University Cyprus Models and Data Model a framework based on simplifying assumptions it helps

More information

VALUATION USING HOUSEHOLD PRODUCTION LECTURE PLAN 15: APRIL 14, 2011 Hunt Allcott

VALUATION USING HOUSEHOLD PRODUCTION LECTURE PLAN 15: APRIL 14, 2011 Hunt Allcott VALUATION USING HOUSEHOLD PRODUCTION 14.42 LECTURE PLAN 15: APRIL 14, 2011 Hunt Allcott PASTURE 1: ONE SITE Introduce intuition via PowerPoint slides Draw demand curve with nearby and far away towns. Question:

More information

Increasingly, economists are asked not just to study or explain or interpret markets, but to design them.

Increasingly, economists are asked not just to study or explain or interpret markets, but to design them. What is market design? Increasingly, economists are asked not just to study or explain or interpret markets, but to design them. This requires different tools and ideas than neoclassical economics, which

More information

Solutions. ams 11b Study Guide 9 econ 11b

Solutions. ams 11b Study Guide 9 econ 11b ams 11b Study Guide 9 econ 11b Solutions 1. A monopolistic firm sells one product in two markets, A and B. The daily demand equations for the firm s product in these markets are given by Q A = 100 0.4P

More information

Microeconomic Theory. Microeconomic Theory. Everyday Economics. The Course:

Microeconomic Theory. Microeconomic Theory. Everyday Economics. The Course: The Course: Microeconomic Theory This is the first rigorous course in microeconomic theory This is a course on economic methodology. The main goal is to teach analytical tools that will be useful in other

More information

Constrained optimization.

Constrained optimization. ams/econ 11b supplementary notes ucsc Constrained optimization. c 2016, Yonatan Katznelson 1. Constraints In many of the optimization problems that arise in economics, there are restrictions on the values

More information

General Equilibrium and Welfare

General Equilibrium and Welfare and Welfare Lectures 2 and 3, ECON 4240 Spring 2017 University of Oslo 24.01.2017 and 31.01.2017 1/37 Outline General equilibrium: look at many markets at the same time. Here all prices determined in the

More information

Trade policy III: Export subsidies

Trade policy III: Export subsidies The Vienna Institute for International Economic Studies - wiiw June 25, 2015 Overview Overview 1 1 Under perfect competition lead to welfare loss 2 Effects depending on market structures 1 Subsidies to

More information

Perfect Competition in Markets with Adverse Selection

Perfect Competition in Markets with Adverse Selection Perfect Competition in Markets with Adverse Selection Eduardo Azevedo and Daniel Gottlieb (Wharton) Presented at Frontiers of Economic Theory & Computer Science at the Becker Friedman Institute August

More information

Competitive Equilibrium

Competitive Equilibrium Competitive Equilibrium Econ 2100 Fall 2017 Lecture 16, October 26 Outline 1 Pareto Effi ciency 2 The Core 3 Planner s Problem(s) 4 Competitive (Walrasian) Equilibrium Decentralized vs. Centralized Economic

More information

Econ 201: Problem Set 3 Answers

Econ 201: Problem Set 3 Answers Econ 20: Problem Set 3 Ansers Instructor: Alexandre Sollaci T.A.: Ryan Hughes Winter 208 Question a) The firm s fixed cost is F C = a and variable costs are T V Cq) = 2 bq2. b) As seen in class, the optimal

More information

Lecture 1. Behavioral Models Multinomial Logit: Power and limitations. Cinzia Cirillo

Lecture 1. Behavioral Models Multinomial Logit: Power and limitations. Cinzia Cirillo Lecture 1 Behavioral Models Multinomial Logit: Power and limitations Cinzia Cirillo 1 Overview 1. Choice Probabilities 2. Power and Limitations of Logit 1. Taste variation 2. Substitution patterns 3. Repeated

More information

Math 416 Lecture 3. The average or mean or expected value of x 1, x 2, x 3,..., x n is

Math 416 Lecture 3. The average or mean or expected value of x 1, x 2, x 3,..., x n is Math 416 Lecture 3 Expected values The average or mean or expected value of x 1, x 2, x 3,..., x n is x 1 x 2... x n n x 1 1 n x 2 1 n... x n 1 n 1 n x i p x i where p x i 1 n is the probability of x i

More information

A Note on Demand Estimation with Supply Information. in Non-Linear Models

A Note on Demand Estimation with Supply Information. in Non-Linear Models A Note on Demand Estimation with Supply Information in Non-Linear Models Tongil TI Kim Emory University J. Miguel Villas-Boas University of California, Berkeley May, 2018 Keywords: demand estimation, limited

More information

Queen s University. Department of Economics. Instructor: Kevin Andrew

Queen s University. Department of Economics. Instructor: Kevin Andrew Figure 1: 1b) GDP Queen s University Department of Economics Instructor: Kevin Andrew Econ 320: Math Assignment Solutions 1. (10 Marks) On the course website is provided an Excel file containing quarterly

More information

CS 598RM: Algorithmic Game Theory, Spring Practice Exam Solutions

CS 598RM: Algorithmic Game Theory, Spring Practice Exam Solutions CS 598RM: Algorithmic Game Theory, Spring 2017 1. Answer the following. Practice Exam Solutions Agents 1 and 2 are bargaining over how to split a dollar. Each agent simultaneously demands share he would

More information

New Notes on the Solow Growth Model

New Notes on the Solow Growth Model New Notes on the Solow Growth Model Roberto Chang September 2009 1 The Model The firstingredientofadynamicmodelisthedescriptionofthetimehorizon. In the original Solow model, time is continuous and the

More information

Integration by Substitution

Integration by Substitution Integration by Substitution MATH 151 Calculus for Management J. Robert Buchanan Department of Mathematics Fall 2018 Objectives After this lesson we will be able to use the method of integration by substitution

More information

Aggregate Demand, Idle Time, and Unemployment

Aggregate Demand, Idle Time, and Unemployment Aggregate Demand, Idle Time, and Unemployment Pascal Michaillat (LSE) & Emmanuel Saez (Berkeley) July 2014 1 / 46 Motivation 11% Unemployment rate 9% 7% 5% 3% 1974 1984 1994 2004 2014 2 / 46 Motivation

More information

Variational Principal Components

Variational Principal Components Variational Principal Components Christopher M. Bishop Microsoft Research 7 J. J. Thomson Avenue, Cambridge, CB3 0FB, U.K. cmbishop@microsoft.com http://research.microsoft.com/ cmbishop In Proceedings

More information

Statistical Distribution Assumptions of General Linear Models

Statistical Distribution Assumptions of General Linear Models Statistical Distribution Assumptions of General Linear Models Applied Multilevel Models for Cross Sectional Data Lecture 4 ICPSR Summer Workshop University of Colorado Boulder Lecture 4: Statistical Distributions

More information

Information Choice in Macroeconomics and Finance.

Information Choice in Macroeconomics and Finance. Information Choice in Macroeconomics and Finance. Laura Veldkamp New York University, Stern School of Business, CEPR and NBER Spring 2009 1 Veldkamp What information consumes is rather obvious: It consumes

More information

Notes on Random Variables, Expectations, Probability Densities, and Martingales

Notes on Random Variables, Expectations, Probability Densities, and Martingales Eco 315.2 Spring 2006 C.Sims Notes on Random Variables, Expectations, Probability Densities, and Martingales Includes Exercise Due Tuesday, April 4. For many or most of you, parts of these notes will be

More information

Economics 2010c: Lectures 9-10 Bellman Equation in Continuous Time

Economics 2010c: Lectures 9-10 Bellman Equation in Continuous Time Economics 2010c: Lectures 9-10 Bellman Equation in Continuous Time David Laibson 9/30/2014 Outline Lectures 9-10: 9.1 Continuous-time Bellman Equation 9.2 Application: Merton s Problem 9.3 Application:

More information

Multivariate Distribution Models

Multivariate Distribution Models Multivariate Distribution Models Model Description While the probability distribution for an individual random variable is called marginal, the probability distribution for multiple random variables is

More information

CLASS NOTES: BUSINESS CALCULUS

CLASS NOTES: BUSINESS CALCULUS CLASS NOTES: BUSINESS CALCULUS These notes can be thought of as the logical skeleton of my lectures, although they will generally contain a fuller exposition of concepts but fewer examples than my lectures.

More information

PhD Topics in Macroeconomics

PhD Topics in Macroeconomics PhD Topics in Macroeconomics Lecture 18: aggregate gains from trade, part two Chris Edmond 2nd Semester 2014 1 This lecture Arkolakis, Costinot, Donaldson and Rodríguez-Clare (2012wp) 1- Absence of pro-competitive

More information

Review of Probability Theory

Review of Probability Theory Review of Probability Theory Arian Maleki and Tom Do Stanford University Probability theory is the study of uncertainty Through this class, we will be relying on concepts from probability theory for deriving

More information

Industrial Organization II (ECO 2901) Winter Victor Aguirregabiria. Problem Set #1 Due of Friday, March 22, 2013

Industrial Organization II (ECO 2901) Winter Victor Aguirregabiria. Problem Set #1 Due of Friday, March 22, 2013 Industrial Organization II (ECO 2901) Winter 2013. Victor Aguirregabiria Problem Set #1 Due of Friday, March 22, 2013 TOTAL NUMBER OF POINTS: 200 PROBLEM 1 [30 points]. Considertheestimationofamodelofdemandofdifferentiated

More information

competition: the choice of scope

competition: the choice of scope Multi-product firms under monopolistic competition: the choice of scope SKokovin, PhUshchev, EZhelobodko 7 April 2012 Stylized facts about multi-product firms Multi-product firms account for the most part

More information

Rules of Differentiation

Rules of Differentiation Rules of Differentiation The process of finding the derivative of a function is called Differentiation. 1 In the previous chapter, the required derivative of a function is worked out by taking the limit

More information

1 Oligopoly: Bertrand Model

1 Oligopoly: Bertrand Model 1 Oligopoly: Bertrand Model Bertrand model: There are two rms and no entry is possible. Homogeneity of product. Single period. Consumers always purchase from the cheapest seller. If the two selllers charge

More information

ECONOMICS 207 SPRING 2008 PROBLEM SET 13

ECONOMICS 207 SPRING 2008 PROBLEM SET 13 ECONOMICS 207 SPRING 2008 PROBLEM SET 13 Problem 1. The cost function for a firm is a rule or mapping that tells the minimum total cost of production of any output level produced by the firm for a fixed

More information

Addendum to: Dual Sales Channel Management with Service Competition

Addendum to: Dual Sales Channel Management with Service Competition Addendum to: Dual Sales Channel Management with Service Competition Kay-Yut Chen Murat Kaya Özalp Özer Management Science & Engineering, Stanford University, Stanford, CA. December, 006 1. Single-Channel

More information

THEORY OF OLIGOPOLIES: DYNAMICS AND STABILITY OF EQUILIBRIA

THEORY OF OLIGOPOLIES: DYNAMICS AND STABILITY OF EQUILIBRIA ROMAI J., 4, (2008), 47 60 THEORY OF OLIGOPOLIES: DYNAMICS AND STABILITY OF EQUILIBRIA Konstantinos Andriopoulos, Tassos Bountis, Nikos Papadopoulos Centre for Research and Applications of Nonlinear Systems

More information

Aggregate Diversion and Market Elasticity

Aggregate Diversion and Market Elasticity Aggregate Diversion and Market Elasticity Serge Moresi (CRA) Hans Zenger (European Commission) Disclaimer: The views expressed in this presentation are those of the authors and do not necessarily reflect

More information

A Summary of Economic Methodology

A Summary of Economic Methodology A Summary of Economic Methodology I. The Methodology of Theoretical Economics All economic analysis begins with theory, based in part on intuitive insights that naturally spring from certain stylized facts,

More information

Lecture 10 Demand for Autos (BLP) Bronwyn H. Hall Economics 220C, UC Berkeley Spring 2005

Lecture 10 Demand for Autos (BLP) Bronwyn H. Hall Economics 220C, UC Berkeley Spring 2005 Lecture 10 Demand for Autos (BLP) Bronwyn H. Hall Economics 220C, UC Berkeley Spring 2005 Outline BLP Spring 2005 Economics 220C 2 Why autos? Important industry studies of price indices and new goods (Court,

More information

Firms and returns to scale -1- John Riley

Firms and returns to scale -1- John Riley Firms and returns to scale -1- John Riley Firms and returns to scale. Increasing returns to scale and monopoly pricing 2. Natural monopoly 1 C. Constant returns to scale 21 D. The CRS economy 26 E. pplication

More information

Aggregate Demand, Idle Time, and Unemployment

Aggregate Demand, Idle Time, and Unemployment Aggregate Demand, Idle Time, and Unemployment Pascal Michaillat (LSE) & Emmanuel Saez (Berkeley) September 2014 1 / 44 Motivation 11% Unemployment rate 9% 7% 5% 3% 1974 1984 1994 2004 2014 2 / 44 Motivation

More information

Partial derivatives, linear approximation and optimization

Partial derivatives, linear approximation and optimization ams 11b Study Guide 4 econ 11b Partial derivatives, linear approximation and optimization 1. Find the indicated partial derivatives of the functions below. a. z = 3x 2 + 4xy 5y 2 4x + 7y 2, z x = 6x +

More information

Answer Key: Problem Set 1

Answer Key: Problem Set 1 Answer Key: Problem Set 1 Econ 409 018 Fall Question 1 a The profit function (revenue minus total cost) is π(q) = P (q)q cq The first order condition with respect to (henceforth wrt) q is P (q )q + P (q

More information

Demand in Differentiated-Product Markets (part 2)

Demand in Differentiated-Product Markets (part 2) Demand in Differentiated-Product Markets (part 2) Spring 2009 1 Berry (1994): Estimating discrete-choice models of product differentiation Methodology for estimating differentiated-product discrete-choice

More information

Topic 3: Application of Differential Calculus in

Topic 3: Application of Differential Calculus in Mathematics 2 for Business Schools Topic 3: Application of Differential Calculus in Economics Building Competence. Crossing Borders. Spring Semester 2017 Learning objectives After finishing this section

More information

Aggregate Supply. Econ 208. April 3, Lecture 16. Econ 208 (Lecture 16) Aggregate Supply April 3, / 12

Aggregate Supply. Econ 208. April 3, Lecture 16. Econ 208 (Lecture 16) Aggregate Supply April 3, / 12 Aggregate Supply Econ 208 Lecture 16 April 3, 2007 Econ 208 (Lecture 16) Aggregate Supply April 3, 2007 1 / 12 Introduction rices might be xed for a brief period, but we need to look beyond this The di

More information

An Introduction to Rational Inattention

An Introduction to Rational Inattention An Introduction to Rational Inattention Lecture notes for the course Bounded Rationality and Macroeconomics December 2, 2005 1 Introduction The objective of modelling economic agents as being rationally

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 12, 2016 Food for thought LUPI Many players

More information

EconS Sequential Competition

EconS Sequential Competition EconS 425 - Sequential Competition Eric Dunaway Washington State University eric.dunaway@wsu.edu Industrial Organization Eric Dunaway (WSU) EconS 425 Industrial Organization 1 / 47 A Warmup 1 x i x j (x

More information

Gaussian, Markov and stationary processes

Gaussian, Markov and stationary processes Gaussian, Markov and stationary processes Gonzalo Mateos Dept. of ECE and Goergen Institute for Data Science University of Rochester gmateosb@ece.rochester.edu http://www.ece.rochester.edu/~gmateosb/ November

More information

Dynamic stochastic game and macroeconomic equilibrium

Dynamic stochastic game and macroeconomic equilibrium Dynamic stochastic game and macroeconomic equilibrium Tianxiao Zheng SAIF 1. Introduction We have studied single agent problems. However, macro-economy consists of a large number of agents including individuals/households,

More information

1 Bewley Economies with Aggregate Uncertainty

1 Bewley Economies with Aggregate Uncertainty 1 Bewley Economies with Aggregate Uncertainty Sofarwehaveassumedawayaggregatefluctuations (i.e., business cycles) in our description of the incomplete-markets economies with uninsurable idiosyncratic risk

More information

Economics 401 Sample questions 2

Economics 401 Sample questions 2 Economics 401 Sample questions 1. What does it mean to say that preferences fit the Gorman polar form? Do quasilinear preferences fit the Gorman form? Do aggregate demands based on the Gorman form have

More information

Chapter 4 Differentiation

Chapter 4 Differentiation Chapter 4 Differentiation 08 Section 4. The derivative of a function Practice Problems (a) (b) (c) 3 8 3 ( ) 4 3 5 4 ( ) 5 3 3 0 0 49 ( ) 50 Using a calculator, the values of the cube function, correct

More information

Numerical illustration

Numerical illustration A umerical illustration Inverse demand is P q, t = a 0 a 1 e λ 2t bq, states of the world are distributed according to f t = λ 1 e λ 1t, and rationing is anticipated and proportional. a 0, a 1, λ = λ 1

More information

(a) Write down the Hamilton-Jacobi-Bellman (HJB) Equation in the dynamic programming

(a) Write down the Hamilton-Jacobi-Bellman (HJB) Equation in the dynamic programming 1. Government Purchases and Endogenous Growth Consider the following endogenous growth model with government purchases (G) in continuous time. Government purchases enhance production, and the production

More information

Negotiation and Take it or Leave it in Common Agency

Negotiation and Take it or Leave it in Common Agency Negotiation and Take it or Leave it in Common Agency Michael Peters Department of Economics University of Toronto 150 St. George St. Toronto, Canada M5S 3G7 email:peters@economics.utoronto.ca First Draft

More information

Differentiation. 1. What is a Derivative? CHAPTER 5

Differentiation. 1. What is a Derivative? CHAPTER 5 CHAPTER 5 Differentiation Differentiation is a technique that enables us to find out how a function changes when its argument changes It is an essential tool in economics If you have done A-level maths,

More information

Math Review ECON 300: Spring 2014 Benjamin A. Jones MATH/CALCULUS REVIEW

Math Review ECON 300: Spring 2014 Benjamin A. Jones MATH/CALCULUS REVIEW MATH/CALCULUS REVIEW SLOPE, INTERCEPT, and GRAPHS REVIEW (adapted from Paul s Online Math Notes) Let s start with some basic review material to make sure everybody is on the same page. The slope of a line

More information

Lecturers: Jan Boone (ANR: ) and Clemens Fiedler

Lecturers: Jan Boone (ANR: ) and Clemens Fiedler cover page for a written examination/test Name of subject: Competition Policy and Regulation Subject code: 30L303 Date of examination: 8-06-016 Length of examination: 3 hours Lecturers: Jan Boone (ANR:

More information

NATURAL RESOURCE ECONOMICS LECTURE PLAN 16: APRIL 21, 2011 Hunt Allcott

NATURAL RESOURCE ECONOMICS LECTURE PLAN 16: APRIL 21, 2011 Hunt Allcott NATURAL RESOURCE ECONOMICS 14.42 LECTURE PLAN 16: APRIL 21, 2011 Hunt Allcott PASTURE 1: OVERVIEW Taxonomy of resources. Question: What are examples of depletable, renewable, and expendable resources?

More information

Handout: Competitive Equilibrium

Handout: Competitive Equilibrium 1 Competitive equilibrium Handout: Competitive Equilibrium Definition 1. A competitive equilibrium is a set of endogenous variables (Ĉ, N s, N d, T, π, ŵ), such that given the exogenous variables (G, z,

More information

EconS Advanced Microeconomics II Handout on Subgame Perfect Equilibrium (SPNE)

EconS Advanced Microeconomics II Handout on Subgame Perfect Equilibrium (SPNE) EconS 3 - Advanced Microeconomics II Handout on Subgame Perfect Equilibrium (SPNE). Based on MWG 9.B.3 Consider the three-player nite game of perfect information depicted in gure. L R Player 3 l r a b

More information

Price setting on a network

Price setting on a network Price setting on a network Very preliminary and incomplete. Toomas Hinnosaar May 2018 Abstract Most products are produced and sold by supply chains, where an interconnected network of producers and intermediaries

More information

Name: Final Exam EconS 527 (December 12 th, 2016)

Name: Final Exam EconS 527 (December 12 th, 2016) Name: Final Exam EconS 527 (December 12 th, 2016) Question #1 [20 Points]. Consider the car industry in which there are only two firms operating in the market, Trotro (T) and Fido (F). The marginal production

More information

Two hours. To be supplied by the Examinations Office: Mathematical Formula Tables and Statistical Tables THE UNIVERSITY OF MANCHESTER.

Two hours. To be supplied by the Examinations Office: Mathematical Formula Tables and Statistical Tables THE UNIVERSITY OF MANCHESTER. Two hours MATH38181 To be supplied by the Examinations Office: Mathematical Formula Tables and Statistical Tables THE UNIVERSITY OF MANCHESTER EXTREME VALUES AND FINANCIAL RISK Examiner: Answer any FOUR

More information