Adversarial Search Problems
adversarial search problems - games In adversarial search, the agent maximizes utility rather than minimizing cost (which is done for standard search problems) Solution to adversarial search problem: strategy strategy - the recommended best possible move given some configuration of the agent(s) and their opponent(s) game tree - a tree where the nodes are game states and edges are moves Types of adversarial search problems zero-sum games - deterministic, turn-taking, two-player games (pure competition between the two players) In zero-sum games, the sum of the utilities of the game agents is zero (i.e. equal and opposite utilities) stochastic games - games with probabilistic outcomes cooperative games - games in which players have common interests and utility function general games - games in which agents have independent utilities (cooperation, indifference, competition, etc. are all possible) Components of an adversarial sear...