06. Trade Policy Instruments for Exporters

Learning objectives

By the end of this chapter, you should be able to:

  1. Explain why governments sometimes promote exports.
  2. Describe how an export subsidy affects prices, quantities, and welfare.
  3. Distinguish between small-country and large-country export subsidy effects.
  4. Explain dumping, normal value, antidumping duties, and countervailing duties.
  5. Identify the likely winners and losers from export subsidies and export taxes.
  6. Apply export-policy logic to an agricultural or fishery trade example.

Why this chapter matters

Trade policy is not only about restricting imports. Governments may also try to increase exports through information services, export credit, trade fairs, tax incentives, or direct subsidies. These policies can help firms enter foreign markets, but they may also distort prices, create fiscal costs, and provoke retaliation.

Agriculture is especially important because many export-support measures have historically been linked to farm products. For this reason, export subsidies, countervailing duties, dumping, and antidumping policy are central topics in international agricultural trade.

Export promotion

Export promotion refers to public or private efforts to help domestic firms sell goods in foreign markets. Some export-promotion policies are informational and relatively non-distorting. Others directly affect prices and can create unfair competition.

Common export-promotion instruments include:

Instrument Main purpose Likely trade effect
Market research Help firms identify foreign demand May increase export readiness
Export procedure assistance Help firms comply with customs and documentation Reduces administrative trade costs
Trade fairs and missions Connect exporters with buyers Expands market access
Export credit and insurance Reduce risk of exporting Encourages firms to enter foreign markets
Export subsidy Lowers effective export price or raises producer return Distorts trade and can reduce welfare

Not all export promotion is harmful. Information support and trade facilitation can reduce genuine transaction costs. The most controversial instrument is the export subsidy, because it directly changes incentives and can shift costs to taxpayers or foreign competitors.

What is an export subsidy?

An export subsidy is a payment, tax concession, or other incentive given to producers or exporters conditional on exporting.

A simple per-unit export subsidy can be written as:

\[ P_d = P_w + s \]

where:

  • \(P_d\) is the domestic price received by producers,
  • \(P_w\) is the world price,
  • \(s\) is the export subsidy per unit.

The subsidy allows domestic producers to receive more than the world price. This encourages production and exports, but domestic consumers may face a higher price if the subsidized good is also consumed at home.

ImportantCore point

An export subsidy usually helps domestic producers but hurts domestic consumers and taxpayers. For the exporting country as a whole, it is normally welfare-reducing.

Small-country export subsidy

A small country cannot affect the world price. Therefore, when it grants an export subsidy, the world price remains unchanged, but the domestic price rises by the amount of the subsidy.

The typical effects are:

Group Effect
Domestic producers Gain because they receive a higher price
Domestic consumers Lose because they pay a higher price
Government budget Loses because the subsidy must be paid
National welfare Falls because the subsidy creates deadweight losses

The national loss comes from inefficiently expanding domestic production and reducing domestic consumption.

Worked example: small-country export subsidy

Suppose a country exports a product with domestic demand and supply:

\[ Q_d = 100 - P \]

\[ Q_s = 2P \]

The world price is:

\[ P_w = 40 \]

The government introduces an export subsidy of:

\[ s = 10 \]

The domestic price after the subsidy becomes:

\[ P_d = P_w + s = 50 \]

Before the subsidy:

\[ Q_d = 100 - 40 = 60 \]

\[ Q_s = 2(40) = 80 \]

\[ X = Q_s - Q_d = 20 \]

After the subsidy:

\[ Q_d = 100 - 50 = 50 \]

\[ Q_s = 2(50) = 100 \]

\[ X = Q_s - Q_d = 50 \]

The subsidy increases exports from 20 to 50 units. But this expansion is not free. The government must pay the subsidy on each exported unit:

\[ ext{Government cost} = s \times X = 10 \times 50 = 500 \]

Python application: export subsidy welfare calculator

The following code computes consumer surplus, producer surplus, government cost, and total welfare before and after the subsidy.

