Artificial Intelligence : MiniMax Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

Max

A

Wants to win

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

Min

A

Wants to reduce Max’s utility.

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

MiniMax value of a state

A

The utility of a state given that both players play optimally.

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

Terminal state

A

A condition in which the problem “ends”, either due to the rules of the problem or because of a lack of options from that point

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

MAX state

A

Maximum of the utilities of its successor states, takes the maximum value from successors

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

MIN state

A

Minimum of the utilities of its successor states, takes the minimal value from successors

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

Time complexity

A

b^m
B = branching factor
M = depth

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

Space complexity

A

b*m
B = branching factor
M = depth

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

Cutoff

A

Can’t explore all options within reasonable amount of time so only deal with set amount of the tree and explore that instead using heuristic evaluation function.

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