quiz1 Flashcards

1
Q

Which one is NOT an item to define the problem formulation?
a) Path Cost
b) Initial State
c) Successor function
d) Goal test
e) Depth of tree

A

e) Depth of Tree

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

The uniform-cost search is equivalent to a depth-first search if step costs are all equal.
True/False?

A

False

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

Given two admissible heuristics hA and hB. Consider performing A* search. Which is generally best to use if we want to expand the fewest number of nodes?
a) max(hA, hB)
b) 0.5(hA+hB)
c) hA + hB

A

a) max(hA, hB)

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

The problem of bfs is the space complexity since this algorithm needs to keep every node in memory.
True/False?

A

True

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

Assuming a maximization problem, what is the primary role of “temperature” in Simulated Annealing?
a) Control how much memory the algorithm uses
b) Set the algorithm’s intial state
c) Adjust the probability of taking a “bad” (uphill) move
d) Adjust the probability of taking a “good” (uphill) move

A

c) Adjust the probability of taking a “bad” (uphill) move

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

What is the problem type of a non-deterministic and partial observable environment?
a) Single-state problem
b) Policy problem
c) Conformant problem
d) Contingency problem
e) Exploration problem

A

d) Contingency problem

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

Which statement is true?
a) If a heuristic is admissible, then it is also consistent
b) To guarantee the optimality of A* search, the heuristic function must never overstimate the actual cost to reach the goal state.
c) A* search is guaranteed to always expand no more nodes than depth-first search.

A

b) To guarantee the optimality of A* search, the heuristic function must never overstimate the actual cost to reach the goal state.

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

What is Uniform Cost Search?

A

U-c.s. - an uninformed search algorithm that uses the lowest cumulative cost to find a path from the source to the destination.

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