Inference and Resolution for Problem Solving

Slides:



Advertisements
Similar presentations
Artificial Intelligence 8. The Resolution Method
Advertisements

Resolution Proof System for First Order Logic
Biointelligence Lab School of Computer Sci. & Eng.
Inference Rules Universal Instantiation Existential Generalization
SLD-resolution Introduction Most general unifiers SLD-resolution
Knowledge & Reasoning Logical Reasoning: to have a computer automatically perform deduction or prove theorems Knowledge Representations: modern ways of.
Standard Logical Equivalences
Resolution.
First Order Logic Resolution
Inference and Reasoning. Basic Idea Given a set of statements, does a new statement logically follow from this. For example If an animal has wings and.
We have seen that we can use Generalized Modus Ponens (GMP) combined with search to see if a fact is entailed from a Knowledge Base. Unfortunately, there.
For Friday No reading Homework: –Chapter 9, exercise 4 (This is VERY short – do it while you’re running your tests) Make sure you keep variables and constants.
Logic Use mathematical deduction to derive new knowledge.
13 Automated Reasoning 13.0 Introduction to Weak Methods in Theorem Proving 13.1 The General Problem Solver and Difference Tables 13.2 Resolution.
F22H1 Logic and Proof Week 7 Clausal Form and Resolution.
Predicate Calculus Russell and Norvig: Chapter 8,9.
Artificial Intelligence Chapter 14. Resolution in the Propositional Calculus Artificial Intelligence Chapter 14. Resolution in the Propositional Calculus.
Discussion #18 1/13 Discussion #18 Resolution with Propositional Calculus; Prenex Normal Form.
Prolog IV Logic, condensed. 2 Propositional logic Propositional logic consists of: The logical values true and false ( T and F ) Propositions: “Sentences,”
Outline Recap Knowledge Representation I Textbook: Chapters 6, 7, 9 and 10.
Formal Logic Proof Methods Direct Proof / Natural Deduction Conditional Proof (Implication Introduction) Reductio ad Absurdum Resolution Refutation.
Inference in FOL Copyright, 1996 © Dale Carnegie & Associates, Inc. Chapter 9 Spring 2004.
AI - Week 16 Logic and Reasoning in AI: Resolution Refutation Lee McCluskey, room 2/07
1 Automated Reasoning Introduction to Weak Methods in Theorem Proving 13.1The General Problem Solver and Difference Tables 13.2Resolution Theorem.
Inference in First-Order Logic
Artificial Intelligence
Artificial Intelligence Chapter 14 Resolution in the Propositional Calculus Artificial Intelligence Chapter 14 Resolution in the Propositional Calculus.
Introduction to Logic for Artificial Intelligence Lecture 2 Erik Sandewall 2010.
Knowledge & Reasoning Logical Reasoning: to have a computer automatically perform deduction or prove theorems Knowledge Representations: modern ways of.
CS1502 Formal Methods in Computer Science Lecture Notes 10 Resolution and Horn Sentences.
Proof Systems KB |- Q iff there is a sequence of wffs D1,..., Dn such that Dn is Q and for each Di in the sequence: a) either Di is in KB or b) Di can.
Conjunctive normal form: any formula of the predicate calculus can be transformed into a conjunctive normal form. Def. A formula is said to be in conjunctive.
1 Chapter 8 Inference and Resolution for Problem Solving.
CSCE 4613 Artificial Inteligence
1 Section 7.2 Equivalent Formulas Two wffs A and B are equivalent, written A  B, if they have the same truth value for every interpretation. Property:
ARTIFICIAL INTELLIGENCE [INTELLIGENT AGENTS PARADIGM] Professor Janis Grundspenkis Riga Technical University Faculty of Computer Science and Information.
CSE S. Tanimoto Horn Clauses and Unification 1 Horn Clauses and Unification Propositional Logic Clauses Resolution Predicate Logic Horn Clauses.
CS621: Artificial Intelligence Pushpak Bhattacharyya CSE Dept., IIT Bombay Lecture 28– Interpretation; Herbrand Interpertation 30 th Sept, 2010.
1CS3754 Class Notes 14B, John Shieh, Figure 2.5: Further steps in the unification of (parents X (father X) (mother bill)) and (parents bill.
Unification Algorithm Input: a finite set Σ of simple expressions Output: a mgu for Σ (if Σ is unifiable) 1. Set k = 0 and  0 = . 2. If Σ  k is a singleton,
Propositional Calculus – Methods of Proof Predicate Calculus Math Foundations of Computer Science.
CS Introduction to AI Tutorial 8 Resolution Tutorial 8 Resolution.
Resolution Strategies One common strategy for applying resolution is called level saturation. Here you try to resolve every pair of clauses from the original.
Automated Reasoning Early AI explored how to automated several reasoning tasks – these were solved by what we might call weak problem solving methods as.
Automated Reasoning Early AI explored how to automate several reasoning tasks – these were solved by what we might call weak problem solving methods as.
Extra slides for Chapter 3: Propositional Calculus & Normal Forms Based on Prof. Lila Kari’s slides For CS2209A, 2009 By Dr. Charles Ling;
Reasoning using First-Order Logic
The Law of Resolution Formal Aspects of Computer Science - Week 7 The Law of Resolution Lee McCluskey, room 2/07
1 Section 9.1 Automatic Reasoning Recall that a wff W is valid iff ¬ W is unsatisfiable. Resolution is an inference rule used to prove unsatisfiability.
第 1 6 章 谓词演算中的归结. 2 Outline Unification Predicate-Calculus Resolution Completeness and Soundness Converting Arbitrary wffs to Clause Form Using Resolution.
Instructor: Eyal Amir Grad TAs: Wen Pu, Yonatan Bisk Undergrad TAs: Sam Johnson, Nikhil Johri CS 440 / ECE 448 Introduction to Artificial Intelligence.
For Wednesday Finish reading chapter 10 – can skip chapter 8 No written homework.
Copyright 1999Paul F. Reynolds, Jr. Foundations of Logic Programming.
Introduction to Logic for Artificial Intelligence Lecture 2
Knowledge Representation and Reasoning
Resolution in the Propositional Calculus
Horn Clauses and Unification
Elementary Metamathematics
Logic Use mathematical deduction to derive new knowledge.
Biointelligence Lab School of Computer Sci. & Eng.
Horn Clauses and Unification
Prolog IV Logic, condensed.
Horn Clauses and Unification
Horn Clauses and Unification
Biointelligence Lab School of Computer Sci. & Eng.
Horn Clauses and Unification
Inference and Resolution for Problem Solving
RESOLUTION.
Resolution in predicate Logic
Resolution Proof System for First Order Logic
Presentation transcript:

Inference and Resolution for Problem Solving Chapter 8 Inference and Resolution for Problem Solving

Chapter 8 Contents (1) Normal Forms Converting to CNF Clauses The Resolution Rule Resolution Refutation Proof by Refutation Example: Graph Coloring

Chapter 8 Contents (2) Normal Forms in Predicate Calculus Skolemization Unification The Unification algorithm The Resolution Algorithm Horn Clauses in PROLOG

Normal Forms A wff is in Conjunctive Normal Form (CNF) if it is a conjunction of disjunctions: A1 Λ A2 Λ A3 Λ … Λ An where each clause, Ai, is of the form: B1 v B2 v B3 v … v Bn The B’s are literals. E.g.: A Λ (B v C) Λ (¬A v ¬B v ¬C v D) Similarly, a wff is in Disjunctive Normal Form (DNF) if it is a disjunction of conjunctions. E.g.: A v (B Λ C) v (¬A Λ ¬B Λ ¬C Λ D)

Converting to CNF Any wff can be converted to CNF by using the following equivalences: (1) A ↔ B  (A → B) Λ (B → A) (2) A → B  ¬A v B (3) ¬(A Λ B)  ¬A v ¬B (4) ¬(A v B)  ¬A Λ ¬B (5) ¬¬A  A (6) A v (B Λ C)  (A v B) Λ (A v C) Importantly, this can be converted into an algorithm – this will be useful when when we come to automating resolution.

Clauses Having converted a wff to CNF, it is usual to write it as a set of clauses. E.g.: (A → B) → C In CNF is: (A V C) Λ (¬B V C) In clause form, we write: {(A, C), (¬B, C)}

The Resolution Rule The resolution rule is written as follows: A v B ¬ B v C A v C This tells us that if we have two clauses that have a literal and its negation, we can combine them by removing that literal. E.g.: if we have {(A, C), (¬A, D)} We would apply resolution to get {C, D}

Resolution Refutation Let us resolve: {(¬A, B), (¬A, ¬B, C), A, ¬C} We begin by resolving the first clause with the second clause, thus eliminating B and ¬B: {(¬A, C), A, ¬ C} {C, ¬C} Now we can resolve both remaining literals, which gives falsum: ^ If we reach falsum, we have proved that our initial set of clauses were inconsistent. This is written: {(¬A, B), (¬A, ¬B, C), A, ¬C} ╞ ^

Proof by Refutation If we want to prove that a logical argument is valid, we negate its conclusion, convert it to clause form, and then try to derive falsum using resolution. If we derive falsum, then our clauses were inconsistent, meaning the original argument was valid, since we negated its conclusion.

Proof by Refutation - Example Our argument is: (A Λ ¬B) → C A Λ ¬ B C Negate the conclusion and convert to clauses: {(¬A, B, C), A, ¬B, ¬C} Now resolve: {(B, C), ¬B, ¬C} {C, ¬C} ^ We have reached falsum, so our original argument was valid.

Refutation Proofs in Tree Form It is often sensible to represent a refutation proof in tree form: In this case, the proof has failed, as we are left with E instead of falsum.

Example: Graph Coloring Resolution refutation can be used to determine if a solution exists for a particular combinatorial problem. For example, for graph coloring, we represent the assignment of colors to the nodes and the constraints regarding edges as propositions, and attempt to prove that the complete set of clauses is consistent. This does not tell us how to color the graph, simply that it is possible.

Example: Graph Coloring (2) Available colors are r (red), g (green) and b (blue). Ar means that node A has been coloured red. Each node must have exactly one color: Ar v Ag v Ab ¬Ar v ¬Ag ( Ar → ¬Ag) ¬Ag v ¬Ab ¬Ab v ¬Ar If (A,B) is an edge, then: ¬Ar v ¬Br ¬Ab v ¬Bb ¬Ag v ¬Bg Now we construct the complete set of clauses for our graph, and try to see if they are consistent, using resolution.

Normal Forms in Predicate Calculus A FOPC expression can be put in prenex normal form by converting it to CNF, with the quantifiers moved to the front. For example, the wff: (x)(A(x) → B(x)) → (y)(A(y) Λ B(y)) Converts to prenex normal form as: (x)(y)(((A(x) v A(y)) Λ (¬B(x) v A(y)) Λ (A(x) v B(y)) Λ (¬B(x) v B(y))))

Skolemization Before resolution can be applied,  must be removed, using skolemization. Variables that are existentially quantified are replaced by a constant: (x) P(x) is converted to: P(c) c must not already exist in the expression.

Skolem functions If the existentially quantified variable is within the scope of a universally quantified variable, it must be replaced by a skolem function, which is a function of the universally quantified variable. Sounds complicated, but is actually simple: (x)(y)(P(x,y)) Is Skolemized to give: (x)(P(x,f(x)) After skolemization,  is dropped, and the expression converted to clauses in the usual manner.

Unification (1) To resolve clauses we often need to make substitutions. For example: {(P(w,x)), (¬P(y,z))} To resolve, we need to substitute y for w, and z for x, giving: {(P(y,z)), (¬P(y,z))} Now these resolve to give falsum.

Unification (2) A substitution that enables us to resolve a set of clauses is called a unifier. We write the unifier we used above as: {y/w, z/x} A unifier (u) is a most general unifier (mgu) if any other unifier can be formed by the composition of u with some other unifier. An algorithm can be generated which obtains a most general unifier for any set of clauses.

The Resolution Algorithm 1 First, negate the conclusion and add it to the list of assumptions. 2 Now convert the assumptions into Prenex Normal Form 3 Next, skolemize the resulting expression 4 Now convert the expression into a set of clauses 5 Now resolve the clauses using suitable unifiers. This algorithm means we can write programs that automatically prove theorems using resolution.

Horn Clauses in PROLOG (1) PROLOG uses resolution. A Horn clause has at most one positive literal: A v ¬B v ¬C v ¬D v ¬E … This can also be written as an implication: B Λ C Λ D Λ E → A In PROLOG, this is written: A :- B, C, D, E

Horn Clauses in PROLOG (2) Horn clauses can express rules: A :- B, C, D Or facts: A :- Or goals: :- B, C, D, E If a set of clauses is valid, PROLOG will definitely prove it using resolution and depth first search.