Provide answers to the following questions. Your answers should be thoughtful, clearly stated, and grammatically correct. Submit your answers through blackboard in .txt, .pdf, .odt, or .doc(x) format.
Consider a chess board with the black pieces removed, and the white pieces in their normal starting positions. The Switching Sides Problem requires you to find the shortest sequence of moves that puts all of the white pieces in the corresponding starting positions of the black pieces: The white queen should be in the usual starting position of the black queen etc. The actions available in each state correspond to the allowable moves for each piece.
Section 3.5 The textbook describes the straight line distance (SLD) heuristic for the problem of finding paths between cities in Romania. This is a nice heuristic, but what if we don't know all those straight line distances? Assume that we only know straight line distances for cities that are within 150 kilometers of the goal city. I propose the following heuristic based on this information:
h(s) = | { | 0, if the goal city is more than 150 kilometers from s. |
SLD otherwise. |
I claim that this heuristic admissible, but not consistent.
A Minimax search tree of three plys has a fan-out of three at each node. The utility values at the leaf nodes are:
[9,2,10, 3,5,1, 4,7,9, 2,10,9, 3,6,2, 5,5,6, 7,5,9, 6,2,11, 6,9,2]