Heuristic Search

Reading

You may want to focus on Question 1-2 below when you k

Note that these two sections of the chapter really only gives you one (1) algorithm, the A\(*\) Algorithm. Howeever, it exists in many different variants, and it depends on the heuristic function which also has to be designed and varied.

Briefing

Evaluation as Reference Group

(postponed from last session)

  1. Generic Questions
    • Are you comfortable with the goals of the module?
    • Do you make progress when you do exercises?
    • Are you able to complete exercises?
    • Do you gain skills that you feel that you can use in the future?
  2. Alter-Begin-Continue (Yellow Stickers Exercise)

Review Discussion

We discuss the following questions in class:

  1. What is a heuristic function? (page 102)
    • What is an admissible heuristic function? (page 103)
  2. How can you use A\(^*\) to solve one problem?
    Consider either the travel to Bucharest from the textbook, or a problem you have already studied.
  3. How can you vary A\(^*\) to solve other problems?
  4. How can you vary the heuristic function \(h(x)\) for different problems?
  5. How can we measure run time or time complexity for tree searches?

Discussion Exercise (AIMA Exercise 3.5)

Taken from the exercises at github.

Suppose two friends live in different cities on a map, such as the Romania map shown in the textbook. On every turn, we can simultaneously move each friend to a neighboring city on the map. The amount of time needed to move from city i to neighbor j is equal to the road distance d(i,j) between the cities, but on each turn the friend that arrives first must wait until the other one arrives (and calls the first on his/her cell phone) before the next turn can begin. We want the two friends to meet as quickly as possible.

  1. Write a detailed formulation for this search problem. (You will find it helpful to define some formal notation here.)
  2. Let \(D(i,j)\) be the straight-line distance between cities \(i\) and \(j\). Which of the following heuristic functions are admissible?
    • \(D(i,j)\);
    • \(2\cdot D(i,j)\);
    • \(D(i,j)/2\).
  3. Are there completely connected maps for which no solution exists?
  4. Are there maps in which all solutions require one friend to visit the same city twice?

Programming Exercises

Debrief

Early debrief at 2.15 today. Discuss one programming exercises.