PSet 7: Minimax
(videos: 2-Player Games)
What is the value of the root node in the following diagram?

Draw the entire game tree for the student vs professor game below. Remember the student goes first, selecting either the left or right half. What is the value of the root? Draw the tree with values on nodes. Circle the value of the root.
| P | S | S | P |
|---|---|---|---|
| S | P | P | S |
| S | P | S | S |
| P | S | S | S |
Explain why just counting pieces is a poor board evaluation for checkers.
Challenge Problem¶
Show that for every game tree, if Min is playing sub-optimally, the utility value for max can never be lower than the value obtained playing an optimal min.