vote up 3 vote down star
1

I'm reading over my AI textbook and I'm curious about what the difference is between monotonicity and admissibility of heuristics (I know they aren't mutually exclusive).

As far as I can tell, an admissible heuristic simply means you are ensured to get the shortest path to a solution if one exists.

What I'm struggling with is the concept of the monotonic property. Can someone describe this to me in a way I might understand?

Similarly, how can I determine if a given heuristic is monotonic/admissible? One of the examples given in the book is the 8-Piece Sliding Puzzle. One heuristic I'm considering is the # of out of place tiles, and intuitively I can say that I know that it is admissible but I have no formal way of showing if it is admissible/monotonic.

flag

64% accept rate
Dana the Sane's post should help a lot. To show admissibility, just prove that your heuristic always guesses a solution that takes fewer steps than the actual optimal path. For the sliding puzzle, and the # of tiles out of place heuristic, its as simple as saying a piece that is out of place must move to get to its place, therefore my heuristic's guess must be optimal or guess that it takes fewer steps than it actually does. To prove not admissible, show a counter example (its rarely difficult to find one quickly for inadmissible heuristics). – NickLarsen Oct 19 at 21:32

3 Answers

vote up 2 vote down

This might help you to understand the differences and/or similarities: Artificial intelligence illuminated (4.12.4 Monotonicity)

link|flag
vote up 2 vote down

A heuristic is monotonic, in the sense most relevant to the context you're talking about, if it never overestimates (always underestimates or correctly estimates) the cost between any two given states. For the A* algorithm, a heuristic is admissible, and therefore guarantees finding the optimal path, if it is monotonic.

Monotonicity is a property of functions in general; admissibility is a property of functions with respect to certain algorithms.

link|flag
I think you substituted monotonic for admissible in your first paragraph. – Dana the Sane Oct 14 at 20:20
vote up 3 vote down

Russel and Norvig, 2ed page 99 says:

The second solution is to ensure that the optimal path to any repeated state is always the first one followed -- as is the case with uniform-cost search. This property holds if we impose an extra requirement on h(n), namely the requirement of consistency (also called monotonicity).

When you're talking about functions, monotone means that a function increases or decreases, but not both. In other words, the ordering in the range stays the same throughout the domain. For this reason in your problem, the solution maintains the shortest path no matter what step you start at.

The admissibility property of a heuristic means that the cost to reach the goal is never overestimated (i.e. it's optimistic) (page 98).

link|flag
And from the same book, they did a good job of exemplifying admissibility using the Manhattan distance in the NxN sliding panels game. Thats a great chapter for understanding heuristics in general. – NickLarsen Oct 19 at 21:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.