0% found this document useful (0 votes)
31 views

Write The Formulation of Wumpus World Problem

1

Uploaded by

vikas.palekar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
31 views

Write The Formulation of Wumpus World Problem

1

Uploaded by

vikas.palekar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 6

Write the formulation of Wumpus world problem.

The Wumpus World Description:

Introduction:
The Wumpus world is a simple world example to illustrate the worth of a
knowledge-based agent and to represent knowledge representation. It was
inspired by a video game Hunt the Wumpus by Gregory Yob in 1973. The
Wumpus world is a cave which has 4/4 rooms connected with passageways. So
there are total 16 rooms which are connected with each other.

In the exciting world of computers and smart machines, there’s a puzzle that’s
been around for quite a while, and it’s called the Wumpus World. This puzzle
isn’t just for experts; it’s like a fun adventure for anyone to enjoy. In this blog,
we’ll take a journey into the Wumpus World, learn why it’s important, and see
how computers use their smarts to solve it. Think of it as a computer adventure
story!
Following is a sample diagram for representing the Wumpus world. It is
showing some rooms with Pits, one room with Wumpus and one agent at (1, 1)
square location of the world

What’s the Wumpus World?

The Wumpus World is like a big grid made up of squares. Each square can be
empty, have some treasure (like gold), hide a dangerous pit, or be home to the
scary Wumpus monster. Our adventurer, a brave character, starts in one of
these squares.
Our adventurer gets some clues now and then. If they feel a little breeze, it
means there’s a pit nearby. And if they smell something yucky (like bad food), it
means the Wumpus isn’t far away.
Our adventurer can also do a few things. They can walk to the neighboring
squares, shoot an arrow to get rid of the Wumpus, grab the gold, or get out of
the cave safely.
The main goal here is to collect all the gold and make it out safely without
falling into any pits or getting eaten by the Wumpus. Sounds challenging, right?

The Tricky Parts:


This adventure isn’t easy. There are some tough challenges our adventurer
faces:

1. Not Knowing Everything: Our adventurer doesn’t have all the information
about what’s going on in the cave. Sometimes the clues they get aren’t
very clear. For example, even if they feel a breeze, it doesn’t mean they’re
right on top of a pit.
2. Deciding What to Do: Our adventurer has to make choices like whether to
explore more and find out what’s where or be careful and use what they
already know to make good choices.
3. Planning and Thinking: To succeed, our adventurer has to plan their
moves really carefully based on what they know and what they discover
as they go along. It’s a bit like playing chess but with hidden dangers.

How to Win:
Computer experts use different tricks to help the adventurer win the game:
1. Rules and Tricks: They set up some rules and tricks to help the adventurer
make good choices. For example, if they feel a breeze, they won’t go
forward because it might be a pit.
2. Searching Everywhere: Computers can check out all the possible paths
the adventurer can take, like looking at a map, to find the best way to get
the gold without getting into trouble.
3. Using Probabilities: They also use math to figure out the chances of
something bad happening, like running into the Wumpus. This helps the
adventurer make safer moves.
4. Learning from Mistakes: Some smart computers even let the adventurer
learn from their mistakes. They try different things and remember what
works and what doesn’t.

Properties of the Wumpus World:

 Partially observable: The Wumpus world in AI is partially observable


because the agent can only sense the immediate surroundings, such as
an adjacent room.
 Deterministic: It is deterministic because the result and end of the world
are already known.
 Sequential: It is sequential because the order is essential.
 Static: It is motionless because Wumpus and Pits are not moving.
 Discrete: The surroundings are distinct.
 One agent: The environment is a single agent because we only have one
agent, and Wumpus is not regarded as an agent.
PEAS Description of Wumpus World
To build an intelligent agent for the Wumpus World, we must first define the
problem's Performance, Environment, Actuators, and Sensors (PEAS).

1. Performance:
o +1000 bonus points if the agent returns from the
tunnel with the gold.
o Being eaten by the wumpus or plummeting into
the pit results in a -1000 point penalty.
o Each move is worth -1, and using an arrow is
worth -10.
o The game is over if either agent dies or exits the
tunnel.
2. Environment:

o A four-by-four grid of chambers.


o The operative begins in room square [1, 1],
facing the right.
o Wumpus and gold locations are selected
randomly except for the first square [1,1].
o Except for the first square, each square in the
tunnel has a 0.2 chance of being a pit.

3. Actuators:

They are the actions that the agent can take to interact with the world.
The worker in Wumpus World in AI can carry out the following tasks:

o Left turn
o Right turn
o Move forward
o Grab
o Release
o Shoot
4. Sensors:
They are how the agent senses its surroundings. The agent's instruments
in the Wumpus World provide the following information:

 If the agent is in the chamber next to the wumpus, he will notice the
stench. (Not diagonally).
 If the agent is in the room immediately adjacent to the pit, he will notice a
breeze.
 The agent will notice the glitter in the chamber with the gold.
 The agent will notice the bump if he runs into a wall.
 When the Wumpus is shot, it lets out a horrifying scream that can be
heard throughout the tunnel.
 These perceptions can be represented as a five-element list with distinct
indicators for each sensor.
 For example, if an agent detects stench and breeze but not glitter, bump,
or scream, it can be depicted as [Stench, Breeze, None, None].

Applications of Wumpus World in AI:


The Wumpus World in AI is a classic problem with multiple uses, including:

 Developing intelligent agents: The Wumpus World in AI is an excellent


platform for creating intelligent agents capable of navigating
complicated environments, reasoning in uncertainty, and planning
actions.
 Testing AI algorithms: Wumpus World is a benchmark issue for testing
and comparing various AI algorithms, such as search, planning, and
reinforcement learning.
 Education and training: Because it is simple to use and offers hands-on
experience, the Wumpus World in AI is a popular tool for teaching AI
concepts and algorithms to students.
 Game Development: Wumpus World can motivate developers to create
challenging and engaging games requiring strategic thinking and
problem-solving.
 Robotics: The Wumpus World can be used as a testing and development
setting for robotics algorithms such as pathfinding and mapping.
Conclusion
 The Wumpus World is a classic AI challenge that offers a difficult
environment for creating intelligent agents and testing AI algorithms.
 The Wumpus World can be explored using various algorithms such as
search, planning, and reinforcement learning to create intelligent agents.
 The PEAS description of the Wumpus World aids in comprehending the
game environment's properties and characteristics.
 The goal of the Wumpus World is for the agent to find the gold and return
to the starting position while avoiding falling into pits or getting eaten by
the Wumpus monster.

You might also like