0 votes
in Artificial Intelligence by
edited by
what is minimax algorithm along with the different terms.

1 Answer

0 votes
by
Minimax algorithm is a backtracking algorithm used for decision making in game theory. This algorithm provides the optimal moves for a player by assuming that another player is also playing optimally.

This algorithm is based on two players, one is called MAX, and the other is called the MIN.

Following terminologies that are used in the Minimax Algorithm:

1) Game tree: A tree structure with all possible moves.

2) Initial State: The initial state of the board.

3) Terminal State: Position of the board where the game finishes.

4) Utility Function: The function that assigns a numeric value for the outcome of the game.

Related questions

0 votes
asked Apr 27, 2021 in Kubernetes K8s by Robindeniel
0 votes
asked Aug 14, 2023 in Other by sharadyadav1986
...