The Wumpus World in Artificial intelligence

In this page we will learn about, the Wumpus World in Artificial intelligence, The Wumpus World in Artificial intelligence, Wumpus world, PEAS description of Wumpus world, Environment, Actuators, Sensors, The Wumpus world Properties, and Exploring the Wumpus world.


The Wumpus World in Artificial intelligence

The Wumpus world is a basic world example that demonstrates the value of a knowledge-based agent and how knowledge representation is represented. It was inspired by Gregory Yob's 1973 video game Hunt the Wumpus.

The Wumpus world is a cave with 4/4 rooms and pathways connecting them. As a result, there are a total of 16 rooms that are interconnected. We now have a knowledge-based AI capable of progressing in this world. There is an area in the cave with a beast named Wumpus who eats everybody who enters. The agent can shoot the Wumpus, but he only has a single arrow. There are some Pits chambers in the Wumpus world that are bottomless, and if an agent falls into one, he will be stuck there indefinitely. The intriguing thing about this cave is that there is a chance of finding a gold heap in one of the rooms. So the agent's mission is to find the gold and get out of the cave without getting eaten by Wumpus or falling into Pits. the agent returns with gold, he will be rewarded, but if he is devoured by Wumpus or falls into the pit, he will be penalized.

Note: Wumpus is immobile in this scene.

A sample diagram for portraying the Wumpus world is shown below. It depicts some rooms with Pits, one room with Wumpus, and one agent in the world's (1, 1) square position.

 The Wumpus World in Artificial Intelligence (AI)

There are also some components which can help the agent to navigate the cave. These components are given as follows:

  • The rooms adjacent to the Wumpus room are stinky, thus there is a stench there.
  • The room next to PITs has a breeze, so if the agent gets close enough to PIT, he will feel it.
  • If and only if the room contains gold, there will be glitter.
  • If the agent is facing the Wumpus, the agent can kill it, and Wumpus will cry horribly, which can be heard anywhere.

PEAS description of Wumpus world:

We have given PEAS description as below to explain the Wumpus world:

Following are some basic facts about propositional logic:

Performance measure:

  • If the agent emerges from the cave with the gold, he will receive 1000 bonus points.
  • If you are devoured by the Wumpus or fall into the pit, you will lose 1000 points.
  • For each action, you get a -1, and for using an arrow, you get a -10.
  • If either agent dies or emerges from the cave, the game is over.

Environment:

  • A 4*4 grid of rooms.
  • Initially, the agent is in room square [1, 1], facing right.
  • Except for the first square [1,1], the locations of Wumpus and gold are picked at random.
  • Except for the initial square, every square of the cave has a 0.2 chance of being a pit.

Actuators:

  • Left turn
  • Right turn
  • Move forward
  • Grab
  • Release
  • Shoot

Sensors:

  • If the agent is in the same room as the Wumpus, he will smell the stench. (Not on a diagonal.)
  • If the agent is in the room directly adjacent to the Pit, he will feel a breeze.
  • The agent will notice the gleam in the room where the gold is located.
  • If the agent walks into a wall, he will feel the bump.
  • RWhen the Wumpus is shot, it lets out a horrifying scream that can be heard from anywhere in the cave.
  • These perceptions can be expressed as a five-element list in which each sensor will have its own set of indicators.
  • For instance, if an agent detects smell and breeze but not glitter, bump, or shout, it might be represented as [Stench, Breeze, None, None, None].

The Wumpus world Properties:

  • Partially observable: The Wumpus universe is only partially viewable because the agent can only observe the immediate environment, such as a nearby room.
  • Deterministic: It's deterministic because the world's result and outcome are already known.
  • Sequential: It is sequential because the order is critical.
  • Static: Wumpus and Pits are not moving, thus it is static.
  • Discrete: There are no discrete elements in the environment.
  • One agent: We only have one agent, and Wumpus is not regarded an agent, hence the environment is single agent.

Exploring the Wumpus world:

Now we will explore Wumpus world a bit and will explain how the agent will find its goal applying logical reasoning.

Agent's First step:

At first, the agent is in the first room, or square [1,1], and we all know that this room is safe for the agent, thus we will add the sign OK to the below diagram (a) to represent that room is safe. The agent is represented by the letter A, the breeze by the letter B, the glitter or gold by the letter G, the visited room by the letter V, the pits by the letter P, and the Wumpus by the letter W.

Agent does not detect any wind or Stench in Room [1,1], indicating that the nearby squares are similarly in good condition.

The Wumpus World in Artificial Intelligence2 in Artificial Intelligence (AI)

Agent's second Step:

Now that the agent must go forward, it will either go to [1, 2] or [2, 1]. Let's say agent enters room [2, 1], where he detects a breeze, indicating Pit is present. Because the pit might be in [3, 1] or [2, 2], we'll add the sign P? to indicate that this is a Pit chamber.

Now the agent will pause and consider his options before doing any potentially destructive actions. The agent will return to room [1, 1]. The agent visits the rooms [1,1] and [2,1], thus we'll use the symbol V to symbolize the squares he's been to.

Agent's third step:

The agent will now proceed to the room [1,2], which is fine. Agent detects a stink in the room [1,2], indicating the presence of a Wumpus nearby. However, according to the rules of the game, Wumpus cannot be in the room [1,1], and he also cannot be in [2,2]. (Agent had not detected any stench when he was at [2,1]). As a result, the agent infers that Wumpus is in the room [1,3], and there is no breeze at the moment, implying that there is no Pit and no Wumpus in [2,2]. So that's safe, and we'll designate it as OK, and the agent will advance [2,2]

The Wumpus World in Artificial Intelligence3 in Artificial Intelligence (AI)

Agent's fourth step:

Because there is no odor and no breeze in room [2,2], let's assume the agent decides to move to room [2,3]. Agent detects glitter in room [2,3], thus it should collect the gold and ascend out of the cave.