Home / Week 12 Exercises / Grid Expectations

Grid Expectations

The questions below are due on Friday May 10, 2019; 05:00:00 PM.
 
You are not logged in.

If you are a current student, please Log In for full access to this page.
Music for this Problem

Consider a uniform grid that extends infinitely in all directions, as in the earlier exercise about pruning.

We start out at the grid point marked S. Assume the goal is far away and not shown in the figures.

In the grid on the left, each state has four child states (movement on the grid is limited to up, down, left, and right). In the one on the right, each state has eight children (diagonal moves are allowed).

n this problem, we will consider uniform-cost search in this domain. Assume that the cost of traversing a path is the Euclidean distance of the path, and that the distance between points in the vertical and horizontal directions is 1 meter.

Searching

Answer the following questions about uniform-cost search without dynamic programming in the eight-action grid (the grid on the right). Enter your answers as decimal numbers accurate to within 10^{-1}

What is the cost of the second node expanded?
What is the cost of the sixth node expanded?

What is the cost of the tenth node expanded?

Heuristics

The "Manhattan distance" between two states (x_0,y_0) and (x_1,y_1) on the grid is defined as:

|x_1 - x_0| + |y_1-y_0|

Assume that we are using A* search and we use this distance an a heuristic.

In the left-most grid, are we guaranteed to find an optimal path?
In the right-most grid, are we guaranteed to find an optimal path?