automated reasoning
play

AUTOMATED REASONING substantially simplifying the proofs. Also, when - PowerPoint PPT Presentation

Properties of Inference Systems: 4ai Slides 4 include some material on the properties of inference systems, including material on first order structures. The notion of a Herbrand interpretation, a first order structure with a very particular


  1. Properties of Inference Systems: 4ai Slides 4 include some material on the properties of inference systems, including material on first order structures. The notion of a Herbrand interpretation, a first order structure with a very particular domain, is introduced and it's explained why Herbrand Interpretations are important for soundness and completeness of resolution. The “Useful Theorem” on Slide 4bii and the Skolemisation property on optional 4di capture this. These properties mean that when proving theorems about resolution it is sufficient to restrict considerations to Herbrand interpretations only, AUTOMATED REASONING substantially simplifying the proofs. Also, when using refutation as a proof technique to show (un)satisfiability of data, it is sound to consider the clausal form representation of the data. The proofs of the theorems in Slides 4 (if not given here) can be found either in Appendix1 or in SLIDES 4: Chapter Notes 1 at www.doc.ic.ac.uk/~kb. Note that none of Appendix1 is examinable . Note that it is sufficient for this course to understand about Herbrand structures, but if you are FORMAL NOTIONS familiar with first order structures, you can check your understanding using the following example. Structures and Models Take Domain = Lists over the (English) alphabet and the following mapping of terms to Domain a is "a", b is "the", c is "hit" Herbrand Interpretations and Models f(x) is the word formed by appending 's" to x Soundness of Resolution P(x) is true if x is a correct English word a) Which of ∀ x (P(x) → P(f(x)), P(a) or P(b) are true in this structure? b) Choose interpretations for g and Q that make Q(c,g(c)) true in the structure. NOTE: The notation val(S) I [x/d] may be used to denote the valuation of the sentence S in the structure I in Slide 4avii has been updated. Changes are indicated in RED which free occurrences of x in S are replaced by Domain element d. For example, val(P(x)) I [x/'a'] means " val ((interpretation of P in I)('a'))", which for the structure I given above is " val('a' is a correct English word)". Note that ∀ x.S is true in structure I if val(S) I [x/d] is true in I for every d in KB - AR - 13 the Domain, and ∃ x.S is true in structure I if val(S) I [x/d] is true in I for some d in the Domain. Note: in ∀ x(P(x) → Q(x,y)) "x" is not free as it is bound by ∀ x, but "y" is free as it is not bound. Structures (see ppt) 4aii • (First order) sentences are written in a language L, which uses formulas and terms constructed from names in the signature Sig(L) = <P, F, C>, Structures (continued) 4aiii where P = predicates, F = function symbols, C = constants. Structure 1 again : Domain = {integers} Example: Let Sig(L) = <{P,Q},{f},{a,b}> I(a) = 0, I(b) =2 I(f) is the function x -> x+2 S = { ∀ x (P(x) → P(f(x))), P(a), P(b), Q(a, f(a))} I(P) = even I(Q) = less a and b are constants, f has arity 1, P has arity 1 and Q has arity 2 The interpretation I is extended to apply to all ground terms in language L: • A structure (or interpretation) I for L consists of a non-empty domain D, and I(f(t1, ..., tn)) = I(f)(I(t1), ..., I(tn)) for a functional term of arity n an interpretation (i.e. a meaning) for each symbol in Sig(L): Also, I(x) =x for a bound variable x • c ∈ C is interpreted by an element I(c) of D • f (of arity n) ∈ F is interpreted by a function I(f) of arity n from Dn to D I(P) allows to give a valuation for all ground atoms • p (of arity m) ∈ P is interpreted by a relation I(P) of arity m on Dm val(P(t1, ..., tn)) = val(I(P)(I(t1), ..., I(tm))) for an atom of arity m Structure 1 : Domain = {integers} = Int val(P(a)) = val(even(0)) = True • I(a) = 0, I(b) =2 val(P(b)) = val(even(2)) = True • I(f) is the function Int -> Int, where x -> x+2 (i.e. the "add 2" function) val( ∀ x (P(x) → P(f(x))) = val( ∀ x (even(x) → even(x+2))) = True • I(P) = even (ie P(x) is true iff x is even) • I(Q) = less (ie Q(x,y) is true iff x is less than y)

  2. 4aiv Structure 2: a Herbrand Structure Given: Sig(L) = <{P},{f},{a,b}> S = { ∀ x (P(x) → P(f(x))), P(a) , P(b)} A Herbrand Structure for Sig(L): Truth in Structures 4av • Domain ={ a,b,f(a),f(b), …, f(f(a)),f(f(b))…, } • The truth of a sentence S written in L under interpretation I is defined by: (i.e. the set of names of ground terms in L) S is a ground atom P(t1,...,tn): S is true iff val(I(P)(I(t1),...,I(tn))) = True • I(a) = a , I(b) = b , I(f) = f , hence I(f(a)) = I(f)(I(a)) = f(a) S =¬S1: S is true iff val(S1) = False i.e. terms of the language are, in effect, interpreted as themselves S = S1 op S2: S is true iff val(S1) op val(S2) is true (op in { ∨, →, ∧, ↔}) NOTE: mapping of constants and functors is fixed in a Herbrand structure S = ∀ x(S1): S is true iff val(I(S1)[x/d]) is true for every d in D • I(P) = P S = ∃ x(S1): S is true iff val(I(S1)[x/d]) is true for some d in D The valuation of atoms can be given explicitly: I(S1)(x/d) means d replaces occurrences of x in interpreted atoms in S1 here's one example : val(P(a)) = val(I(P)(I(a))) = val( P(a) ) = True A structure I for L is a model for a set of sentences S (written in L) if Value of atoms of the form P(fn(a)) = True; val(P(fn(b))) = val(P(b) = False for every sentence s in S, val(S) is true under I i.e. P(a) = P(f(a)) = P(f(f(a))) =… = True and P(b) = P(f(b)) = … = False If S has a model it is satisfiable . If S has no models S is unsatisfiable . A Herbrand interpretation is represented by a subset of the set of atoms: for above example we get { P(a), P(f(a)), P(f(f(a))), ..... } (the true atoms) Exercise: what is the truth of ∃ y ∀ x(P(x,y)) and ∀ u ∃ v(P(u,v)) in the structure with In this interpretation P(a) and ∀ x[P(x) → P(f(x))] are true, but P(b) is false. Domain the set of Integers where I(P) = greater-than (ie P(x,y) means x >y)? 4avii Herbrand Interpretations for clauses (Simplified) We identify the terms in the language with their counterparts in the Herbrand Truth in Structures (Example) 4avi structure and write val(S) instead of val(H(S)) for a Herbrand structure H. Given: Sig(L) = <{P},{f},{a,b}> Some Definitions: Let L be a language for a set of clauses S What is the truth of ∀ x (P(x) → P(f(x))) under the Herbrand interpretation "H1" that assigns True to P(a), P(f(a)), P(f(f(a))), etc. and false to other atoms? The Herbrand Universe HU of L is the set of terms using constants and function symbols in Sig(L). (It is assumed there is always at least one constant.) Answer: val( ∀ x (P(x) → P(f(x))) under "H1" = True if The Herbrand Base HB of L is the set of ground atoms using terms from HU val( H1( ∀ x (P(x) → P(f(x))) [x/a] ) = val( H1( ∀ x (P(x) → P(f(x))) [x/f(a)] ) = .... An Herbrand Interpretation HI of L is a subset of the atoms in HB which are = val( H1( ∀ x (P(x) → P(f(x))) [x/b] ) = val( H1( ∀ x (P(x) → P(f(x))) [x/f(b)] ) = .... assumed to be true = True An Herbrand model of S is an Herbrand interpretation M of L that forces val(S) val( H1( ∀ x (P(x) → P(f(x))) [x/a] ) = val( H1(P)(x) → H1 ( P)(H1(f(x)) [x/a] ) =True for each clause in S under M = val( P(x) → P(f(x)) [x/a] ) A ground instance C' of clause C is obtained by applying a ground substitution θ to C. If θ is {x1/t1,..., xn/tn}, where xi are the variables in C and ti are ground = val( P(a) → P(f(a)) ) = True terms, in C' each occurrence of xi in C has been replaced by ti. Similarly for the other cases. A clause C is true in H if every ground instance of C is true in H. This is clearly very cumbersome!! If S has a Herbrand model we say S is H-satisfiable . If not S is H-unsatisfiable . We simplify notation when Herbrand structures are used for clausal form, and, with a slight abuse of notation make the following definitions. NOTE : If Sig(L) includes any function symbols then the Herbrand Universe is infinite.There is assumed always one constant in HU, so HU ≠ ∅.

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