In our previous article, we introduced the concept of adversarial search and met our two players: Max and Min. Now let's see how computers actually decide on the best move using the Minimax algorithm!
Imagine you're playing Tic-Tac-Toe and it's your turn. You want to make the best move possible. Here's how the Minimax algorithm would approach this:
Imagine we're near the end of a Tic-Tac-Toe game:
It's Max's turn (X). Let's see how Minimax would analyze this:
This scenario creates what we call a game tree. The starting position is at the top, and each possible move creates a new branch.
Each position is assigned a value based on whether it leads to a win, loss, or draw.
Here is a partial game tree from the board above.
Here's the clever part! The values from the end states travel upward:
So if Max has three possible moves leading to values of +1, 0, and -1, Max will choose the move that leads to +1.
In more complex games like chess, looking at all possible moves until the end of the game would be impossible - there are more possible chess games than atoms in the universe!
Instead, computers use evaluation functions to estimate how good a position is without playing all the way to the end. For example, in chess, having more pieces than your opponent is generally good, so the computer might assign a higher value to those positions.
We'll discover how computers make these calculations faster using a technique called Alpha-Beta Pruning, and see how this applies to more complex games beyond Tic-Tac-Toe!