module-3 Informed strategies
module-3 Informed strategies
Sushma B.
Assistant Professor
Dept. of Electronics & Communication Engineering
CMRIT, Bangalore
Topics Covered
Informed search strategies : Greedy best first search, A* search,
Memory-bounded heuristic search, Learning to search better.
Heuristic functions: Effect of heuristic accuracy, Generating
admissible heuristics from relaxed problems, Generating admissible
heuristics from sub-problems: Pattern databases, Learning heuristics
from experience,
Local search algorithms and optimization problems, Hill-Climbing
search, Simulated annealing, Local beam search, Genetic algorithms,
Local search in continuous spaces
Logical agents: Knowledge based agents, Wumpus world, Logic,
propositional logic, propositional theorem proving,
Tries to expand the node that is closest to the goal, so the solution
finding is quick
Heuristic based algorithm, simple. Used in various optimization and
path finding problems
It makes decisions at each step by choosing the option that seems the
most promising at that moment.
Evaluates each node by using : f(n)=h(n)
h(n)= Estimated cost from the state at node n to a goal state
Algorithm is called greedy - at each step it tries to get as close to the
goal as it can.
It evaluates nodes by combining g(n), the cost to reach the node, and
h(n), the cost to get from the node to the goal.
f(n)=g(n)+h(n)
g(n) —–> gives the path cost from the start node to node n, h(n) is
the estimated cost of the cheapest path from n to the goal.
f(n) = estimated cost of the cheapest solution through n
Algorithm is complete and optimal