Consider the minimax search scenario where it is agent A’s t…
Consider the minimax search scenario where it is agent A’s turn and the current state can be expanded in to states 1 and 2 where it is agent B’s turn. Each of those states can be expanded to 1.1, 1.2, 2.1, and 2.2, where it is again A’s turn. Now consider that each of those states can be expanded twice to the following eight states with corresponding evaluation scores from A’s evaluation function:1.1.1: 101.1.2: 51.2.1: 81.2.2: 92.1.1: 42.1.2: 52.2.1: 22.2.2: 9Which state would the minimax algorithm move agent A in to?
Read Details