Problem set 9
Using the game tree with chance nodes below (evaluating from left
to right):
- Mark the value of all the internal nodes, and indicate the best
moove at the root with an arrow.
- Justify why you can't prune the last two leaf nodes on the
right. That is, are there possible values of those leaf nodes that
would change the outcome - change Max's mind.
- Suppose we know that all leaf nodes are only in the range [-2;2].
After you evaluate the first two leaf nodes, what is the range of
possible values for the left chance node?
- Given your answer to (3), what other leaves can be pruned?
Challenge
Assume below that "max" trees contain all max nodes, "expectimax" trees
contain a max at the root, and alternating layers of max and chance
nodes. At chance nodes, all probabilities are non-zero.
- Assuming leaf nodes that are finite but unbounded (it's never
infinity, but we don't know how large or how small it could be), is pruning ever
possible in a max tree? Why?
- Is pruning ever available in an expectimax tree under the same
conditions? Why?
- If leaf values are all non-negative, is pruning ever possible in
an expectimax tree? Give an example or explain why not.
- If leaf values are all in the range [0,1], is pruning ever
possible in a max tree? Give an example or explain why not.
- If leaf values are all in the range [0,1], is pruning ever
possible in a expectimax tree? Give an example or explain why not.