Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

2.4 Decisions Under Uncertainty

Source

Perception gives the robot a belief. Reasoning turns that belief into an action. In decision theory we assign a cost C(a,x)C(a, x) to taking action aa when the true state is xx, and then pick the action that is best on average under our belief.

Minimum expected cost

Given a belief P(xz)P(x \mid z), the expected cost of action aa is

Cˉ(a)=xC(a,x)P(xz)\bar{C}(a) = \sum_x C(a, x)\,P(x \mid z)

and the rational choice is a=argminaCˉ(a)a^\star = \arg\min_a \bar{C}(a).

Example: should the robot stop?

A delivery robot’s camera reports whether a person is in its path. Let p=P(personz)p = P(\text{person} \mid z). The robot can continue or stop. Stopping costs time; continuing into a person is far worse:

no personperson
continue0100
stop22
<Figure size 770x396 with 1 Axes>

Because a collision is 50 times more costly than a stop, the robot should stop whenever the probability of a person exceeds just 2%. This asymmetry is what makes safe robots cautious, and it follows directly from (1) rather than from any hand-tuned rule.

Value of information

Should the robot pay to take another measurement? The value of information (VOI) is the expected reduction in cost from acting after observing zz instead of acting on the prior alone:

VOI=minaxC(a,x)P(x)    zP(z)minaxC(a,x)P(xz)\text{VOI} = \min_a \sum_x C(a,x)P(x) \;-\; \sum_z P(z)\,\min_a \sum_x C(a,x)P(x \mid z)

A measurement is worth taking when its VOI exceeds its cost.

<Figure size 770x396 with 1 Axes>

The VOI is largest near the decision threshold, where the robot is genuinely unsure what to do, and falls toward zero when it is already confident either way. Russell and Norvig give a fuller treatment of decision theory Russell & Norvig, 2020.

References
  1. Russell, S., & Norvig, P. (2020). Artificial Intelligence: A Modern Approach (4th ed.). Pearson.