Question

If we have two admissible heuristics h1 and h2, would it be better to use min(h1,...

If we have two admissible heuristics h1 and h2, would it be better to use min(h1, h2) or max(h1, h2) as a heuristic with A* search? Briefly explain your answer.

Homework Answers

Answer #1

If you like the solution please give it a thumbs up. And if you have any query please let me know in the comments.

Solution :-

from the definition of admissible heuristic - In order for a heuristic to be admissible to search problem, the estimated cost must be lower than or equal to the actual cost of reaching to the goal .

Now assume, h(n) <- optimal cost from node n to goal

so clearly h1(n) <= h(n)

and. h2(n) <= h(n)

But now we are not sure about the relation between h1 and h2.

now if we choose between min(h1,h2) and max(h1,h2) then min(h1,h2) <= max(h1,h2) <= h

So clearly min(h1,h2) will deviate more from the optimal path than to max(h1,h2). So it is better to choose max(h1,h2).

Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
Let us use Bayes to run an assessment for two future hypotheses: H1: we should open...
Let us use Bayes to run an assessment for two future hypotheses: H1: we should open the economy asap H2: we should wait until the signs become clearer that it is safe to open the economy. As leader of the free world, you are gung-ho on H1, so Pr(H1) = .8; and so Pr(H2) = .2 Let’s suppose medical experts give you the following evidence (E): If H1, then the chance of avoiding a restart of the pandemic is (E)...
We have already seen the min function, which returns the value of the lowest input, in...
We have already seen the min function, which returns the value of the lowest input, in class. Remember that there is also a max function that returns the value of the highest input (ex. max(2,5) = 5). Dale divides her income between trips to two cities: (g) and (s) . Her utility function over these two activities is: ?(?, ?) = max(?, 2?) a) In the graph area below, draw Dale’s indifference curve that passes through the point (3,2) with...
Do you believe that there is a better measure of a country’s economic strength that we...
Do you believe that there is a better measure of a country’s economic strength that we should also use (in addition to GDP)? Explain your answer. If you don’t think there is, explain why.
We have manufactured a product and are testing whether it is better than a competitor's product....
We have manufactured a product and are testing whether it is better than a competitor's product. We find that 13 of 20 people prefer our product to the competitor's product. Do we have enough evidence to declare that we have a superior product, or is there still doubt? a. our P-value is above 10%, so there is still doubt b. out P-value is between 5% and 10%, so there is still doubt c. our P-value is below 5% so we...
1. In a H2 molecule there are two protons, and these have spin 1/2 ħ, that...
1. In a H2 molecule there are two protons, and these have spin 1/2 ħ, that is, they are fermions. If we just look at the two protons, would you expect their spins to be parallel or anti parallel in the ground state of the H2 molecule? 2. Is there a type of viscosity that acts on holes in a semiconductor and gives them a terminal velocity in an electric field, or do holes just accelerate under the influence of...
How would you use fiscal policy to make the citizens of the United States better off?...
How would you use fiscal policy to make the citizens of the United States better off? What would be the costs of your solution? Explain.
Are your odds better of winning the lottery by playing two sets of numbers in the...
Are your odds better of winning the lottery by playing two sets of numbers in the same draw or playing two sequential lotteries (your answer does not have to include a calculation of the odds)? Explain your answer.
Selecting an Implementation We have studied arrays, vectors, and linked lists. Say which you would use...
Selecting an Implementation We have studied arrays, vectors, and linked lists. Say which you would use to implement each situation below. Defend every answer by saying why the answer you chose is better than the other two possibilities. A list of participants at a large public hearing. As each person arrives, their name is entered into the system, where it is appended to the end of the list. Thermometer readings at a weather station. The temperature is recorded every 5...
E17M.1 Suppose that we have a fixed length of wire that we would like to wind...
E17M.1 Suppose that we have a fixed length of wire that we would like to wind around a cylindrical form in a single layer of closely spaced turns to make it more compact, and we would like to minimize the coil’s inductance. Assume that all of the available forms have a small enough radius that the coil’s length will be much larger than its radius. A) Should we choose the form with the largest radius, the smallest radius, or does...
We have a system which uses Quora pages to measure the similarity between two things. The...
We have a system which uses Quora pages to measure the similarity between two things. The length of the shortest path of links between two things gives how closely the two concepts are related. If the system uses a depth-first tree search to find a path from one thing to another, it doesn’t find a route reliably, and the routes it finds are typically inefficient. Why is the depth first tree ineffective here? What’s a better way to go about...