Bertrand Competition#

Another model we consider is Bertrand competition, named for Joseph Louis Francois Bertrand, that is similar to Cournot competition but that firms compete using prices rather than quantity. Under the assumptions of this model, consumers want to buy everything at the lowest price, and if the price is the same then demand is evenly split between those producers. One fundamental assumption is that all firms have the same unit cost of production, which means that as long as the price the firm sets is above the unit cost, it is willing to supply any amount that is demanded.

An example of a Bertrand oligopoly comes form the soft drink industry: Coke and Pepsi (which form a duopoly, a market with only two participants). Both firms compete by changing their prices based on a function that takes into account the price charged by their competitor. This model predicts that even this small competition will result in prices being reduced to the marginal cost level, the same outcome as perfect competition.

Bertrand Equilibrium#

To find the Bertrand equilibrium, let \(c\) be the (constant) marginal cost, \(p_1\) be firm 1’s price level, \(p_2\) be firm 2’s price level, and \(p_m\) be the monopoly price level. Firm 1’s price depends on what it believes firm 2 will set its prices to be. Because consumers always buy at the lowest price and the firm will fulfill any level of demand, pricing just below firm 2 will obtain full market demand for firm 1. Why might this not be a good idea? If firm 2 is pricing below the level of marginal cost, then firm 1 will incur losses because they would need to sell at a price lower than the cost of production.

Let \(p'_1(p_2)\) be firm 1’s optimal price based on price \(p_2\) set by firm 2. The graph below shows \(p'_1(p_2)\). Note that when \(p_2 < c\), \(p'_1\) is equal to \(c\), that \(p'_1\) rises linearly along but just below the line \(p_1 = p_2\) with \(p_2\) until \(p_2\) reaches \(p_m\) (the monopoly price level), and that it then levels off at \(p_m\). In this way, firm 1’s price stays below firm 2’s price when it is not operating at a loss and does not exceed \(p_m\) (because \(p_m\) is the profit-maximizing amount for a monopoly and producing more actually results in less profit). This piecewise function has the formula

