CSE860 - 11 - Informed Search Strategies
CSE860 - 11 - Informed Search Strategies
CSE860 - 11 - Informed Search Strategies
(Informed Search)
2
• Informed Search → Best-First Search
3
• Greedy Best First Search tries to expand the
node that is closest to the goal, on the
grounds that this is likely to lead to a solution
quickly.
• It evaluates the function by using just the
heuristic function i.e.
f(n) = h(n)
4
5
6
7
f(n) = g(n) + h(n)
• Admissible Heuristic
A heuristic is admissible if it never
overestimates the cost to reach the goal.
• Consistency
h(n) ≤ c(n,a,n/) + h(n/)
➔ Triangle Inequality
15