> For the complete documentation index, see [llms.txt](https://osh.fducslg.com/notes/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://osh.fducslg.com/notes/readme/04-decision-networks-value-of-information.md).

# Decision Networks and Value of Information

### Decision Networks

**Chance nodes**: Chance nodes in a decision network behave identically to Bayes’ nets

**Action nodes**: Action nodes are nodes that we have complete control over; they’re nodes representing a choice between any of a number of actions which we have the power to choose from. We’ll represent action nodes with rectangles.

**Utility nodes**: Utility nodes are children of some combination of action and chance nodes. They output a utility based on the values taken on by their parents, and are represented as diamonds in our decision networks.

Our goal is to achieve **Maximum Expected Utility**.

#### Action Selection in Decision Networks

* Instantiate all evidence
* Set action node(s) each possible way
* Calculate posterior for all parents of utility node, given the evidence
* Calculate expected utility for each action
* Choose maximizing action

### Value of Information

**The value of perfect information** (VPI) mathematically quantiﬁes the amount an agent’s maximum expected utility is expected to **increase** if it observes some new evidence. We can compare the VPI of learning some new information with the cost associated with observing that information to make decisions about whether or not it’s worthwhile to observe.

$$
MEU(e) = \max\_{a} \sum\_{s}P(s|e)U(s,a)
$$

$$
MEU(e,e^{'}) =\max\_{a}\sum\_{s}P(s|e,e^{'})U(s,a)
$$

$$
MEU(e,E^{'}) =\sum\_{e^{'}}P(e^{'}|e)MEU(e,e')
$$

$$
VPI(E^{'}|e) = MEU(e, E^{'})-MEU(e)
$$

#### VPI Proproties

**Nonnegative**

$$
\forall E^{'}, e : VPI(E^{'}|e) \geq 0
$$

$$
VPI(E\_j, E\_k|e) \neq VPI(E\_j|e)+VPI(E\_K|e)
$$
