Expansion is the phase in Monte Carlo Tree Search (MCTS) where one or more child nodes are added to the selected leaf node, thereby growing the search tree based on the legal actions available from that state. This step transitions the algorithm from traversing the existing tree to exploring new, previously unevaluated states. It typically occurs after the selection phase has identified a promising leaf node that has not been fully expanded. The new child nodes represent the immediate possible future states, making them candidates for subsequent simulation.