Code
import pandas as pd

# Demand and supply parameters
# Qd = a - bP
# Qs = dP

a = 100
b = 1
d = 2

world_price = 40
subsidy = 10
subsidy_price = world_price + subsidy


def market_outcomes(price):
    qd = a - b * price
    qs = d * price
    exports = qs - qd
    consumer_surplus = 0.5 * (a / b - price) * qd
    producer_surplus = 0.5 * price * qs
    return qd, qs, exports, consumer_surplus, producer_surplus

qd_free, qs_free, x_free, cs_free, ps_free = market_outcomes(world_price)
qd_sub, qs_sub, x_sub, cs_sub, ps_sub = market_outcomes(subsidy_price)

gov_cost_free = 0
gov_cost_sub = subsidy * x_sub

ts_free = cs_free + ps_free - gov_cost_free
ts_sub = cs_sub + ps_sub - gov_cost_sub

welfare_table = pd.DataFrame({
    "Scenario": ["Free trade", "Export subsidy"],
    "Price": [world_price, subsidy_price],
    "Domestic demand": [qd_free, qd_sub],
    "Domestic supply": [qs_free, qs_sub],
    "Exports": [x_free, x_sub],
    "Consumer surplus": [cs_free, cs_sub],
    "Producer surplus": [ps_free, ps_sub],
    "Government cost": [gov_cost_free, gov_cost_sub],
    "National welfare": [ts_free, ts_sub]
})

welfare_table
Table 9.1
Scenario Price Domestic demand Domestic supply Exports Consumer surplus Producer surplus Government cost National welfare
0 Free trade 40 60 80 20 1800.0 1600.0 0 3400.0
1 Export subsidy 50 50 100 50 1250.0 2500.0 500 3250.0
Code
import matplotlib.pyplot as plt

plot_data = welfare_table.set_index("Scenario")[[
    "Consumer surplus",
    "Producer surplus",
    "Government cost",
    "National welfare"
]]

ax = plot_data.plot(kind="bar")
ax.set_ylabel("Value")
ax.set_title("Export subsidy welfare comparison")
plt.xticks(rotation=0)
plt.tight_layout()
plt.show()
Figure 9.1: Welfare components before and after an export subsidy.

The example shows the main policy lesson. Producers gain, consumers lose, and the government pays the subsidy. National welfare falls because the producer gain is not large enough to offset the consumer loss and fiscal cost.

Large-country export subsidy

A large exporting country can affect the world price. If it expands exports through a subsidy, the extra export supply may lower the international price.

This creates an additional problem for the exporting country: a terms-of-trade loss.

The terms of trade measures the price of exports relative to the price of imports. If the export price falls because of the subsidy, the country receives less for each unit exported.

For a large country, an export subsidy creates two types of losses:

  1. Efficiency losses from distorted production and consumption.
  2. Terms-of-trade losses from pushing down the world price of the exported good.

This is why export subsidies are usually even more harmful for large countries than for small countries.

Countervailing duties

A countervailing duty is a tariff imposed by an importing country to offset the effect of a foreign export subsidy.

If an exporting country subsidizes a product and this harms producers in the importing country, the importing country may impose a countervailing duty after investigation.

The purpose is not simply protection. The duty is meant to neutralize the unfair advantage created by the subsidy.

NoteCountervailing duty

A countervailing duty is an anti-subsidy tariff. It is imposed to offset injury caused by subsidized imports.

Dumping

Dumping occurs when a firm sells exports at a price considered too low relative to a reference value known as normal value.

There are two common ways to define normal value.

Definition Meaning
Domestic-market definition Normal value is the price charged to comparable buyers in the exporter’s home market.
Cost-based definition Normal value is the average cost of production, including overhead cost and a reasonable profit.

Under the first definition, dumping is international price discrimination. The firm charges a lower price abroad than at home.

Under the second definition, dumping means selling below full average cost.

Why firms may dump

