Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

3 . Consider the unbounded version ( aka . Infinitely large ) of the regular 2 D grid shown in the following Figure. The start

3. Consider the unbounded version (aka. Infinitely large) of the regular 2D grid shown in the following Figure. The start state is at the origin, (0,0), and the goal state is at (x, y).
a. What is the branching factor b in this state space using breadth-first tree search? (Hint: the tree search is not the same as the graph search, tree search don't (no need to) keep tracking whether it has been visited before or not. In graph search, you need track that. If it is already visited, it will be skipped and not put into the queue, therefore not expanded)
b. How many distinct states are there at depth k (for k >0)?
- At depth k, the number of distinct states would be b^k less the last goal. Therefore, we have 4^k distinct states at depth k.
c. What is the maximum number of nodes expanded by breadth-first tree search? (Hint: you don't expand the last goal state when you reach that state, don't forgot -1 to the total number)

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

Database Internals A Deep Dive Into How Distributed Data Systems Work

Authors: Alex Petrov

1st Edition

1492040347, 978-1492040347

More Books

Students also viewed these Databases questions

Question

Complexity of linear search is O ( n ) . Your answer: True False

Answered: 1 week ago

Question

3. Discuss the process of behavior modeling training.

Answered: 1 week ago