Exercise 3.3 Consider the problem of finding a path in the grid shown in Figure 3.13 from

Question:

Exercise 3.3 Consider the problem of finding a path in the grid shown in Figure 3.13 from the position s to the position g. A piece can move on the grid horizontally and vertically, one square at a time. No step may be made into a forbidden shaded area.

(a) On the grid shown in Figure 3.13, number the nodes expanded (in order) for a depth-first search from s to g, given that the order of the operators is up, left, right, then down. Assume there is a cycle check.

(b) For the same grid, number the nodes expanded, in order, for a best-first search from s to g. Manhattan distance should be used as the evaluation function. The Manhattan distance between two points is the distance in the x-direction plus the distance in the y-direction. It corresponds to the distance traveled along city streets arranged in a grid. Assume multiple-path pruning.

What is the first path found?

(c) On the same grid, number the nodes expanded, in order, for a heuristic depth-first search from s to g, given Manhattan distance as the evaluation function. Assume a cycle check. What is the path found?

(d) Number the nodes in order for an A∗ search, with multiple-path pruning, for the same graph. What is the path found?

(e) Show how to solve the same problem using dynamic programming. Give the dist value for each node, and show which path is found.

(f) Based on this experience, discuss which algorithms are best suited for this problem.
(g) Suppose that the graph extended infinitely in all directions. That is, there is no boundary, but s, g, and the blocks are in the same positions relative to each other. Which methods would no longer find a path? Which would be the best method, and why?

Step by Step Answer:

Related Book For  book-img-for-question
Question Posted: