362. Decision Criteria

Five classical criteria for decisions under uncertainty when probabilities are unknown or deeply uncertain (probability estimates aren’t trustworthy). Used when EMV doesn’t apply.

362.1. Setup

Acts 𝑎𝑖, states 𝑠𝑗, payoff matrix 𝑉𝑖𝑗. No probabilities. How to choose?

Five rules give five different answers, reflecting different attitudes toward uncertainty.

362.2. Maximin (pessimist)

Worst-case thinking. For each act, find the worst possible payoff. Pick the act with the best worst case:

𝑎=argmax𝑖(min𝑗𝑉𝑖𝑗)

Very conservative — wars, safety-critical systems, fiduciary obligations.

362.3. Maximax (optimist)

Best-case thinking. For each act, find the best possible payoff. Pick the act with the best best case:

𝑎=argmax𝑖(max𝑗𝑉𝑖𝑗)

Aggressive — startup founders, venture capital, lottery players.

362.4. Minimax regret (Savage)

Avoid kicking-yourself thinking. For each (act, state), compute the regret — how much better you’d have done with the best act for that state:

𝑅𝑖𝑗=max𝑘𝑉𝑘𝑗𝑉𝑖𝑗

Then minimize the maximum regret:

𝑎=argmin𝑖(max𝑗𝑅𝑖𝑗)

Used when retrospective comparison is the bigger concern than absolute outcome — diplomatic / political decisions.

362.5. Hurwicz criterion (compromise)

Linear combination of optimism and pessimism. Coefficient of optimism 𝛼[0,1]:

𝐻(𝑎𝑖)=𝛼max𝑗𝑉𝑖𝑗+(1𝛼)min𝑗𝑉𝑖𝑗𝑎=argmax𝑖𝐻(𝑎𝑖)

𝛼=1: maximax. 𝛼=0: maximin. 𝛼=0.5: balanced.

Calibrate 𝛼 to the decision-maker’s risk attitude (or context: 𝛼 high in opportunity-rich environments, low in threat-heavy ones).

362.6. Laplace (insufficient reason)

Pretend each state is equally likely (uniform prior), then apply EMV:

𝐿(𝑎𝑖)=1𝑛𝑗𝑉𝑖𝑗(simple average over states)𝑎=argmax𝑖𝐿(𝑎𝑖)

Equivalent to Bayesian decision under uniform prior. The first thing to try when you have no information about state probabilities.

362.7. Comparison example

Payoffs:

𝑠1𝑠2𝑠3
𝑎1501030
𝑎2204010
𝑎300100
MaximinMaximaxMin RegretHurwicz (𝛼=0.6)Laplace
𝑎110500 (regret table needed)0.650+0.4(10)=2613(5010+30)=23.3
𝑎210402823.3
𝑎301006033.3

Different criteria, different winners — picks 𝑎2 (Maximin) vs 𝑎3 (Maximax / Hurwicz / Laplace).

362.8. Which to use?

No single right answer — depends on:

362.9. See also