42 Days to Instability: A Nash Equilibrium in the Iran Standoff
A prolonged standoff between the United States and Iran reflects a rational equilibrium, but one that becomes progressively more fragile over time.
Note: The views expressed here are analytical and hypothetical and do not reflect the views of any institution or political entity. The model is illustrative and not intended as a forecast of specific outcomes.
A War Without Fighting, A Peace Without Agreement
A quiet equilibrium has settled over the conflict between the United States and Iran. It appears stable on the surface, yet behaves less like a resting point and more like a system under sustained tension.
Negotiations have stalled. Naval pressure remains in place. Each side signals resolve without crossing into open conflict. The result is neither peace nor war, but a condition long recognized in international politics as both durable and inherently dangerous.
In game theory, such a condition is described as a Nash equilibrium, a state in which neither side can improve its outcome by changing strategy alone. Each player’s decision is rational given the expected behavior of the other. That logic now governs the standoff.
Peter Badge, John Forbes Nash Jr., 2000s. Creative Commons Attribution-ShareAlike 3.0.
The United States maintains pressure through sanctions, force posture, and control over key maritime routes, particularly the Strait of Hormuz. Iran responds by resisting, declining direct negotiations under coercive conditions while attempting to absorb the economic consequences. A unilateral shift by either side would risk immediate strategic loss. Maintaining the current position, however costly, remains the safer course.
The result is a self-reinforcing stalemate. Both sides incur ongoing costs, yet neither can justify moving first.
The structure reflects a convergence of classical strategic forms. The Prisoner’s Dilemma captures the absence of trust. The War of Attrition explains the reliance on time as leverage. The Game of Chicken frames the ever-present risk of escalation. The current equilibrium sits at the intersection of all three.
It is stable in the narrow sense that neither side has an incentive to deviate. It is inefficient because both would benefit from a negotiated outcome. More importantly, it is fragile because it depends on continued restraint in an environment where risk accumulates.
That risk concentrates most visibly in the Strait of Hormuz. Military proximity, commercial disruption, and strategic signaling converge within a confined corridor critical to global energy flows. Each additional interaction, however routine, introduces the possibility of miscalculation.
Both sides appear to believe that time favors them. One relies on sustained economic and strategic pressure. The other draws on experience operating under prolonged sanctions and assumes it can endure longer than expected.
History offers a consistent warning. Confidence in endurance often proves symmetrical. Time does not simply reward patience. It reshapes the structure of the game itself.
As the standoff continues, the cost of maintaining the equilibrium rises and the probability of disruption increases. What begins as a rational position gradually becomes a precarious one.
Simulating the Stalemate
To understand how this equilibrium evolves over time, it is useful to simulate the standoff as a repeated strategic game, where both sides incur costs over time and each round carries some risk of escalation.
In each round, both players maintain their strategies. The United States absorbs economic and political pressures tied to energy markets and global stability. Iran faces more immediate economic strain, including inflation, shortages, and declining domestic conditions. Alongside these costs, each round introduces a small but persistent probability of escalation due to accident, miscalculation, or external action.
Formalizing the Equilibrium
The standoff can be expressed as a repeated strategic game with discounted expected payoffs:
where:
- is the expected payoff for player
- is the per-round cost
- is the probability the game continues without escalation
- is the probability of escalation per round
- is the round number
Because the simulation checks for escalation before awarding that round’s payoff, the term represents the probability that round ’s payoff is actually received.
A Nash equilibrium holds when neither player benefits from unilateral deviation:
The equilibrium persists as long as the discounted expected value of continuing the standoff exceeds the payoff from conceding.
import random
import statistics
simulations = 10000
rounds = 20
# Costs expressed in normalized illustrative units
us_cost = 0.08
iran_cost = 0.15
# Probability of escalation per round
shock_probability = 0.05
# Continuation probability
delta = 1 - shock_probability
us_results = []
iran_results = []
escalation_rounds = []
# Monte Carlo simulation with stochastic stopping
# Escalation is checked before payoff is awarded for that round.
for sim in range(simulations):
us_payoff = 0
iran_payoff = 0
for t in range(1, rounds + 1):
if random.random() < shock_probability:
escalation_rounds.append(t)
break
us_round = 2 - us_cost * t
iran_round = 2 - iran_cost * t
us_payoff += us_round
iran_payoff += iran_round
us_results.append(us_payoff)
iran_results.append(iran_payoff)
# Expected discounted payoff matching the stochastic stopping logic
# Because escalation is checked before payoff, round t is earned only if the game survives through t.
us_expected_payoff = sum(
(delta ** t) * (2 - us_cost * t)
for t in range(1, rounds + 1)
)
iran_expected_payoff = sum(
(delta ** t) * (2 - iran_cost * t)
for t in range(1, rounds + 1)
)
print("Monte Carlo results")
print("Escalation rate:", round(len(escalation_rounds) / simulations, 3))
print("Median escalation round:", statistics.median(escalation_rounds))
print("Average U.S. payoff:", round(statistics.mean(us_results), 2))
print("Average Iran payoff:", round(statistics.mean(iran_results), 2))
print("\nExpected discounted payoff")
print("U.S. expected payoff:", round(us_expected_payoff, 2))
print("Iran expected payoff:", round(iran_expected_payoff, 2))
Running this simulation produces a consistent pattern. Escalation occurs in roughly two-thirds of cases, often around the eighth round. If escalation does not occur, Iran’s payoff turns negative around the fourteenth round.
Translating rounds into time
| Round Milestone | 3-Day Rounds | Meaning |
|---|---|---|
| Round 8 (approximate median) | ~24 days | Escalation risk often emerges |
| Round 14 | ~42 days | Resistance becomes costly in the model |
The system reaches its economic tipping point later than its escalation risk.
Commentary: What the Model Misses
No model can fully capture a geopolitical crisis. The simulation clarifies the structure of the standoff between the United States and Iran, but it simplifies several important realities.
The model treats the situation as a two-player game. In practice, actors such as Israel, regional Gulf states, and larger powers like Russia and China can shift outcomes.
The model assumes steady costs. In reality, economic pressure can move abruptly, especially in energy markets.
The model assumes a constant probability of escalation. In practice, the risk of escalation is likely to increase over time as tensions accumulate.
The model becomes most tangible when translated into energy prices.
Oil Price by Round Range (3% Increase per Round)
The model assumes a 3% increase per round to represent a sustained risk premium under prolonged tension, rather than a baseline market trend. This table assumes a starting crude price of roughly $105 per barrel:
| Round Range | Approx. Price ($/barrel) |
|---|---|
| 1–2 | 108–111 |
| 3–4 | 115–118 |
| 5–6 | 122–125 |
| 7–8 | 129–133 |
| 9–10 | 137–141 |
| 11–12 | 145–150 |
| 13–14 | 154–159 |
| 15–16 | 164–169 |
| 17–18 | 174–179 |
| 19–20 | 184–190 |
With gasoline currently around $4.10 per gallon, this trajectory could push prices toward $5.50 or higher within weeks, potentially altering incentives faster than the model predicts.
Escalation risk is not constant and tends to increase over time. Compromise remains a possible outcome, but within the current equilibrium it is unlikely to emerge through gradual adjustment alone. It typically requires either a shift in underlying incentives or the introduction of a face-saving path that allows both sides to move without appearing to concede.
Finally, real decisions are shaped by uncertainty and misperception, not perfect rationality. The model does not predict outcomes; it explains why the system holds and why it becomes fragile.
Final Thoughts
Game theory explains why the standoff persists. Each side is acting rationally. The simulation shows why it may not last. Risk rises faster than incentives change. The system is more likely to break before strategy resolves it.
Further Reading
Thomas Schelling, The Strategy of Conflict
James Fearon, Rationalist Explanations for War