Decision Making under Uncertainty

When a decision-maker doesn’t know the probabilities of various outcomes (states of nature), they use decision criteria under uncertainty. Here are five key methods:


i) Maximax (Gain) or Minimin (Loss) Criterion

  • Maximax: Optimistic approach — chooses the alternative with the maximum possible gain.

  • Minimin: If dealing with costs/losses, chooses the alternative with the minimum possible loss.

Example:

AlternativesOutcome 1Outcome 2Outcome 3
A1401020
A2302515
A3205010
  • Maximax:
    A1 → Max = 40
    A2 → Max = 30
    A3 → Max = 50 → Choose A3

ii) Maximin Criterion

  • Pessimistic approach — choose the alternative whose minimum payoff is the highest.

Example:

From the same table above:

  • A1 → Min = 10

  • A2 → Min = 15

  • A3 → Min = 10
    Choose A2


iii) Hurwicz Alpha Criterion

  • Weighted average of best and worst outcomes.

  • Formula: Hurwicz value = α × (best payoff) + (1 – α) × (worst payoff)

  • α is the coefficient of optimism (0 ≤ α ≤ 1)

Example:

Let α = 0.6

  • A1 → 0.6×40 + 0.4×10 = 24 + 4 = 28

  • A2 → 0.6×30 + 0.4×15 = 18 + 6 = 24

  • A3 → 0.6×50 + 0.4×10 = 30 + 4 = 34Choose A3


iv) Laplace Criterion

  • Assumes all outcomes are equally likely.

  • Take the average payoff for each alternative.

Example:

  • A1: (40+10+20)/3 = 23.33

  • A2: (30+25+15)/3 = 23.33

  • A3: (20+50+10)/3 = 26.67 → Choose A3


v) Minimax Regret Criterion

  • Builds a regret table:

    1. For each state, find the maximum payoff.

    2. Subtract actual payoff from the maximum to get regret.

    3. Pick the alternative with the minimum of the maximum regrets.

Regret Table:

AlternativesRegret 1Regret 2Regret 3Max Regret
A1040040
A21025525
A32001020 → Choose A3

🌳 Simple Decision Tree Example

Scenario:

You can invest in either Project A or Project B.

ProjectSuccess (₹)Failure (₹)
A100,00020,000
B80,00050,000

But you don’t know the probabilities, so use a decision tree under uncertainty.

                [Decision Node]
                    /       \
               Project A   Project B
                /    \       /    \
          Success  Failure  Success  Failure
         (100k)    (20k)    (80k)    (50k)
  • Use any of the criteria (maximax, maximin, etc.) to decide:

    • Maximax: Choose A (100k vs 80k)

    • Maximin: Choose B (50k vs 20k)