recategorized
2,134 views
0 votes
0 votes

In heuristic search algorithms in Artificial Intelligence (AI), if a collection of admissible heuristics $h_1 \dots h_m$ is available for a problem and none of them dominates any of the others, which should we choose?

  1. $h(n)=max\{h_1(n), \dots , h_m(n)\}$
  2. $h(n)=min\{h_1(n), \dots , h_m(n)\}$
  3. $h(n)=avg\{h_1(n), \dots , h_m(n)\}$
  4. $h(n)=sum\{h_1(n), \dots , h_m(n)\}$
recategorized

2 Answers

0 votes
0 votes

If a collection of admissible heuristics is available for a problem, and none of them dominates any of the others, we can use the
composite function h(n) = max{h1(n),…,hm(n)}

Option (1) is correct.

edited by
0 votes
0 votes
When multiple admissible heuristics are available for a problem, and none of them dominates any of the others, a common approach is to combine them. The idea is to create a new heuristic that benefits from the strengths of each individual heuristic. One such approach is to take the maximum (max) value of the individual heuristic

 

Therefore, the correct choice would be:

A. $h(n)=max((h_i(n),…,h_m(n))$

Related questions

3.0k
views
2 answers
0 votes
Pooja Khatri asked Jul 13, 2018
3,008 views
In artificial Intelligence (AI), an environment is uncertain if it is ___Not fully observable and not deterministicNot fully observable or not deterministicFully observab...
2.2k
views
1 answers
0 votes
Pooja Khatri asked Jul 13, 2018
2,179 views
In artificial Intelligence (AI), a simple reflex agent selects actions on the basis of ___current percept, completely ignoring rest of the percept historyrest of the perc...
2.6k
views
4 answers
0 votes
Pooja Khatri asked Jul 13, 2018
2,633 views
Consider following sentences regarding $A^*$, an informed search strategy in Artificial Intelligence (AI).$A^*$ expands all nodes with $f(n)<C^*$$A^*$ expands no nodes wi...
1.7k
views
2 answers
0 votes
Pooja Khatri asked Jul 13, 2018
1,683 views
Consider the following two sentences:The planning graph data structure can be used to give a better heuristic for a planning problemDropping negative effects from every a...