Minimax Strategy¶
Core Idea¶
Minimax is a decision rule for adversarial or worst-case conditions: select the action whose worst possible outcome is the best worst possible outcome — minimize the maximum loss the environment can inflict. The structural commitment is the substitution of an adversary's selection step for a probability distribution: where expected-value reasoning integrates over a distribution, minimax takes a supremum over a feasible set.
How would you explain it like I'm…
Best Of The Worst
Plan For The Meanest Move
Minimize The Maximum Loss
Broad Use¶
- Game theory: the minimax value is the central solution concept for zero-sum games and a benchmark for non-zero-sum ones.
- Robust control: H-infinity control minimizes the worst-case effect of disturbances; structures are sized to worst-case load envelopes.
- Computer science: worst-case complexity is minimax over inputs; game-tree search uses the minimax algorithm.
- Statistics and ML: minimax estimators minimize worst-case risk; adversarial training and GANs are explicitly minimax.
- Policy: maximin rules are a principled response to catastrophic risk under deep uncertainty.
- Negotiation: a party's BATNA is a minimax value, the floor it can guarantee outside the deal.
Clarity¶
Naming minimax separates two reasoning modes that look alike: expected-value integrates over a distribution, minimax takes the supremum over a feasible adversary set — and makes the chooser's real question precise: what set are we taking the supremum over?
Manages Complexity¶
A sprawling, substrate-specific deliberation collapses to the specification of one adversary set and one supremum over it, plus an accounting of the insurance premium paid versus expected value.
Abstract Reasoning¶
Minimax is a quantifier-alternation move (min over my actions, max over their responses); the order of commitment is a design lever, and the minimax inequality's saddle-point gap prices what the first-mover loses.
Knowledge Transfer¶
- Engineering: enumerate the adversary set (load combinations, attack vectors) and minimax-optimize.
- Learning: add minimax structure (adversarial training, distributionally robust optimization) to produce models that degrade gracefully.
- Negotiation: a party's minimax value over the no-deal set is the floor below which any deal is rejected.
Example¶
A bridge engineer constructs an adversary set — the worst credible combination of dead, live, wind, seismic, and thermal loads — takes the supremum over it, and sizes members so stresses stay within limits with a safety factor. The bridge costs more than an expected-value design; that extra cost is the explicit insurance premium.
Relationships to Other Primes¶
Parents (1) — more general patterns this builds on
- Minimax Strategy is a kind of Optimization — Minimax is the SPECIFIC quantifier-alternation specialization of optimization — optimize over actions against a SUPREMUM over an adversary set (a sup-over-set rule), distinct from optimization in general. The file makes optimization/multiobjective_optimization the genus it is not identical to.
Path to root: Minimax Strategy → Optimization
Not to Be Confused With¶
- Minimax Strategy is not Optionality because optionality preserves upside by keeping favorable choices open, whereas minimax bounds downside by optimizing the worst case.
- Minimax Strategy is not Antifragility because antifragility benefits from volatility and stressors, whereas minimax merely limits worst-case loss without gaining from disorder.
- Minimax Strategy is not Expected Utility because expected utility integrates over a probability distribution, whereas minimax takes a supremum over a feasible set, refusing to trust the distribution.