Week 9 Flashcards

1
Q

What are the different possible types of game?

A

Deterministic/Stochastic

How many players?

Zero-Sum/Non-zero-sum

Perfect/Imperfect Information

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

What is a Utility Function?

A

Defines the final numeric value for a game that ends in terminal state S for a player P.

Best achievable utility is the value of a state.

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

What is the Minimax value of a node?

A

Utility of the terminal state to which both players play optimally from that node.

One player maximises their utility, another tries to minimise.

Found in Adversarial search.

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

What is Alpha-beta pruning?

A

Let a be the value max can get at least.

When computing min value at n, if we find the value of n will not be greater than a, we stop exploring current nodes children.

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

What are the properties of Alpha-beta pruning?

A

Pruning has no effect on minimax value for the root.

Effectiveness improved by good child ordering.

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