Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Figure 2 Question 2 [ 6 pts ] Figure 2 shows a robot navigation field, where the green square ( b 7 ) is the
Figure
Question pts Figure shows a robot navigation field, where the green square b is the robot, and red square d is the goal. The shad squares such as c d etc. are obstacles. The robot is not allowed to move in diagonal line. Nodes are coded using an alphabet letter followed by a digit such as b b etc. When two sibling nodes are inserted into fringe queue use deque order to favor node with a lower alphabet and a lower digit. For example, if d and e are sibling nodes, d will be dequeued first because d has a lower alphabetic order than e If e and e are sibling nodes, e will be dequeued first because has a lower digit than Node expandedvisited does not need to be revisited.
Use Depth First Search to find path from b to d
o Report nodes in the fringe in the orders they are included in the fringe. pt
o Report the order of the nodes being expanded. pt
o Report the final path from b to d pt
DFS
Fringe: Node visitedexpanded
Use Breadth First Search to find path from b to d
o Report nodes in the fringe in the orders they are included in the fringe. pt
o Report the order of the nodes being expanded. pt
o Report the final path from b to d pt
BFS
Fringe: Node visitedexpanded
Use Best First Search to find path from b to dUsing Manhattan distance as the heuristic function
o Report nodes in the fringe including their fN values in the orders they are included in the fringe. pt
o Report the order of the nodes being expanded. pt
o Report the final path from b to d pt
Best First Search
Fringe: fNhN Node visitedexpanded
Use A to find path from b to dUsing Manhattan distance as the heuristic function
o Report nodes in the fringe including their fN values in the orders they are included in the fringe. pt
o Report the order of the nodes being expanded. pt
o Report the final path from b to d pt
A Search
Fringe: fNgNhN Node visitedexpanded
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started