Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Question 1) Search 10 marks Consider a grid with 'n' rows and 'm' columns. The agent will start at a particular cell and its job

image text in transcribed

Question 1) Search 10 marks Consider a grid with 'n' rows and 'm' columns. The agent will start at a particular cell and its job will be to move to a goal cell. The agent will have the following actions available to it: I. Move up, the cost of this action is +3 II. Move down, the cost of this action is -2 III. Move Right, the cost of this action is -1.5 IV. Move Left, the cost of this action is +0.5 The agent wants to find a path between the starting cell and the goal cell in as low of a cost as possible. However, the grid has special cells marked as 'W' and 'X', if your agent moves to the 'W' cell, then the agent will be teleported a cell (randomly selected) next to the goal state, but the cost will be *+7'. If your agent moves to the 'X' cell then your agent will be teleported to the starting cell, however, the cost will be *-7'. 2/5 For example, take a look at a 7 x 8 grid below: w X G Here the agent is at the position (0,0), and the goal is at the position (3.7). If the agent moves to the 'W' cell at (4.2), then the agent will be transported to either (36) or (2,7) or (4,7). Given the scenario above, answer the following questions: 1. II. III. IV. V. VI. VII. VIII What is the PEAS description of the agent? Describe its task environment, Model this problem as a search problem What is the branching factor of this problem? Can we use BFS or DFS on this problem? Explain your answer. Given the scenario above, write down the path that will be discovered by UCS? If we can run BFS on this problem, will BFS and UCS give the same answer? Explain Will Euclidean distance be an admissible heuristic? Will Manhattan distance be an admissible heuristic? Prove your answer. Come up with your own admissible heuristic, and solve the problem above using your heuristic and A search. LX

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

Hands-On Database

Authors: Steve Conger

2nd Edition

0133024415, 978-0133024418

More Books

Students also viewed these Databases questions

Question

2. How can competencies be used in employee development?

Answered: 1 week ago