Regret¶
Core Idea¶
Regret is the value gap an agent registers between the outcome it actually obtained and the better outcome that a forgone alternative would have produced — a comparison made after the fact against a counterfactual reference rather than against prior expectations. The defining structure is retrospective and relative: the same realized outcome can be coded as a triumph or a regret depending solely on which unchosen path it is compared against. Anticipated regret then feeds backward into choice, so the pattern couples a backward-looking evaluation to a forward-looking decision rule.
How would you explain it like I'm…
Wishing You'd Picked the Other One
The Gap from What Could Have Been
Regret
Broad Use¶
- Decision theory: regret-minimization criteria (Savage's minimax regret) select acts that bound the worst-case shortfall against the best act in hindsight.
- Behavioral economics: anticipated regret explains why people buy insurance, hold losing stocks, or avoid switching defaults.
- Reinforcement learning / online learning: "regret" is the formal objective — cumulative gap between an algorithm's reward and that of the best fixed action in hindsight; bandit algorithms are rated by regret bounds.
- Medicine: clinicians weigh decision regret (acting vs. waiting) when a missed-window outcome is irreversible.
- Auction/market design: bidders shade bids to avoid the regret of the winner's curse or of leaving surplus on the table.
Clarity¶
Naming regret separates two evaluations that ordinary "disappointment" conflates: shortfall against what you expected versus shortfall against what you could have chosen. It lets practitioners say precisely that a good outcome can still be regretted (a winning bet placed too small) and that minimizing regret is a different objective from maximizing expected value.
Manages Complexity¶
Regret compresses a whole counterfactual tree into a single scalar — the distance from the best forgone branch — turning "what else might I have done" into a comparable quantity. This bounds otherwise open-ended counterfactual reasoning to the one comparison that matters for evaluation and learning.
Abstract Reasoning¶
Once regret is recognized, minimax-regret and no-regret reasoning become available: an agent can commit to decision rules whose hindsight shortfall is provably bounded even under adversarial conditions, without needing a prior over states. It also licenses inferences about behavior that expected-utility models miss (default stickiness, omission bias).
Knowledge Transfer¶
The online-learning notion of bounding cumulative regret transfers directly to robust policy design: minimize the worst-case gap to the best benchmark you could not have known in advance. Conversely, the psychological finding that anticipated regret distorts choice transfers to mechanism design, where formats are engineered to reduce bidders' or consumers' regret exposure.
Relationships to Other Primes¶
Parents (3) — more general patterns this builds on
- Regret presupposes Comparison — Regret presupposes Comparison: it is the value gap measured between the realized outcome and a counterfactual alternative.
- Regret presupposes Decision — Regret presupposes Decision: there must have been a prior commitment among alternatives before retrospective evaluation can register a gap.
- Regret presupposes Modal Reasoning — Regret presupposes modal reasoning because the value gap it registers is a comparison between the actual outcome and a counterfactual alternative.
Path to root: Regret → Comparison
Not to Be Confused With¶
- Regret is not risk_aversion because risk aversion is a prospective preference over uncertain magnitudes, whereas regret is a retrospective comparison against a forgone alternative.
- Regret is not loss_aversion because loss aversion codes outcomes against a status-quo reference point, while regret codes them against the best unchosen option.
- Regret is not counterfactual_reasoning (its parent) because counterfactual reasoning is the general operation of considering alternatives, whereas regret is the specific valuation of the chosen-versus-forgone gap that drives evaluation and learning.