Firms may engage in dumping for different reasons:

  1. Price discrimination: charging lower prices in more competitive foreign markets.
  2. Cyclical dumping: selling at low prices when demand is weak.
  3. Seasonal dumping: clearing excess inventories.
  4. Predatory dumping: trying to drive competitors out of the market.

Predatory dumping is difficult to prove, but it is often politically important in trade disputes.

Antidumping duties

An antidumping duty is an extra import duty imposed when an importing country determines that:

  1. dumping has occurred, and
  2. the dumping has caused material injury to domestic producers.

The antidumping duty is often linked to the dumping margin:

\[ ext{Dumping margin} = ext{Normal value} - ext{Export price} \]

If the export price is below normal value, the importing country may impose a duty to offset the price difference.

Export taxes

An export tax is a tax on goods sold abroad. It reduces the domestic return to exporting and usually lowers the quantity exported.

Small countries rarely gain from export taxes because they cannot influence the world price. Large countries may theoretically improve their terms of trade by restricting exports and raising the world price. However, export taxes can still reduce domestic production incentives and may hurt producers.

Export taxes are sometimes used for:

  • food security,
  • revenue generation,
  • keeping domestic prices low,
  • controlling exports of raw materials,
  • encouraging domestic processing.

The welfare effect depends on market size, elasticities, and whether the country can influence the world price.

Applied example: Oman fish exports to the UAE

Suppose Oman exports fish to the UAE. If Oman introduces an export subsidy, the likely short-run effects are:

Group Likely effect
Omani fish producers Gain from higher effective export returns
Omani consumers Lose if more fish is diverted to export markets and domestic prices rise
Omani government Loses because it pays the subsidy
UAE consumers Gain if subsidized imports reduce prices
UAE fish producers Lose because they face cheaper imported competition

The subsidy creates cross-country distributional effects. Omani producers and UAE consumers may gain, while Omani consumers, Omani taxpayers, and UAE producers may lose.

If the subsidy is removed, the short-run effects reverse. Omani production and exports may fall, fiscal costs decline, and UAE consumers may face higher import prices.

TipPolicy interpretation

Export subsidies may look attractive because they raise exports. But export volume alone is not the correct welfare criterion. The policy must be evaluated using consumer surplus, producer surplus, fiscal cost, and terms-of-trade effects.

Export policy and agriculture

Agriculture has often been central to export subsidy disputes. Governments may support agricultural exporters to protect farm income, maintain rural employment, or stabilize domestic production. But these policies can depress world prices and harm farmers in other countries.

For this reason, export competition is one of the major pillars of agricultural trade rules. We will return to this issue in Chapter 7 when we discuss the WTO Agreement on Agriculture.

Key takeaway

Export policy can change trade volumes, but higher exports do not automatically mean higher national welfare. Export subsidies usually raise producer surplus but reduce consumer surplus, create fiscal costs, and may worsen the terms of trade. Dumping, antidumping duties, and countervailing duties are part of the broader policy system used to respond to unfair or distorted trade.

Review questions

  1. What is export promotion?
  2. How is an export subsidy different from trade facilitation?
  3. Why does an export subsidy raise the domestic price in a small exporting country?
  4. Who gains and who loses from a small-country export subsidy?
  5. Why can an export subsidy worsen the terms of trade for a large country?
  6. What is a countervailing duty?
  7. What is dumping?
  8. What is the difference between normal value and export price?
  9. Why might firms sell at lower prices in foreign markets?
  10. How can an export tax affect domestic producers and consumers?

Practice problem

Suppose a small exporting country faces the following domestic market:

\[ Q_d = 120 - 2P \]

\[ Q_s = 3P \]

The world price is:

\[ P_w = 30 \]

The government introduces an export subsidy:

\[ s = 5 \]

Answer the following:

  1. Calculate domestic demand, domestic supply, and exports before the subsidy.
  2. Calculate the domestic price after the subsidy.
  3. Calculate domestic demand, domestic supply, and exports after the subsidy.
  4. Explain who gains and who loses.
  5. Explain why national welfare may fall even though exports increase.