Which of the following statements are true? (A) Minimax search is breadth-first: it processes all the nodes at a level before moving to a node in next level. (B) The effectiveness of the alpha-beta pruning is highly dependent on the order in which the states are examined. (C) The alpha-beta search algorithm computes the same optimal moves as minimax algorithm. (D) Optimal play in games of imperfact information does not require reasoning about the current and future belief states of each player. Choose the correct answer from the options given below:
Which of the following statements are true? (A) Minimax search is breadth-first: it processes all the nodes at a level before moving to a node in next level. (B) The effectiveness of the alpha-beta pruning is highly dependent on the order in which the states are examined. (C) The alpha-beta search algorithm computes the same optimal moves as minimax algorithm. (D) Optimal play in games of imperfact information does not require reasoning about the current and future belief states of each player. Choose the correct answer from the options given below: Correct Answer (B) and (C) only
The correct answer is option 3.
Key Points
Statement (A): Minimax search is breadth-first: it processes all the nodes at a level before moving to a node in the next level. But it is a depth-first search.
Hence the statement A is False.
Statement (B): The effectiveness of the alpha-beta pruning is highly dependent on the order in which the states are examined.
Yes. It depends on which children are visited first. It's likely that no pruning happens if a node's children are visited in the worst possible order. We want to visit the best child first for max nodes so that time is not lost on the other children who are exploring worse scenarios. We want to start with the worst child when it comes to min nodes.
Hence the statement B is true.
Statement C: The alpha-beta search algorithm computes the same optimal moves as the minimax algorithm.
True, it prunes nodes that have no bearing on the final outcome.
Hence the statement C is true.
Statement D: Optimal play in games of imperfect information does not require reasoning about the current and future belief states of each player.
False, it necessitates.
Hence the statement D is False.