Unit 1 Imprt Quest
Unit 1 Imprt Quest
A human agent has eyes, ears, and other organs for sensors and hands, legs,
mouth, and other body parts for actuators.
A robotic agent might have cameras and infrared range finders for sensors
and various motors for actuators.
A software agent receives keystrokes, file contents, and network packets as
sensory inputs and acts on the environment by displaying on the screen, writing
files, and sending network packets.
Generic agent - A general structure of an agent who interacts with the
environment.
The uninformed search strategies are those that do not take into
account the location of the goal. That is these algorithms ignore where
they are going until they find a goal and report success. The various
uninformed search strategies are
Breadth-first search
Uniform-cost search
Depth-first search
Depth-limited search
Iterative deepening depth-first search
Bidirectional search
18. What do you mean by local maxima with respect to search technique?
Local maximum is the peak that is higher than each of its neighbor
states, but lowers than the global maximum i.e. a local maximum is a tiny hill
on the surface whose peak is not as high as the main peak (which is a optimal
solution). Hill climbing fails to find optimum solution when it encounters local
maxima. Any small move, from here also makes things worse (temporarily). At
local maxima all the search procedure turns out to be wasted here. It is like a
dead end.