Vacuum Cleaner Problem in Artificial Intelligence

In this article, we are going to study about the vacuum cleaner problem in AI. What it is, what type of agent acts in this problem, what goals the agent in this problem has and how all the working takes place in solving this problem?
Submitted by Monika Sharma, on May 30, 2019

Vacuum cleaner problem is a well-known search problem for an agent which works on Artificial Intelligence. In this problem, our vacuum cleaner is our agent. It is a goal based agent, and the goal of this agent, which is the vacuum cleaner, is to clean up the whole area. So, in the classical vacuum cleaner problem, we have two rooms and one vacuum cleaner. There is dirt in both the rooms and it is to be cleaned. The vacuum cleaner is present in any one of these rooms. So, we have to reach a state in which both the rooms are clean and are dust free.

So, there are eight possible states possible in our vacuum cleaner problem. These can be well illustrated with the help of the following diagrams:

steps for Vacuum Cleaner Problem in Artificial Intelligence 1
steps for Vacuum Cleaner Problem in Artificial Intelligence 2
steps for Vacuum Cleaner Problem in Artificial Intelligence 3
steps for Vacuum Cleaner Problem in Artificial Intelligence 4

Here, states 1 and 2 are our initial states and state 7 and state 8 are our final states (goal states). This means that, initially, both the rooms are full of dirt and the vacuum cleaner can reside in any room. And to reach the final goal state, both the rooms should be clean and the vacuum cleaner again can reside in any of the two rooms.

The vacuum cleaner can perform the following functions: move left, move right, move forward, move backward and to suck dust. But as there are only two rooms in our problem, the vacuum cleaner performs only the following functions here: move left, move right and suck.

Here the performance of our agent (vacuum cleaner) depends upon many factors such as time taken in cleaning, the path followed in cleaning, the number of moves the agent takes in total, etc. But we consider two main factors for estimating the performance of the agent. They are:

  1. Search Cost: How long the agent takes to come up with the solution.
  2. Path cost: How expensive each action in the solution are.

By considering the above factors, the agent can also be classifies as a utility based agent.


Related Tutorials




Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.