Lecture 5 - Game Playing Flashcards

1
Q

What are 3 reasons that game playing is more complex than general problem solving?

A

1) competition from opponent
2) large search space usually
3) lack of accurate heuristics

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What does deterministic mean in the context of game playing?

A

The same move in the same situation will always produce the same result

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What does perfect information mean in the context of game playing?

A

Both players always have access to the entire game state

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

When playing against an opponent, the search strategy is normally referred to as?

A

adversarial search

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is an evaluation function, in the context of game playing?

A

A function that tells us how good a particular position is

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

When an opponent chooses a move we can assume that he will try to _________ our score

A

minimise

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How does minimax basically work?

A

If the move being considered will be the opponents return the minimum value, otherwise return the maximum

How well did you know this?
1
Not at all
2
3
4
5
Perfectly