today
play

Today Closed World Assumption & Negation as Failure. Clark - PowerPoint PPT Presentation

1 Today Closed World Assumption & Negation as Failure. Clark completion Lloyd-Topor transformation Alan Smaill Logic Programming Nov 16 2009 2 Dealing with negation in clause body Prolog deals with negation by failure as


  1. 1 Today • Closed World Assumption & Negation as Failure. • Clark completion • Lloyd-Topor transformation Alan Smaill Logic Programming Nov 16 2009

  2. 2 Dealing with negation in clause body Prolog deals with negation by failure as follows: • allow negation in clause body write not G or \+ G for negated goal • To solve query ?- not(p(t,v) , attempt to solve p(t,v) . If that returns failure, return success for the negated query, and vice versa. The intended use is in the case where not G is ground when it is called. No substitution information is propagated to the overall solution substitution. Alan Smaill Logic Programming Nov 16 2009

  3. 3 Reminder: Negation by failure Prolog does not distinguish between being unable to find a derivation, and claiming that the query is false; that is, it does not distinguish between the “false” and the “unknown” values we have above. When we take a Prolog response of no. as indicating that a query is false, we are making use of the idea of negation as failure : if a statement cannot be derived, then it is false. Clearly, this assumption is not always valid! If some information is not present in the program, failure to find a derivation should not let us conclude that the query is false – we just don’t have the information to decide. Alan Smaill Logic Programming Nov 16 2009

  4. 4 Complete Theories We say a theory T is complete (for ground atoms) iff for every query (like poor ( fred ) ) we can conclude either poor ( fred ) or ¬ poor ( fred ) . A ground atom is a statement of the form P ( t 1 , . . . , t n ) where there are no variables in any t i ; so it is a basic statement about particular objects. Our example T is not complete in this sense; we can extend it to make a complete T using the Closed World Assumption (CWA). The idea is to add in the negation of a ground atom whenever the ground atom cannot be deduced from the KB. This makes the assumption that all the basic positive information about the domain follows from what is already in T . Alan Smaill Logic Programming Nov 16 2009

  5. 5 CWA as an augmented T We can define the effect of the CWA using the standard logic we saw earlier. Given a T written in first-order logic, we augment T to get a bigger set of formulas CWA ( T ) ; the extra formulas we add are: X T = { ¬ p ( t 1 , . . . , t n ) : not T ⊢ p ( t 1 , . . . , t n ) } Now we can define what it is to follow from T using CWA: a formula Q follows from T using the CWA iff T ∪ X T | = Q Alan Smaill Logic Programming Nov 16 2009

  6. 6 Example In the example, we can now conclude ¬ poor ( fred ) , since from the original T we cannot show poor ( fred ) . Thus we have ¬ poor ( fred ) is in X T . In fact, in this case X T = { ¬ poor ( fred ) } , assuming there are no other constants in the language except jane, fred . In this case, we can compute the set X T by looking at all possibilities. One use of CWA is in looking at a failed Prolog query of the form ?- property(t1,t2). as saying that the query is in fact false. Alan Smaill Logic Programming Nov 16 2009

  7. 7 Logic and monotonic reasoning It’s a basic feature of standard logic that it is monotonic : if we add new assumptions to a theory, we never invalidate any conclusions we could already make. In other words, if Q follows logically from a set of statements KB , and X is a set of statements, then Q follows from KB together with X . If T | = Q , then T ∪ X | = Q Reasoning with the CWA does not have this property; we say it is non-monotonic . Adding extra information can invalidate earlier conclusions. Alan Smaill Logic Programming Nov 16 2009

  8. 8 Example From our toy example, form a new KB by adding poor ( fred ) to get the new T ′ : poor ( jane ) poor ( jane ) → happy ( jane ) happy ( fred ) poor ( fred ) Now ¬ poor ( fred ) is not in X T ′ , and so we do not have CWA [ T ′ ] | = ¬ poor ( fred ) any more. Alan Smaill Logic Programming Nov 16 2009

  9. 9 Negation by Failure and Minimal Herbrand Model How does negation by failure fit with the minimal Herbrand model? Suppose we have a ground query (i.e. with no variables) ?- p(t,v). Recall that p(t,v) is true in the minimal Herbrand model M if and only if it is provable by Backchain inference. If Prolog returns “ no ” to the query, that means that there is no Backchain derivation, and so p(t,v) is false in M . So negation by failure, for ground queries, gives the correct answer according to the minimal Herbrand model. Negation by failure in general applies to goals which are not ground as well, however. Alan Smaill Logic Programming Nov 16 2009

  10. 10 Clark completion When negation by failure is used, we lose the pretty picture we had before of the relationship between: • logical inference in predicate logic, from definite clauses; and • Derivations in the Backchain inference system. There is a way of starting from definite clauses S , and computing an extended set of predicate calculus statements Comp ( S ) , and extending the Backchain inference system with negation by failure, to recover the desired connection again. Alan Smaill Logic Programming Nov 16 2009

  11. 11 Completion Suppose that theory has a single formula foo ( a ) – this formula is equivalent to ∀ x ( x = a → foo ( x )) . This second form looks like one half of a definition. To complete the predicate, we add the other half of the definition to the theory, namely ∀ x foo ( x ) → x = a . We now describe a procedure to calculate the completion of a set of definite clauses. Alan Smaill Logic Programming Nov 16 2009

  12. 12 Completion procedure • Suppose start with a definite clause ∀ y (( Q 1 ∧ . . . ∧ Q n ) → p ( t )) where t may be a tuple of terms, and y a tuple of all the variables appearing in Q 1 ∧ . . . ∧ Q n . • Put this in the equivalent form ∀ y ∀ x (( x = t ∧ Q 1 ∧ . . . ∧ Q n ) → p ( x )) . • Put this in the equivalent form ∀ x ( ∃ y ( x = t ∧ Q 1 ∧ . . . ∧ Q n ) → p ( x )) . Alan Smaill Logic Programming Nov 16 2009

  13. 13 Completion ctd This last equivalence follows since ∀ y ( f ( y ) → g ) and ( ∃ y f ( y )) → g are equivalent (if y does not occur in g ). • Do the same for each clause of the predicate p . If the first clause is now in the form ∀ x E 1 → p ( x ) , this gives a number of clauses ∀ x E 1 → p ( x ) ∀ x E 2 → p ( x ) . . . ∀ x E m → p ( x ) which can be combined to give ∀ x (( E 1 ∨ E 2 ∨ . . . ∨ E m ) → p ( x )) Alan Smaill Logic Programming Nov 16 2009

  14. 14 Completion ctd • So far we have something equivalent to the original KB. Now we replace these clauses with the completion formula: ∀ x ( p ( x ) ↔ ( E 1 ∨ E 2 ∨ . . . ∨ E m )) . Alan Smaill Logic Programming Nov 16 2009

  15. 15 Example Take the clauses: ∀ x ( scottish ( x ) → british ( x )) british ( fred ) To take the completion, we get first: ∀ x (( scottish ( x ) ∨ x = fred ) → british ( x )) . and so the completed program is given by the new formula: ∀ x ( british ( x ) ↔ ( scottish ( x ) ∨ x = fred ) . Note that from the completion we can deduce ¬ british ( dai ) , which does not follow logically from the initial clauses. Alan Smaill Logic Programming Nov 16 2009

  16. 16 Clark Completion The Clark completion works by replacing every predicate in this way. For predicates that do not appear in the head of any clause, we add explicit negations; eg for foo / 3 add ∀ x ∀ y ∀ z ¬ foo ( x , y , z ) This gives a standard way of thinking about logic programs. Lloyd says: Even though a programmer only gives a logic programming system the general program, the understanding is that, conceptually, the general program is completed by the system and that the programmer is actually programming with the completion. (Foundations of Logic Programming, p 71) Alan Smaill Logic Programming Nov 16 2009

  17. 17 Properties of the Completion • S follows logically from Comp ( S ) (since we built the completion as a stronger theory, by replacing implication with equivalence) • the completion of a set of definite clauses is always consistent (it always has a model). (the reason for this will be a tutorial topic) • the completion adds no positive information: for atomic statements A , S | = A if and only if Comp ( S ) | = A The completion lets us conclude new negative information, though, justifying the closed world assumption. Alan Smaill Logic Programming Nov 16 2009

  18. 18 Lloyd-Topor transformation Here we look in the other direction. Can we allow programs to be written in a more expressive syntax, and find a way to transform them into something closer to definite clauses? Lloyd and Topor found a way to allow arbitrary first order formulas in the body of statements, and transform this into general programs . A general program is one where a single negation is allowed in front of each atom in the body of a clause. So a general clause now has the shape: H :- (not) B1, ..., (not) Bn. We will see that straightforward execution of such a program with negation as failure is problematic, however. Alan Smaill Logic Programming Nov 16 2009

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