quiz1 Flashcards
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
e) Depth of Tree
The uniform-cost search is equivalent to a depth-first search if step costs are all equal.
True/False?
False
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) max(hA, hB)
The problem of bfs is the space complexity since this algorithm needs to keep every node in memory.
True/False?
True
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
c) Adjust the probability of taking a “bad” (uphill) move
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
d) Contingency problem
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.
b) To guarantee the optimality of A* search, the heuristic function must never overstimate the actual cost to reach the goal state.
What is Uniform Cost Search?
U-c.s. - an uninformed search algorithm that uses the lowest cumulative cost to find a path from the source to the destination.