Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Consider the following undirected weighted graph where you want to find a path from A to G. A / B --- C /

 Consider the following undirected weighted graph where you want to find a path from A to G. 
 A / \ B --- C \ / \ G --- H 
Weights (costs) of the edges are W(AB) = 1; W(AC) = 3; W(BC) = 1; W(BG) = 9; W(CG) = 5; W(CH) = 2; W(GH) = 1, and the heuristic estimates (h(n)) to the goal node, G, are h(A) = 5, h(B) = 4, h(C) = 1, h(G) = 0, h(H) = 1. Simulate A* search. At each step, show the path to the node that is being expanded, the length of that path, the total estimated cost (actual + heuristic) and the expanded list of nodes (all nodes visited so far in the order in which they were visited). Provide the answer in the following table. Path to node expanded Length of Path Total Estimated Cost Expanded list A 0 5 (A) ....... finish the table as suggested. Is the given h(n) function an admissible heuristic? Explain. 

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Relational Database Design A Practical Approach

Authors: Marilyn Campbell

1st Edition

1587193175, 978-1587193170

More Books

Students also viewed these Databases questions