resolution rule for propositional clauses
play

Resolution rule for propositional clauses 3ai Recall the structure - PowerPoint PPT Presentation

Resolution rule for propositional clauses 3ai Recall the structure of a Clause AUTOMATED REASONING A clause has the form A1 A2 ... An, where each Ai is a literal A literal is either an atom or a negated atom (from a language L)


  1. Resolution rule for propositional clauses 3ai Recall the structure of a Clause AUTOMATED REASONING A clause has the form A1 ∨ A2 ∨ ... ∨ An, where each Ai is a literal A literal is either an atom or a negated atom (from a language L) NOTE: THERE ARE NO SLIDES 2! The Resolution Rule for prop. logic is essentially "Modus Ponens" or ( → → E) → → A, ¬A ∨ B ==> B A, A → B ==> B SLIDES 3: ¬B, ¬A ∨ B ==> ¬A ¬B, A → B ==> ¬A ¬A ∨ B, ¬B ∨ C ==> ¬A ∨ C A → B, B → C ==> A → C RESOLUTION ¬A ∨ ¬D ∨ B, ¬B ∨ C ∨ E A ∧ D → B, B → C ∨ E ==> ¬A ∨ ¬D ∨ C ∨ E ==> A ∧ D → C ∨ E The resolution rule for clauses Unification A, ¬A ==> [] ( [] is the empty clause and is equivalent to False) Refutation by resolution Resolution is a clausal refutation system (it tries to derive False from Givens) Factoring Let S be a set of clauses We’ll see that if S |- False by resolution, then S |= False (called Soundness) KB - AR - 13 But S |= False means S has no models and is unsatisfiable So resolution is a way to show unsatisfiability of S Resolution: 3aiii First order Clauses and Resolution 3aii Slides 3 introduce the Resolution rule , which was proposed by Alan Robinson in First order Clauses 1963. Resolution is the backbone of the Otter family of theorem provers and many A clause has the form A1 ∨ A2 ∨ ... ∨ An, where each Ai is a literal others besides. It is also, in a restricted form, the principal rule used in Prolog. An atom has the form predicate(argument1, arg2,.., argn) Resolution can be thought of as a generalisation of the transitivity property of → . Clauses may be ground (no variables) That is, from A → B and B → C derive A → C. Clauses may have variables which are all implicitly universally quantified. The rule defined on slide 3av is called Binary Resolutio n. In order to form a e.g. less(x,s(x)) ∨ ¬pos(x) ≡ ∀ x(less(x,s(x)) ∨ ¬pos(x)) resolvent, (the clause obtained by resolving two clauses) it is necessary to be able to (also ≡ ∀ x(pos(x) → less(x,s(x))) ) unify two (or more) literals. The unification algorithm is shown on Slide 3avi; as it is used in Prolog you should already be familiar with it. Generally, the statement ∀ x(P(x)) is read as “for every x P(x) is true”, or “for each instance of the clause the sentence is true”. Robinson actually proposed a more flexible version of the rule, which allowed several literals to be unified within each of the two clauses to give the literals ¬G and e.g. P(x,s(x)) ∨ ¬R(x) stands for many ground clauses, where x has been E, before forming the binary resolvent by resolving ¬G and E. This initial step of instantiated to a ground term in the language (more formally on slides 4) unifying literals is called factoring, and is now more usually performed as a separate e.g. P(a,s(a)) ∨ ¬R(a), P(s(a),s(s(a))) ∨ ¬R(s(a)), P(b,s(b)) ∨ ¬R(b), etc. step in theorem provers. See Slide 3cii for the factoring rule. (Assume the language contains constants a, b and function symbol s) Resolution requires the data to be clauses, and in the Optional material on slides 3dii/3diii you can see how to achieve clausal form from arbitrary first order sentences NOTATION CONVENTION: Variables will start u, v, w, x, y, z; using a process called Skolemisation. We’ll look at Skolemisation later in relation to other terms are constants or functional terms. e.g. a,b, f(...), etc. Tableaux. Until then, for the exercises in this course you will be given data that is already in clausal form.

  2. 3av Binary Resolution : Binary Resolution : 3aiv Given clauses C1 = ¬G ∨ H and C2 = E ∨ F, The structure of the Resolution Rule was ¬A ∨ B, ¬B ∨ C ==> ¬A ∨ C where E and G are atoms and H and F are clauses of none or more literals. But consider P(x,s(x)) ∨ ¬R(x) and R(f(a)) ∨ ¬Q(y)? The binary resolvent of C1 and C2 (written R(C1,C2)) is (H ∨ F) θ, where θ =mgu(E,G); ie θ makes E and G identical and is computed by unification. Although there are two literals of opposite sign and the same predicate their arguments are not equal. Example: Remember that variables such as x and y are universally quantified. (1) P(x, f(x)) ∨ ¬ R(x) (Use u-z for variables) Can we can find values for x and y so R(x) and R(f(a)) are identical? (2) ¬P(a, y) ∨ S(g(y)) (Use a...m for constants) (i) Unify (a,y) with (x,f(x)) to give {x == a , y == f(a)} (or {x/a, y/f(a)} We can! It’s done by unification and here it gives x==f(a) (ii) Instantiate (1) giving ¬R(a) ∨ P(a, f(a)) (use x==a) (iii) Instantiate (2) giving ¬P(a, f(a)) ∨ S(g(f(a))) (use y==f(a)) What will the resolvent be? (iv) Derive ¬R(a) ∨ S(g(f(a))) (by resolution) The resolvent is P(f(a),s(f(a))) ∨ ¬Q(y) (1) and (2) resolve to give ¬R(a) ∨ S(g(f(a))) That is, substitute f(a) for x everywhere it occurs as we have x==f(a) (NOTE: the resolvent won’t be P(x,s(x)) ∨ ¬Q(y), as we required x==f(a)) FIRST "match" a positive and negative literal by unifying them, NEXT apply the substitution to the other literals, This gives us first order resolution! THEN remove the complementary literals and take disjunction of rest. (See ppt) UNIFICATION PRACTICE 3avi The Unification Algorithm (On this Slide variables are x,y,z,etc, constants are a,b,c, etc.} To unify P(a1,...,an) and ¬ P(b1,...,bn): (i.e. find the mgu (most general unifier)) Unify: 1. M(x,f(x)) , M(a,y) 2. M(y,y,b) , M(f(x), z, z) 1) equate corresponding arguments to give equations E (a1=b1, ..., an=bn) 3. M(y,y) , M(g(z) , z) 4. M(f(x), h(z), z) , M(f(g(u)), h(b), u) 2) Select an equation and apply the action for the appropriate Case from below. RESOLUTION PRACTICE Cases – Equation has form: Resolve: 1. P(a,b) ∨ Q(c), ¬ P(a,b) ∨ R(d) ∨ E(a,b) a) var = var – remove equation; 2. P(x,y) ∨ Q(y,x) , ¬P(a,b) b) var = term (or term = var) – mark var = term as the unifier var == term and 3. P(x,x) ∨ Q(f(x) ) , ¬P(u,v) ∨ R(u) replace all occurrences of var in equations and in RHS of unifiers by term; 4. P(f(u), g(u)) ∨ Q(u) , ¬ P(x,y) ∨ R(y,x) c) f(args1) = f(args2) – replace by equations equating corresponding argument 5. P(u,u,c) ∨ P(d,u,v) , ¬ P(a,x,y) ∨ ¬ P(x,x,b) terms; for cases d) and e) there is no action as these are failure cases To Resolve two clauses C and D: d) term1 = term2 and functors are different; (eg f(...)=g(...) or a=b) FIRST "match" a literal in C with a literal in D of opposite sign, e) var=term and var occurs in term; (eg x=f(x) or x=h(g(x)) – called occurs check ) NEXT apply the substitution to all other literals in C and D, THEN form the resolvent R = C+D-{matched literals}. Repeat 2) until there are no equations left ( success ) or d) or e) applies ( failure ). 3avii

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend