SKEDSOFT

Artificial Intelligence

Non-Monotonic Reasoning: First order logic and the inferences we perform on it is an example of monotonic reasoning. In monotonic reasoning if we enlarge at set of axioms we cannot retract any existing assertions or axioms. Humans do not adhere to this monotonic structure when reasoning:

  • we need to jump to conclusions in order to plan and, more basically, survive.
  1. we cannot anticipate all possible outcomes of our plan.
  2. we must make assumptions about things we do not specifically know about.

Default Reasoning: This is a very common from of non-monotonic reasoning. Here We want to draw conclusions based on what is most likely to be true.
We have already seen examples of this and possible ways to represent this knowledge.
We will discuss two approaches to do this:

  • Non-Monotonic logic.
  • Default logic.

DO NOT get confused about the label Non-Monotonic and Default being applied to reasoning and a particular logic. Non-Monotonic reasoning is generic descriptions of a class of reasoning. Non-Monotonic logic is a specific theory. The same goes for Default reasoning and Default logic.

Non-Monotonic Logic: This is basically an extension of first-order predicate logic to include a modal operator, M. The purpose of this is to allow for consistency.
For example: : plays_instrument(x) improvises(x)----> jazz_musician(x)
states that for all x is x plays an instrument and if the fact that x can improvise is consistent with all other knowledge then we can conclude that x is a jazz musician.
How do we define consistency?
One common solution (consistent with PROLOG notation) is to show that fact P is true attempt to prove . If we fail we may say that P is consistent (since is false).
However consider the famous set of assertions relating to President Nixon.

: Republican(x) Pacifist(x) ---->Pacifist(x)

: Quaker(x) Pacifist(x) ----->Pacifist(x)
Now this states that Quakers tend to be pacifists and Republicans tend not to be.
BUT Nixon was both a Quaker and a Republican so we could assert:

Quaker(Nixon)
Republican(Nixon)

This now leads to our total knowledge becoming inconsistent.

Default Logic
Default logic introduces a new inference rule:

A-B/C

which states if A is deducible and it is consistent to assume B then conclude C.

Now this is similar to Non-monotonic logic but there are some distinctions:

  • New inference rules are used for computing the set of plausible extensions. So in the Nixon example above Default logic can support both assertions since is does not say anything about how choose between them -- it will depend on the inference being made.
  • In Default logic any nonmonotonic expressions are rules of inference rather than expressions