Homework Assignment:
Fundamentals of Artificial Intelligence
(8Marks )
_______________________________________________________________
Problem Description:
You are given a road map graph where the objective is to navigate
from the starting node (S) to the goal node (G). Each link in the
graph represents the distance between two nodes, and each node
contains a number indicating the straight-line (heuristic) distance
from that node to the goal (G).
Solve the above problem by :
• Use the A* search algorithm to find the optimal path from
node S to G.
• Use the Greedy Best First search algorithm to find the optimal
path from node S to G.
• Use Breadth-first search and depth-first search to find the optimal
path from node S to G.