Uploaded by charlesnahayo100

Intelligent Systems Exam: Search, AI Agents, Wumpus World

advertisement
17th November 2020
ROLL NUMBER: 201720627
CAT 1. OF INTELLIGENT SYSTEMS
QUESTION 1 .
Differentiate the following terminologies used in uniformed search strategies.
ANS:
a. Breadth-First
Breadth-first search (BFS) is an algorithm for traversing or searching tree or graph data
structures. It starts at the tree root and explores all of the neighbor nodes at the present depth
prior to moving on to the nodes at the next depth level.
b. Depth-First
Depth-first search (DFS) is an algorithm for traversing or searching tree or graph data structures.
The algorithm starts at the root node and explores as far as possible along each branch
before backtracking.
c. Uniform-Cost
Uniform-cost search is a searching algorithm used for traversing a weighted tree or graph. This
algorithm comes into play when a different cost is available for each edge. The primary goal of the
uniform-cost search is to find a path to the goal node which has the lowest cumulative cost.
Uniform-cost search expands nodes according to their path costs form the root node.
QUESTION 2:
What are the simulates/differences between A.I agents and fashion robot?
 A.I agents:
An artificial intelligence, an intelligent agent (IA) refers to an autonomous entity which
acts, directing its activity towards achieving goals (i.e. it is an agent), upon
an environment using observation through sensors and consequent actuators (i.e. it is
intelligent).
 Fashion Robot:
About thefashion Robot, welcome to the fashion robot, a blog about inspiring
technologies in the fashion industry. We cover a cross section of artificial intelligence,
rotics, culture, and fashion.
The Robot wears Prada:
what happens when AI starts giving out fashion tips?
=the tech giants Amazon, Google and Facebook have all begun to use machine learning
to give you tips on what to wear. Is fashion styling the next field to be disrupted by
artificial intelligence (AI), or will the human eye remain supreme?It is too soon to know
for sure, but understanding what machine learning is good at and how that overlaps with
what fashion is all about can help us make some educated guesses.
3.Discuss the Wumpus World algorithm in propositional logic
The Wumpus World is a cave consisting of rooms connected by pathways.
In one of the rooms there is Wumpus(monster) a very dangerous beast that
eats anyone entering its room. The Wumpus can be shot by the agent, but the
agent has
only one arrow. Some rooms contain pits that will trap anyone who wanders
into these rooms. One of the rooms contains a heap of gold.
The agent always starts in square [1,1], facing to the right. The locations
of the Wumpus and gold are chosen randomly, with a uniform distribution
, from the squares other than the start square.
Download