Podcast
Questions and Answers
Depth-first search always expands the deepest node in the current frontier.
Depth-first search always expands the deepest node in the current frontier.
True (A)
A heuristic h(n) is admissible if it only overestimates the cost to reach the goal in a few cases.
A heuristic h(n) is admissible if it only overestimates the cost to reach the goal in a few cases.
False (B)
Consider depth-limited search on a uniform search tree with branching factor 𝑏, maximum depth 𝑙 (for the limit of depth-limited search as well as the search tree) and assume that the only node with a goal state is at depth 𝑑.
The time complexity of depth-limited search is 𝑂(𝑏𝑑).
Consider depth-limited search on a uniform search tree with branching factor 𝑏, maximum depth 𝑙 (for the limit of depth-limited search as well as the search tree) and assume that the only node with a goal state is at depth 𝑑. The time complexity of depth-limited search is 𝑂(𝑏𝑑).
False (B)
Consider a route finding problem like the ones discussed in class. A colleague suggests to use half the line of sight distance from a state to the goal as a heuristic. This is an admissible heuristic.
Consider a route finding problem like the ones discussed in class. A colleague suggests to use half the line of sight distance from a state to the goal as a heuristic. This is an admissible heuristic.
Assume a finite state space and that all step costs are positive.
Greedy best-first search is optimal if we use the true minimal path cost from a node to the goal as the heuristic.
Assume a finite state space and that all step costs are positive. Greedy best-first search is optimal if we use the true minimal path cost from a node to the goal as the heuristic.
Uniform cost-search always expands the node from the frontier with the lowest path cost 𝑔(𝑛).
Uniform cost-search always expands the node from the frontier with the lowest path cost 𝑔(𝑛).
Which statement(s) are true for A* search?
Which statement(s) are true for A* search?
Perform A* search for the problem shown below (start location: Sibiu; destination location: Bucharest). The table shows the heuristic to be used. What is the cost of the found solution?
Perform A* search for the problem shown below (start location: Sibiu; destination location: Bucharest). The table shows the heuristic to be used. What is the cost of the found solution?
Consider the route-finding problem shown below with goal state Bucharest. We want to specify an admissible heuristic ℎ(𝑛). How large can ℎ(In(Fagaras)) be at most?
Consider the route-finding problem shown below with goal state Bucharest. We want to specify an admissible heuristic ℎ(𝑛). How large can ℎ(In(Fagaras)) be at most?
Perform the greedy best-first search for the problem shown below (start location: Sibiu; destination location: Bucharest). The table shows the heuristic to be used. What is the cost of the found solution?
Perform the greedy best-first search for the problem shown below (start location: Sibiu; destination location: Bucharest). The table shows the heuristic to be used. What is the cost of the found solution?
Flashcards
Depth-first search
Depth-first search
Depth-first search always expands the deepest node in the current frontier.
Admissible heuristic
Admissible heuristic
A heuristic h(n) is admissible if it only overestimates the cost to reach the goal in at least one case, not just a few.
Depth-limited search complexity
Depth-limited search complexity
The time complexity of depth-limited search is 𝑂(𝑏𝑙), not 𝑂(𝑏𝑑), when we consider a uniform search tree with branching factor 𝑏, maximum depth 𝑙, and a goal at depth 𝑑.
Line of sight heuristic
Line of sight heuristic
Signup and view all the flashcards
Greedy best-first search
Greedy best-first search
Signup and view all the flashcards
Uniform cost-search
Uniform cost-search
Signup and view all the flashcards
A* search evaluation function
A* search evaluation function
Signup and view all the flashcards
A* search solution cost
A* search solution cost
Signup and view all the flashcards
Admissible heuristic bound
Admissible heuristic bound
Signup and view all the flashcards
Greedy best-first search solution cost
Greedy best-first search solution cost
Signup and view all the flashcards