Download presentation
1
Proofs in Predicate Calculus
2
Topics Inference Rules with Quantifiers Unification OSM and Proofs
Laws Universal/Existential Instantiation Universal/Existential Generalization Unification OSM and Proofs
3
Laws as Inference Rules
Equivalence laws can be used as inference rules. Show: if xP(x) Q then x(P(x) Q) R. 1. xP(x) Q premise 2. xP(x) Q implication law 3. xP(x) Q de Morgan’s law 4. x(P(x) Q) distributive law 5. x(P(x) Q) implication law 6. x(P(x) Q) R law of addition, A |= A B Note: the propositional laws of inference hold, as well (e.g. Step 6).
4
Universal Instantiation (UI)
When A is true for every instantiation, it is certainly true for some particular instantiation. xA SxtA Example: fromx Mortal(x), we can derive Mortal(Smith).
5
UI Example Given the following two premises:
1. All intelligent students succeed 2. John is an intelligent student Prove that John succeeds. Proof: 1. x(Intelligent(x) Succeed(x)) premise 2. Intelligent(John) premise 3. Intelligent(John) Succeed(John) 1, UI 4. Succeed(John) 2&3, modus ponens
6
Existential Instantiation (EI)
When A is true for one or more instantiations, we can let a variable, say b, designate any one of the true instantiations. xA SxbA Example: from x Mortal(x), we can derive Mortal(b), where b is a variable that stands for sombody who is mortal. Caution: Because we don’t know which one(s) in the domain make A hold, we must make sure b is a new variable not one already in use. For example, if we have x Succeeds(x) and x Fails(x), then we cannot conclude Succeeds(b) and Fails(b) the first b is OK, but not the second.
7
EI Example Given 1. Someone gets an A 2. Everyone who gets an A is happy Prove that someone is happy Translated to predicates: x getsA(x) x (getsA(x) happy(x)) Prove: happy(x) Proof: x getsA(x) premise getsA(b) 1, EI x (getsA(x) happy(x)) premise getsA(b) happy(b) 3, UI happy(b) 2&4, modus ponens happy(x) 5, variant Note: we could have used x in place of b to begin with. The x’s would not get mixed up because one is free and the others are bound. (This can be confusing and is not recommended.)
8
Existential Generalization (EG)
If we know A is true for some particular substitution t, we know there exists at least one substitution for which A is true. SxtA xA
9
EG Example Given 1. Someone gets an A
2. Everyone who gets an A is happy Prove that there exists someone who is happy Translated to predicates: x getsA(x) x (getsA(x) happy(x)) Prove: x happy(x) Proof: x getsA(x) premise getsA(b) 1, EI x (getsA(x) happy(x)) premise getsA(b) happy(b) 3, UI happy(b) 2&4, modus ponens x happy(x) 5, EG
10
Universal Generalization (UG)
xA If A holds with no restrictions on one of its variables x, it must hold for all substitutions for x. Example: from x(P(x) Q(x)) and xP(x), we can conclude P(a) Q(a) and P(a) by UI and then Q(a) by modus ponens; and thus by UG we can conclude xQ(x). Caution: Any variable that represents a fixed element of the domain cannot be generalized by UG. Thus, the variable to be generalized must not be one that is introduced by EI and must not be one that is fixed in a premise.
11
Universal Generalization (UG) (continued…)
Consider the following proof for “if x(x>100 x>10) and y>100, then y>10” which is correct. 1. y>100 premise 2. x(x>100 x>10) premise 3. y>100 y>10 2, UI 4. y>10 1&3, modus ponens However, if we improperly use UG, we can conclude something that is clearly erroneous. 2. y(y>100) 1, UG (Wrong!) 3. … It is not true that all numbers are greater than In the original statement of what is to be proved, y is fixed (although unknown) and represents a particular element of the domain (namely, in this case, some number greater than 100).
12
OSM and Proof Prove: If osmx23 is a LatinLover, then osmx23 is Italian
i.e., LatinLover(osmx23) Italian(osmx23) Proof: LatinLover(osmx23) premise x(Lazy(x) Mafioso(x) LatinLover(x) Italian(x)) ontologically given Lazy(osmx23) Mafioso(osmx23) LatinLover(osmx23) Italian(osmx23)) UI (2) LatinLover(osmx23) Lazy(osmx23) LatinLover(osmx23) addition (1) Italian(osmx23) modus ponens (3&4)
13
OSM and Proof Prove: If someone in the mafia has the name Bogart,
then there is someone (at least Bogart), who is not a Latin lover. i.e., x(Mafioso(x) Italian(x) has Name(Bogart)) y(LatinLover(y)) Proof: x(Mafioso(x) Italian(x) has Name(Bogart)) premise Mafioso(a) Italian(a) has Name(Bogart) EI (1) (here the variable a must be unique – can’t be Bogart) x(Mafioso(x) Lazy(x) LatinLover(x)) ontologically given Mafioso(a) Lazy(a) LatinLover(a) UI (3), (note that we can choose a) Mafioso(a) simplification (2) Lazy(a) LatinLover(a) modus ponens (4&5) LatinLover(a) simplification (6) x (LatinLover(x)) EG (7)
14
Derivation Example If xyz(Q(x, y) P(z)), wP(w) then xQ(x, 8).
xyz(Q(x, y) P(z)) premise Q(a, b) P(c) 1, UI Sxa, Syb, Szc P(c) Q(a, b) 2, contrapositive wP(w) premise P(c) 4, UI Swc Q(a, b) 3&5, modus ponens xyQ(x, y) 6, UG (Neither a nor b is free in a premise, nor were they introduced by EI.) xQ(x, 8) 7, UI Sy8
15
Derivation Example If xyz(Q(x, y) P(z)), wP(w) then xQ(x, 8).
xyz(Q(x, y) P(z)) premise Q(x, y) P(z) 1, UI Sxx, Syy, Szz P(z) Q(x, y) 2, contrapositive wP(w) premise P(z) 4, UI Swz Q(x, y) 3&5, modus ponens xyQ(x, y) 6, UG (Neither x nor y is free in a premise, nor were they introduced by EI.) xQ(x, 8) 7, UI Sy8 Note: the names of the variables don’t matter, so long as we follow the rules properly.
16
Unification The previous proof was basically about getting rid of universal quantifiers and then reintroducing them and about getting the variable names to match for modus ponens and for the conclusion. Since, we “play this game” over and over, we could (and should) simplify by doing two things: 1. Drop initial ’s, so long as we remember which variables are actually bound to these universal quantifiers so that we use them properly and which variables (if any) are fixed in the premises. 2. Use unification. Two expressions unify if there are legal instantiations that make them the same.
17
Simplified Derivation Example
If Q(x, y) P(z), P(w) then Q(x, 8). Q(x, y) P(z) premise P(z) Q(x, y) 1, contrapositive P(w) premise P(z) 3, unification with 2 Q(x, y) 2&4, modus ponens Q(x, 8) 5, instantiation Informally, we can see that this works: If 2 & 3 are true for all substitutions, then we can always choose the w to be the same as z and be guaranteed that they will both be true (assuming the premises are true). Note that the UI and UG are “hidden” within the unification.
18
OSM and Proof Prove: Every Italian professor is a Latin lover,
i.e., ItalianProf(x) LatinLover(x) Proof (by contradiction): LatinLover(x) negation of conclusion ItalianProf(x) premise ItalianProf(x) Italian(x) ontologically given Italian(x) modus ponens (2&3) Italian(x) Lazy(x) Mafioso(x) LatinLover(x) ontologically given Lazy(x) Mafioso(x) LatinLover(x) modus ponens (4&5) Lazy(x) Mafioso(x) resolution (1&6) ItalianProf(x) Lazy(x) ontologically given Lazy(x) modus ponens (2&8) Mafioso(x) resolution (7&9) Mafioso(x) ItalianProf(x) ontologically given ItalianProf(x) modus ponens (10&11) F contradiction (2&12)
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.