Q10Principles of Artificial Intelligence
Question
2 marks
What is a Game Tree?
Answer
A Game Tree is a massive, directed mathematical graph architecture used in adversarial AI to strictly map every single possible sequence of moves in a competitive environment.
In games like Chess, the Initial State is the root node. Every legal move generates a branch to a new child node (the resulting board state). The Game Tree expands exponentially until it reaches terminal end-game states. The AI violently searches this massive mathematical tree using the Minimax algorithm to deduce the absolute optimal move.