Lecture 5 Flashcards

1
Q

What is a best first search?

A

Choose node with minimum value of some evaluation function.

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

Can a heuristic function be non-negative?

A

No, it is zero at the goal state.

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

How does a greedy search work?

A

Expand node you think is the closest goal state.

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

Why is greedy search not effective?

A

Heuristic is not perfect estimation.

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

How does a* work?

A

Path cost + heuristic cost.

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

When is A* optimal?

A

if h(n) is an underestimate of the actual cost from n to the goal!

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

When is a heuristic admissible?

A

When 0 < h(n) < true cost to nearest goal

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