\[\begin{split} p'_1(p_2) = \begin{cases} c & \text{if } p_2 < c + h \\ p_2 - h & \text{if } c + h \le p_2 < p_m + h \\ p_m & \text{otherwise} \end{cases} \end{split}\]

where \(h\) is a small positive value and indicates the vertical distance between \(p'_1\) and the line \(p_1 = p_2\). We can think of \(h\) as the amount by which firm 1 will undercut firm 2: as long as firm 1 will be operating at a profit and not exceeding \(p_m\), they will sell at \(h\) dollars below \(p_2\).

[Following image has line graphs for price response functions between two firms]

../../_images/9b423f45addc9240bf06d8a27a47c548e721c89d5e7a274ff66f4f5608272237.png

Because firm 2 has the same marginal cost \(c\) as firm 1, its reaction function \(p'_2(p_1)\) is symmetrical to firm 1’s about the line \(p_1 = p_2\):

[Following image has line graphs for price response functions between two firms]

../../_images/39447ffbbead296aa1e1ce8cfa5820bf309adf6732ca41e6263b3be6e8b6c115.png

These two strategies form a Nash equilibrium because neither firm can increase profits by changing their own strategy unilaterally. The equilibrium occurs where \(p_1 = p'_1(p_2)\) and \(p_2 = p'_2(p_1)\), at the intersection of the two reaction curves. Notably, this means that the Bertrand equilibrium occurs when both firms are producing at marginal cost.

This makes intuitive sense: say that the two firms both set equal prices at a price above \(c\) where they split demand equally. Then both firms have incentive to reduce their price slightly and take the other half of the market share from their competitor. Thus, both firms are tempted to lower prices as much as possible, but lowering below the level of marginal cost makes no sense because then they’re operating at a loss. Thus, both firms sell at the price level \(c\).

Implications#

The Bertrand model implies that even a duopoly in a market is enough to push prices down to the level of perfect competition. It does, however, rely on some serious assumptions. For example, there are many reasons why consumers might not buy the lowest-priced item (e.g. non-price competition, search costs). When these factors are included in the Bertrand model, the same result is no longer reached. It also ignores the fact that firms may not be able to supply the entire market demand; including these capacity constraints in the model can result in the system having no Nash equilibrium. Lastly, the Bertrand model demonstrates big incentives to cooperate and raise prices to the monopoly level; however, this state is not a Nash equilibrium, and in fact, the only Nash equilibrium of this model is the non-cooperative one with prices at marginal cost.

Applying Bertrand#

Now that we have derived the Bertrand equilibrium, let’s apply it to a problem. Consider the Coke-Pepsi duopoly we mentioned above. Suppose that the only product in the soft-drink market is the 12-oz. can, that the market demand for cans is given by \(P = -0.05 Q + 5.05\), and that the marginal cost for Coke and Pepsi is constant at \(c = 0.25\). To find the equilibrium price for Coke based in it’s belief that Pepsi will sell at \(p_2 = 1\), we need to start by finding the monopoly price level \(p_m\); recall from Cournot that this occurs when the marginal revenue curve of the market demand intersects the marginal cost. The marginal revenue is \(r(q) = -0.1 q + 5.05\):

[Following image has line graphs for Demand, Marginal Revenue and Cost]

../../_images/20220bdbc0ffd5aa751ca0737ade32701621adc687259605aba1cea0926636b3.png

Using SymPy, we can find the quantity \(q\) at which \(r(q) = c\). This value, denoted \(q_m\), is the monopoly quantity.

c = 0.25
q = sympy.Symbol("q")
r = -.1 * q + 5.05

q_m = solve(r, c)
q_m
48.0000000000000

The monopoly price \(p_m\) is the price from the market demand curve that this level of output:

Q = sympy.Symbol("Q")
P = -.05 * Q + 5.05

p_m = P.subs(Q, q_m)
p_m
2.65000000000000

Now that we have found \(p_m\), we can use this to construct Coke’s reaction function \(p'_1(p_2)\) to Pepsi’s choice of price. Assuming Coke selects \(h=0.1\) (that is, Coke will sell at $0.10 below Pepsi as long as they operate at a profit), the formula for \(p'_1\) is

\[\begin{split} p'_1(p_2) = \begin{cases} 0.25 & \text{if } p_2 < 0.25 + 0.1 \\ p_2 - 0.1 & \text{if } 0.25 + 0.1 \le p_2 < 2.65 + 0.1 \\ 2.65 & \text{otherwise} \end{cases} \end{split}\]

[Following image has piecewise line graphs for how one firm reacts to anothers price setting]

../../_images/3326075d2722967a374267edc0deea63fa4edacf423a372437b1a2771c9eb891.png

Finally, to find Coke’s selling price, we find \(p'_1(1)\), since Coke believes Pepsi will sell at $1.

c = 0.25
h = 0.1
p_2 = sympy.Symbol("p_2")
p_1_prime = sympy.Piecewise(
    (c, p_2 < c + h),
    (p_2 - h, p_2 < p_m + h),
    (p_m, True)
)

p_1_prime.subs(p_2, 1)
0.900000000000000

Thus, if Coke believes that Pepsi will sell cans at $1, it should sell at $0.90. This should make intuitive sense: we showed that \(p'_1(p_2)\) was below the line \(p_1=p_2\) by a vertical distance of \(h=0.1\), so it makes sense that Coke would sell at $0.10 below Pepsi. If Coke had believed that Pepsi was going to sell at, say, $2.70, then it would have been better for them to sell at the monopoly price level \(p_m = 2.65\). If Pepsi was selling below margin cost, at $0.20 maybe, then Coke’s best bet would have been to sell at \(c = 0.25\), although they would have sold 0 units of output because consumers buy from the lowest-priced vendor.