Game Playing Flashcards
What two forms of multi-agent environments (games) are there?
cooperative vs competitive
Why study games?
- fun
- historically entertaining
- interesting subject of study bc they are hard
- easy to represent
- agents are restricted to small number of actions
- problem and success are easy to communicate
True or False: Games have no adversary, Searches do.
False. Searches have no adversary, but Games do.
True or False: In Search, the solution is to create a method for finding the goal.
True
True or False: In Games, the solution is to win the game.
False. The solution is the strategy that specifies the next move for every possible opponent reply.
True or False: In Search, due to heuristics and CSP techniques an optimal solution can never be found, only an approximate one.
False. Heuristics and CSP techniques can find an optimal solution.
True or False: In Games, due to time limits an optimal solution can never be found, only an approximate one.
True
True or False: The evaluation function in Search estimates the cost from start to end.
True
True or False: The evaluation function in Games estimates how many moves it will take to win the game.
False. The evaluation function evaluates the “goodness” of the current game position.
What are Zero-Sum-Games?
One player’s gain is the other player’s/players’ loss.
Types of games are separated into a two-dimensional table. What are the two axes’ of the table?
- deterministic games vs games of chance
- perfect information vs imperfect information
What are deterministic games?
games without random components
What are games of chance?
games with random components
What does ‘perfect information’ mean, in regards to Games?
every player is able to see the entire game situation
What does ‘imperfect information’ mean, in regards to Games?
not every player/no player is able to see the entire game situation
What are examples of deterministic games with perfect information?
chess, checkers, GO, Othello