SlideShare uma empresa Scribd logo
1 de 55
Ch5: Using Predicate Logic
Q Representing simple facts in Logic
Q Representing Instance and Isa relationships
Q Make an exception
Q Computable functions and predicates
Q Resolution
Q Natural deduction
Slide 1
Ch5: Using Predicate Logic
Logic
Logic is concerned with the truth of statements about the world.
Generally each statement is either TRUE or FALSE.
Logic includes :Syntax , Semantics and Inference Procedure.
◊ Syntax :
Specifies the symbols in the language about how they can be co
mbined to form sentences. The facts about the world are repre
sented as sentences in logic.
◊ Semantic :
Specifies how to assign a truth value to a sentence based on its
meaning in the world. It Specifies what facts a sentence refers to.
A fact is a claim about the world, and it may be TRUE or FALSE.
◊ Inference Procedure :
Specifies methods for computing new sentences from the existin
g sentences. Slide 2
Representing Simple Facts in Logic
Q Using propositional logic
–Real-world facts are represented as logical propositions wr
itten as well-formed formulas (wff’s)
–Example 1:
It is raining RAINING
It is sunny SUNNY
It is Windy WINDY
If it is raining, then it is not sunny RAINING  ¬SUNNY
Slide 3
Representing Simple Facts in Logic
– Example 2:
Socrates is a man SOCRATESMAN
Plato is a man PLATOMAN
All men are mortal MORTALMAN
Slide 4
=> Since the assertions are separate, it is not possible to dra
w any conclusion about similarities between Socrates and Pl
ato.
Representing Simple Facts in Logic
It would be much better to represent these facts as
•This fails to capture the relationship between any individual being
a man and that individual being a mortal.
•Therefore it is necessary to move to first order predicate logic as a
way of representing knowledge because it permits representation o
f things that cannot reasonably be represented in prepositional logi
c.
•In predicate logic, real world facts are represented as statements
written as wff’s.
Socrates is a man man(socrates)
Plato is a man man(plato)
All men are mortal mortalman
Slide 5
Representing Simple Facts in Logic
Q Propositional logic vs. predicate logic
–Using propositional logic
• Theorem proving is decidable
• Cannot represent objects and quantification
–Using predicate logic
• Can represent objects and quantification
• Theorem proving is semi-decidable
Slide 6
Representing Simple Facts in Logic
Consider the following set of sentences.
1. Marcus was a man.
2. Marcus was a Pompeian.
3. All Pompeians were Romans.
4. Caesar was a ruler.
5. All Romans were either loyal to Caesar or hated him.
6. Every one is loyal to someone.
7. People only try to assassinate rulers they are not loyal to.
8. Marcus tried to assassinate Caesar
Slide 7
Representing Simple Facts in Logic
1. Marcus was a man. man(Mar
cus)
2. Marcus was a Pompeian. Po
mpeian(Marcus)
3. All Pompeians were Romans.
x: Pompeian(x) Roman(x)
4. Caesar was a ruler. ruler(Cae
sar)
Slide 8
Representing Simple Facts in Logic
5. All Romans were either loyal to Caesar or hated him.
In English the word ‘or’ means the logical inclusive-or an
d sometimes means the logical exclusive-or(XOR)
inclusive-or
x: Roman(x) loyalto(x, Caesar) hate(x, Caesar)
exclusive-or (XOR)
x: Roman(x) (loyalto(x, Caesar) hate(x, Caesar))
( loyalto(x, Caesar) hate(x, Caesar))
Slide 9
Representing Simple Facts in Logic
6. Every one is loyal to someone.
x y: loyalto(x, y)
7. People only try to assassinate rulers they are not loyal
to.
x: y: person(x) ruler(y) tryassassinate(x, y)
loyalto(x, y)
8. Marcus tried to assassinate Caesar. tryassassinate(
Marcus, Caesar)
Slide 10
Representing Simple Facts in Logic
To answer the question
Was Marcus loyal to Caesar?
To produce a formal proof , reasoning backward from th
e desired goal
To prove the goal, rules of inference are to be used to trans
form into another goal that in turn be transformed and s
o on, until there are no insatisfied goals remaining.
Slide 11
loyalto(Marcus, Caesar)
Representing Simple Facts in Logic
Slide 12
•This attempt fails , since there is no way to satisfy the goal perso
n(Marcus)with the statements available.
•The problem is although its known that Marcus was a man there
is no way to conclude it.
•Therefore another representation is added namely
Representing Simple Facts in Logic
9.All men are people
x:man(x)person(x)
This satisfies the last goal and produce a proof that Marcus w
as not loyal to ceasar.
Three important issues to be addressed in this process
of converting English sentences to logical statements and the
n using these statements to deduce new ones.
• Many English sentences are ambiguous. Choosing the corre
ct interpretation may be difficult.
• There is often a choice of how to represent knowledge
• Obvious information may be necessary for reasoning
• We may not know in advance which statements to
•deduce (P or P). Slide 13
Representing Instance & Isa Relationships
Slide 14
•Attributes “ IsA ” and “ Instance ” support property inheritance
and play important role in knowledge representation.The ways
these two attributes "instance" and "isa", are logically expresse
d are shown in the example below :
Example : A simple sentence like "Joe is a musician"
Here "is a" (called IsA) is a way of expressing what
logically is called a class-instance relationship between the su
bjects represented by the terms "Joe" and "musician".
◊ "Joe" is an instance of the class of things called "musician". "
Joe" plays the role of instance,
"musician" plays the role of class in that sentence.
◊ Note : In such a sentence, while for a human there is no con
fusion, but for computers each relationship have to be defined
explicitly.
This is specified as: [Joe] IsA [Musician]
i.e., [Instance] IsA [Class]
Representing Instance & Isa Relationships
Slide 15
Representing Instance & Isa Relationships
Slide 16
•The first part of the figure contains the representations, in whic
h the class membership is represented with unary predicates,
each corresponding to a class. Asserting that p(x) is true is equi
valent to asserting that X is an instance of p.
•The second part uses the instance predicate explicitly. It is a b
inary one, whose first argument is an object and whose second
argument is a class to which the object belongs. The implicatio
n rule in statement 3 states that object is an instance of the sub
class pompeian then it is an instance of the superclass Roman.
•The third part contains representations that use both the instan
ce and isa predicates explicitly. Use of isa simplifies the repres
entation of sentence 3 but requires one additional axiom.It desc
ribes how an instance relation and an isa relation combined to
derive a new instance relation.
Computable Functions and Predicates
Slide 17
•All the simple facts can be expressed as combination of indivi
dual predicates such as
tryassassinate(Marcus, Caesar)
•This is fine if the number of facts is not very large. But suppo
se if we want to express simple facts such as greater-than and
less-than relationships:
Q Computable predicates
greater-than(1, 0)
greater-than(2, 1)
greater-than(3, 2)
….
less-than(0, 1)
less-than(1, 2)
less-than(2, 3)
….
Computable Functions and Predicates
Slide 18
• It is not possible to write out the representation of each of the
se facts individually as they are infinitely many of them.
• But if only the finite number of them are to be represented, it
would be extremely inefficient to store explicitly a large set of
statements instead so easily compute each one as we need it.
• Thus it becomes useful to argument the representations by c
omputable predicates.
• A procedure will be invoked which is specified in addition to th
e regular rules, that will evaluate it and return true or false.
• It is often useful to have computable functions as well as com
putable predicates.
• Eg:gt(2+3,1), the value of the plus function is computed given
the arguments 2 and 3 , and then send the arguments 5 and
1 to gt
Computable Functions and Predicates
Slide 19
Computable Functions and Predicates
Slide 20
Computable Functions and Predicates
Slide 21
Set of facts about Marcus
The numbering is changed slightly because sentence 5 has b
een split into two parts.
Computable Functions and Predicates
Slide 22
The question is “Is Marcus alive?” This question can be answ
ered by proving
¬alive(Marcus,now)
The term nil at the end of each proof indicates that the lsit of
conditions remaining to be proved is empty and so the proof
has succeeded.
Resolution
Slide 23
From looking at the proofs, two things are clear.
•Even very simple conclusions can require many steps to prove.
•A variety of processes such as matching, substitution are invol
ved in the production of a proof.
Resolution
•This reduces some of the complexity because it operates on st
atements that have first been converted to a single canonical fo
rm.
•Resolution produces proofs by refutation.
•In other words to prove a statement(i.e show that it is valid) res
olution attempts to show that the negation of the statement prod
uces a contradiction with the known statements.
•This approach contrasts with the technique that generate proof
s by chaining backward from the theorem to be proved to the ax
iom.
Algorithm: Convert to Clause Form
1. Eliminate , using: a  b=  a v b.
2. Reduce the scope of each  to a single term, using:
 ( p) = p
deMorgan's laws: (a  b) =  a V  b
(a V b) =  a   b
 x P(x) = x  P(x)
 x P(x) = x  P(x)
3. Standardize variables.
4. Move all quantifiers to the left of the formula without changing their r
elative order.
5. Eliminate existential quantifiers by inserting Skolem functions.
6. Drop the prefix.
7. Convert the expression into a conjunction of disjuncts, using associa
tivity and distributivity.
8. Create a separate clause for each conjunct.
9. Standardize apart the variables in the set of clauses generated in st
ep 8, using the fact that: (x: P(x)  Q(x)) = x: P(x)  x: Q(x)
Resolution
Slide 25
Resolution
Slide 26
Resolution
Slide 27
Resolution
Slide 28
Resolution
Slide 29
Resolution
Slide 30
Resolution
Slide 31
•After applying this entire procedure to a set of wff’s, a set of clause
s will be obtained each of which is a disjunction of literals.
•These clauses can now be exploited by the resolution procedure t
o generate proofs.
Skolem Functions in FOL
•Objective
–Want all variables universally quantified
–Notational variant of FOL w/o existentials
–Retain implicitly full FOL expressiveness
•Skolem’s Theorem
Every existentially quantified variable can be replaced by a
unique Skolem function whose arguments are all the universally q
uantified variables on which the existential depends, without chang
ing FOL.
•Examples
–“Everybody likes something”
(x)  (y) [Person(x) & Likes(x,y)]
(x) [Person(x) & Likes(x, S1(x))]
Where S1(x) = “that which x likes”
–“Every philosopher writes at least one book”
(x) (y)[Philosopher(x) & Book(y)) => Write(x,y)]
(x)[(Philosopher(x) & Book(S2(x))) => Write(x,S2(x))]
The Basis of Resolution
The resolution procedure is a simple iterative process
•at each step two clauses called the parent clauses are com
pared(resolved) yielding a new clause that has been inferre
d from them.
•The new clause represents ways that the two parent clause
s interact with each other.
•Given:
winter V summer
 winter V cold
We can conclude:
summer v cold
Both the clauses must be true. If winter is true, then cold
must be true to guarantee the truth of the second clause a
nd vice versa.
The Basis of Resolution
•This is the deduction that the resolution procedure will mak
e.
•Resolution operates by taking two clauses that each contai
n the same literal, in this example winter.
•The literal must occur in positive form in one clause and in
negative form in the other.
•The resolvent is obtained by combining all the literals of the
two clauses except the ones that cancel.
•If the clause that is produced is the empty clause,then a co
ntradiction has been found.Example
Winter
¬Winter
•Will produce the empty clause.
Herbrand's Theorem
•Herbrand's Theorem:
To show that a set of clauses S is unsatisfiable, it is
necessary to consider only interpretations over a particul
ar set, called the Herbrand universe of S. A set of clause
s S is unsatisfiable if and only if a finite subset of ground i
nstances (in which all bound variables have had a value
substituted for them) of S is unsatsifable.
Algorithm: Propositional Resolution
1. Convert all the propositions of F to clause form.
2. Negate P and convert the result to clause form. Add it to the set
of clauses obtained in step 1.
3. Repeat until either a contradiction is found or no progress can be
made:
a) Select two clauses. Call these the parent clauses.
b) Resolve them together. The resolvent will be the disjunction of al
l of the literals of both of the parent clauses with the following ex
ception: If there are any pairs of literals L and  L such that one
of the parent clauses contains L and the other contains L, then
select one such pair and eliminate both L and L from the resolv
ent.
c) If the resolvent is the empty clause, then a contradiction has bee
n found. If it is not, then add it to the set of clauses available to t
he procedure.
A Few Facts in Propositional Logic
•OR is allowed and AND is not allowed.
•Implications are also not allowed.
Given Axioms(wff’s) Clause Form(conjuctive
normal form)
1.P P (1)
2.(P  Q)  R P V Q V R (2)
De Morgan’s Law
1)¬(a b)= a V b
2)¬(a V b)= a  b
 (P  Q) V R= P V Q V R
A Few Facts in Propositional Logic
3.(S V T)  Q S V Q (3)
4. T V Q (4)
(S V T) V Q= ( S   T) V Q
By Distributive law= ( S V Q) ( T V Q)
5.T T (5)
•To prove R. First the axioms are converted to clause form. Then we
negate R.
•Then pairs of clauses are selected to resolve together.
•Although any pairs of clauses can be resolved, only those pairs that
contain complementary literals will produce a resolvent that is likely t
o lead to the goal of producing the empty clause.
Resolution in Propositional Logic
P V Q V R R
P V Q
Q
P
T V Q
T T
Unification Algorithm
Unification Algorithm
Unification Algorithm
Unification Algorithm
Unification Algorithm
Unification Algorithm
Algorithm: Unify(L1,L2)
1. If L1 or L2 is a variable or consta
nt, then:
a) If L1 and L2 are identical, then r
eturn NIL.
b) Else if L1 is a variable, then if L
1 occurs in L2 then return FAI
L, else return {(L2/L1)}.
c) Else if L2 is a variable, then if L
2 occurs in L1 then return FAI
L, else return {(L1/L2)}.
d) Else return FAIL.
2. If the initial predicate symbols in
L1 and L2 are not identical, then r
eturn FAIL.
3. If L1 and L2 have a different num
ber of arguments, then return FAI
L
4. Set SUBST to NIL.
5. For i  1 to number of arguments i
n L1:
a) Call Unify with the ith argument
of L1 and the ith argument of L2,
putting result in S.
b) If S = FAIL then return FAIL.
c) If S is not equal to NIL then:
i. Apply S to the remainder of both
L1 and L2.
ii. SUBST := APPEND(S, SUBST).
6. Return SUBST.
Algorithm: Resolution
1. Convert all the propositions of F to clause form.
2. Negate P and convert the result to clause form. Add it to the set
of clauses obtained in 1.
3. Repeat until either a contradiction is found, no progress can be
made, or a predetermined amount of effort has been expended.
a) Select two clauses. Call these the parent clauses.
b) Resolve them together. The resolvent will be the disjunction of all
the literals of both parent clauses with appropriate substitutions
performed and with the following exception: If there is one pair o
f literals T1 and  T2 such that one of the parent clauses contain
s T1 and the other contains  T2 and if T1 and T2 are unifiable, t
hen neither T1 nor  T2 should appear in the resolvent. If there
is more than one pair of complementary literals, only one pair sh
ould be omitted from the resolvent.
c) If the resolvent is the empty clause, then a contradiction has bee
n found. If it is not, then add it to the set of clauses available to t
he procedure.
A Resolution Proof
• Axioms in clause form:
1. man(Marcus)
2. Pompeian(Marcus)
3.  Pompeian(x1) v Roman(x1)
4. Ruler(Caesar)
5.  Roman(x2) v loyalto(x2, Caesar) v hate(x2, Caesar)
6. loyalto(x3, f1(x3))
7.  man(x4) v  ruler(y1) v  tryassassinate(x4, y1) v
loyalto (x4, y1)
8. tryassassinate(Marcus, Caesar)
Resolution Proof cont.
Prove: hate(Marcus, Caesar) hate(Marcus, Caesar)
Roman(Marcus) V loyalto(Marcus,Caesar)
Marcus/x2
5
3
2
7
1
4
8
Marcus/x
1
Pompeian(Marcus) V loyalto(Marcus,Caesar)
loyalto(Marcus,Caesar)
Marcus/x4, Caesar/y1
man(Marcus) V  ruler(Caesar) V  tryassassinate(Marcus, Ca
esar)
 ruler(Caesar) V  tryassassinate(Marcus, Caesar)
 tryassassinate(Marcus, Caesar)
An Unsuccessful Attempt at Resolution
Prove: loyalto(Marcus, Caesa
r)
loyalto(Marcus, Caesar)
Roman(Marcus) V hate(Marcus,Caesar)
Marcus/x2
5
3
2
Marcus/x
1Pompeian(Marcus) V hate(Marcus,Caesar)
hate(Marcus,Caesar)
Marcus/x6, Caesar/y3
(a)
hate(Marcus,Caes
ar)
10
persecute(Caesar, Marcus)
hate(Marcus,Caesar)
9
Marcus/x5, Caesar/y2
(b)
:
:
Question Answering
1. When did Marcus die?
2. Whom did Marcus hate?
3. Who tried to assassinate a ruler?
4. What happen in 79 A.D.?
5. Did Marcus hate everyone?
Q Answering = finding a known statement that matches
the terms given in the question
Slide 51
Question Answering
Slide 52
Question Answering
When did Marcus die?
t: died(Marcus, t)
Resolution:
t: died(Marcus, t) = died(Marcus, t)
Pompeian(x) v died(x, 79) died(Marcus, t)
79 / t, Marcus / x
Pompeian(Marcus)Pompeian(Marcus)
false
Slide 53
Question Answering
Slide 54
Natural Deduction
Q Problems with resolution
–The heuristic information contained in the original stat
ements can be lost in the transformation
x: judge(x) crooked(x) educated(x)
judge(x) v crooked(x) v educated(x)
–People do not think in resolution
Q Natural deduction: A way of doing machine theorem
proving that corresponds more closely to processes us
ed in human theorem proving
Slide 55

Mais conteúdo relacionado

Mais procurados

Knowledge representation in AI
Knowledge representation in AIKnowledge representation in AI
Knowledge representation in AI
Vishal Singh
 
Production System in AI
Production System in AIProduction System in AI
Production System in AI
Bharat Bhushan
 
Logic programming (1)
Logic programming (1)Logic programming (1)
Logic programming (1)
Nitesh Singh
 

Mais procurados (20)

Knowledge representation in AI
Knowledge representation in AIKnowledge representation in AI
Knowledge representation in AI
 
Chapter 4 (final)
Chapter 4 (final)Chapter 4 (final)
Chapter 4 (final)
 
Artificial Intelligence Notes Unit 2
Artificial Intelligence Notes Unit 2Artificial Intelligence Notes Unit 2
Artificial Intelligence Notes Unit 2
 
Elements of dynamic programming
Elements of dynamic programmingElements of dynamic programming
Elements of dynamic programming
 
Semantic nets in artificial intelligence
Semantic nets in artificial intelligenceSemantic nets in artificial intelligence
Semantic nets in artificial intelligence
 
Chess board problem(divide and conquer)
Chess board problem(divide and conquer)Chess board problem(divide and conquer)
Chess board problem(divide and conquer)
 
Production System in AI
Production System in AIProduction System in AI
Production System in AI
 
Performance analysis(Time & Space Complexity)
Performance analysis(Time & Space Complexity)Performance analysis(Time & Space Complexity)
Performance analysis(Time & Space Complexity)
 
Logic programming (1)
Logic programming (1)Logic programming (1)
Logic programming (1)
 
Dempster shafer theory
Dempster shafer theoryDempster shafer theory
Dempster shafer theory
 
First order logic
First order logicFirst order logic
First order logic
 
Heuristc Search Techniques
Heuristc Search TechniquesHeuristc Search Techniques
Heuristc Search Techniques
 
Problem solving agents
Problem solving agentsProblem solving agents
Problem solving agents
 
9. chapter 8 np hard and np complete problems
9. chapter 8   np hard and np complete problems9. chapter 8   np hard and np complete problems
9. chapter 8 np hard and np complete problems
 
Logics for non monotonic reasoning-ai
Logics for non monotonic reasoning-aiLogics for non monotonic reasoning-ai
Logics for non monotonic reasoning-ai
 
State Space Representation and Search
State Space Representation and SearchState Space Representation and Search
State Space Representation and Search
 
Daa unit 1
Daa unit 1Daa unit 1
Daa unit 1
 
predicate logic example
predicate logic examplepredicate logic example
predicate logic example
 
Agreement Protocols, distributed File Systems, Distributed Shared Memory
Agreement Protocols, distributed File Systems, Distributed Shared MemoryAgreement Protocols, distributed File Systems, Distributed Shared Memory
Agreement Protocols, distributed File Systems, Distributed Shared Memory
 
Matching techniques
Matching techniquesMatching techniques
Matching techniques
 

Semelhante a Predicate logic

Jarrar.lecture notes.aai.2011s.ch7.p logic
Jarrar.lecture notes.aai.2011s.ch7.p logicJarrar.lecture notes.aai.2011s.ch7.p logic
Jarrar.lecture notes.aai.2011s.ch7.p logic
PalGov
 
1Week 3 Section 1.4 Predicates and Quantifiers As.docx
 1Week 3 Section 1.4 Predicates and Quantifiers  As.docx 1Week 3 Section 1.4 Predicates and Quantifiers  As.docx
1Week 3 Section 1.4 Predicates and Quantifiers As.docx
joyjonna282
 

Semelhante a Predicate logic (20)

Chapter5 slideshare
Chapter5 slideshareChapter5 slideshare
Chapter5 slideshare
 
AIML 7th semester VTU
AIML 7th semester VTUAIML 7th semester VTU
AIML 7th semester VTU
 
Knowledge representation using predicate logic
Knowledge representation using predicate logicKnowledge representation using predicate logic
Knowledge representation using predicate logic
 
artficial intelligence
artficial intelligenceartficial intelligence
artficial intelligence
 
01bkb04p.ppt
01bkb04p.ppt01bkb04p.ppt
01bkb04p.ppt
 
Predicate logic_2(Artificial Intelligence)
Predicate logic_2(Artificial Intelligence)Predicate logic_2(Artificial Intelligence)
Predicate logic_2(Artificial Intelligence)
 
Pnp
PnpPnp
Pnp
 
Logic
LogicLogic
Logic
 
Logic.ppt
Logic.pptLogic.ppt
Logic.ppt
 
Stochastic Processes Homework Help
Stochastic Processes Homework HelpStochastic Processes Homework Help
Stochastic Processes Homework Help
 
Jarrar.lecture notes.aai.2011s.ch7.p logic
Jarrar.lecture notes.aai.2011s.ch7.p logicJarrar.lecture notes.aai.2011s.ch7.p logic
Jarrar.lecture notes.aai.2011s.ch7.p logic
 
AI NOTES ppt 4.pdf
AI NOTES ppt 4.pdfAI NOTES ppt 4.pdf
AI NOTES ppt 4.pdf
 
AI Lesson 11
AI Lesson 11AI Lesson 11
AI Lesson 11
 
Chapter1p3.pptx
Chapter1p3.pptxChapter1p3.pptx
Chapter1p3.pptx
 
Stochastic Processes Homework Help
Stochastic Processes Homework Help Stochastic Processes Homework Help
Stochastic Processes Homework Help
 
Chapter 01 - p3.pdf
Chapter 01 - p3.pdfChapter 01 - p3.pdf
Chapter 01 - p3.pdf
 
4AMT122-PART 1-SLIDES.pptx
4AMT122-PART 1-SLIDES.pptx4AMT122-PART 1-SLIDES.pptx
4AMT122-PART 1-SLIDES.pptx
 
Course notes1
Course notes1Course notes1
Course notes1
 
Deep VI with_beta_likelihood
Deep VI with_beta_likelihoodDeep VI with_beta_likelihood
Deep VI with_beta_likelihood
 
1Week 3 Section 1.4 Predicates and Quantifiers As.docx
 1Week 3 Section 1.4 Predicates and Quantifiers  As.docx 1Week 3 Section 1.4 Predicates and Quantifiers  As.docx
1Week 3 Section 1.4 Predicates and Quantifiers As.docx
 

Último

Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
fonyou31
 

Último (20)

SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
General AI for Medical Educators April 2024
General AI for Medical Educators April 2024General AI for Medical Educators April 2024
General AI for Medical Educators April 2024
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room service
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
 
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajan
 

Predicate logic

  • 1. Ch5: Using Predicate Logic Q Representing simple facts in Logic Q Representing Instance and Isa relationships Q Make an exception Q Computable functions and predicates Q Resolution Q Natural deduction Slide 1
  • 2. Ch5: Using Predicate Logic Logic Logic is concerned with the truth of statements about the world. Generally each statement is either TRUE or FALSE. Logic includes :Syntax , Semantics and Inference Procedure. ◊ Syntax : Specifies the symbols in the language about how they can be co mbined to form sentences. The facts about the world are repre sented as sentences in logic. ◊ Semantic : Specifies how to assign a truth value to a sentence based on its meaning in the world. It Specifies what facts a sentence refers to. A fact is a claim about the world, and it may be TRUE or FALSE. ◊ Inference Procedure : Specifies methods for computing new sentences from the existin g sentences. Slide 2
  • 3. Representing Simple Facts in Logic Q Using propositional logic –Real-world facts are represented as logical propositions wr itten as well-formed formulas (wff’s) –Example 1: It is raining RAINING It is sunny SUNNY It is Windy WINDY If it is raining, then it is not sunny RAINING  ¬SUNNY Slide 3
  • 4. Representing Simple Facts in Logic – Example 2: Socrates is a man SOCRATESMAN Plato is a man PLATOMAN All men are mortal MORTALMAN Slide 4 => Since the assertions are separate, it is not possible to dra w any conclusion about similarities between Socrates and Pl ato.
  • 5. Representing Simple Facts in Logic It would be much better to represent these facts as •This fails to capture the relationship between any individual being a man and that individual being a mortal. •Therefore it is necessary to move to first order predicate logic as a way of representing knowledge because it permits representation o f things that cannot reasonably be represented in prepositional logi c. •In predicate logic, real world facts are represented as statements written as wff’s. Socrates is a man man(socrates) Plato is a man man(plato) All men are mortal mortalman Slide 5
  • 6. Representing Simple Facts in Logic Q Propositional logic vs. predicate logic –Using propositional logic • Theorem proving is decidable • Cannot represent objects and quantification –Using predicate logic • Can represent objects and quantification • Theorem proving is semi-decidable Slide 6
  • 7. Representing Simple Facts in Logic Consider the following set of sentences. 1. Marcus was a man. 2. Marcus was a Pompeian. 3. All Pompeians were Romans. 4. Caesar was a ruler. 5. All Romans were either loyal to Caesar or hated him. 6. Every one is loyal to someone. 7. People only try to assassinate rulers they are not loyal to. 8. Marcus tried to assassinate Caesar Slide 7
  • 8. Representing Simple Facts in Logic 1. Marcus was a man. man(Mar cus) 2. Marcus was a Pompeian. Po mpeian(Marcus) 3. All Pompeians were Romans. x: Pompeian(x) Roman(x) 4. Caesar was a ruler. ruler(Cae sar) Slide 8
  • 9. Representing Simple Facts in Logic 5. All Romans were either loyal to Caesar or hated him. In English the word ‘or’ means the logical inclusive-or an d sometimes means the logical exclusive-or(XOR) inclusive-or x: Roman(x) loyalto(x, Caesar) hate(x, Caesar) exclusive-or (XOR) x: Roman(x) (loyalto(x, Caesar) hate(x, Caesar)) ( loyalto(x, Caesar) hate(x, Caesar)) Slide 9
  • 10. Representing Simple Facts in Logic 6. Every one is loyal to someone. x y: loyalto(x, y) 7. People only try to assassinate rulers they are not loyal to. x: y: person(x) ruler(y) tryassassinate(x, y) loyalto(x, y) 8. Marcus tried to assassinate Caesar. tryassassinate( Marcus, Caesar) Slide 10
  • 11. Representing Simple Facts in Logic To answer the question Was Marcus loyal to Caesar? To produce a formal proof , reasoning backward from th e desired goal To prove the goal, rules of inference are to be used to trans form into another goal that in turn be transformed and s o on, until there are no insatisfied goals remaining. Slide 11 loyalto(Marcus, Caesar)
  • 12. Representing Simple Facts in Logic Slide 12 •This attempt fails , since there is no way to satisfy the goal perso n(Marcus)with the statements available. •The problem is although its known that Marcus was a man there is no way to conclude it. •Therefore another representation is added namely
  • 13. Representing Simple Facts in Logic 9.All men are people x:man(x)person(x) This satisfies the last goal and produce a proof that Marcus w as not loyal to ceasar. Three important issues to be addressed in this process of converting English sentences to logical statements and the n using these statements to deduce new ones. • Many English sentences are ambiguous. Choosing the corre ct interpretation may be difficult. • There is often a choice of how to represent knowledge • Obvious information may be necessary for reasoning • We may not know in advance which statements to •deduce (P or P). Slide 13
  • 14. Representing Instance & Isa Relationships Slide 14 •Attributes “ IsA ” and “ Instance ” support property inheritance and play important role in knowledge representation.The ways these two attributes "instance" and "isa", are logically expresse d are shown in the example below : Example : A simple sentence like "Joe is a musician" Here "is a" (called IsA) is a way of expressing what logically is called a class-instance relationship between the su bjects represented by the terms "Joe" and "musician". ◊ "Joe" is an instance of the class of things called "musician". " Joe" plays the role of instance, "musician" plays the role of class in that sentence. ◊ Note : In such a sentence, while for a human there is no con fusion, but for computers each relationship have to be defined explicitly. This is specified as: [Joe] IsA [Musician] i.e., [Instance] IsA [Class]
  • 15. Representing Instance & Isa Relationships Slide 15
  • 16. Representing Instance & Isa Relationships Slide 16 •The first part of the figure contains the representations, in whic h the class membership is represented with unary predicates, each corresponding to a class. Asserting that p(x) is true is equi valent to asserting that X is an instance of p. •The second part uses the instance predicate explicitly. It is a b inary one, whose first argument is an object and whose second argument is a class to which the object belongs. The implicatio n rule in statement 3 states that object is an instance of the sub class pompeian then it is an instance of the superclass Roman. •The third part contains representations that use both the instan ce and isa predicates explicitly. Use of isa simplifies the repres entation of sentence 3 but requires one additional axiom.It desc ribes how an instance relation and an isa relation combined to derive a new instance relation.
  • 17. Computable Functions and Predicates Slide 17 •All the simple facts can be expressed as combination of indivi dual predicates such as tryassassinate(Marcus, Caesar) •This is fine if the number of facts is not very large. But suppo se if we want to express simple facts such as greater-than and less-than relationships: Q Computable predicates greater-than(1, 0) greater-than(2, 1) greater-than(3, 2) …. less-than(0, 1) less-than(1, 2) less-than(2, 3) ….
  • 18. Computable Functions and Predicates Slide 18 • It is not possible to write out the representation of each of the se facts individually as they are infinitely many of them. • But if only the finite number of them are to be represented, it would be extremely inefficient to store explicitly a large set of statements instead so easily compute each one as we need it. • Thus it becomes useful to argument the representations by c omputable predicates. • A procedure will be invoked which is specified in addition to th e regular rules, that will evaluate it and return true or false. • It is often useful to have computable functions as well as com putable predicates. • Eg:gt(2+3,1), the value of the plus function is computed given the arguments 2 and 3 , and then send the arguments 5 and 1 to gt
  • 19. Computable Functions and Predicates Slide 19
  • 20. Computable Functions and Predicates Slide 20
  • 21. Computable Functions and Predicates Slide 21 Set of facts about Marcus The numbering is changed slightly because sentence 5 has b een split into two parts.
  • 22. Computable Functions and Predicates Slide 22 The question is “Is Marcus alive?” This question can be answ ered by proving ¬alive(Marcus,now) The term nil at the end of each proof indicates that the lsit of conditions remaining to be proved is empty and so the proof has succeeded.
  • 23. Resolution Slide 23 From looking at the proofs, two things are clear. •Even very simple conclusions can require many steps to prove. •A variety of processes such as matching, substitution are invol ved in the production of a proof. Resolution •This reduces some of the complexity because it operates on st atements that have first been converted to a single canonical fo rm. •Resolution produces proofs by refutation. •In other words to prove a statement(i.e show that it is valid) res olution attempts to show that the negation of the statement prod uces a contradiction with the known statements. •This approach contrasts with the technique that generate proof s by chaining backward from the theorem to be proved to the ax iom.
  • 24. Algorithm: Convert to Clause Form 1. Eliminate , using: a  b=  a v b. 2. Reduce the scope of each  to a single term, using:  ( p) = p deMorgan's laws: (a  b) =  a V  b (a V b) =  a   b  x P(x) = x  P(x)  x P(x) = x  P(x) 3. Standardize variables. 4. Move all quantifiers to the left of the formula without changing their r elative order. 5. Eliminate existential quantifiers by inserting Skolem functions. 6. Drop the prefix. 7. Convert the expression into a conjunction of disjuncts, using associa tivity and distributivity. 8. Create a separate clause for each conjunct. 9. Standardize apart the variables in the set of clauses generated in st ep 8, using the fact that: (x: P(x)  Q(x)) = x: P(x)  x: Q(x)
  • 31. Resolution Slide 31 •After applying this entire procedure to a set of wff’s, a set of clause s will be obtained each of which is a disjunction of literals. •These clauses can now be exploited by the resolution procedure t o generate proofs.
  • 32. Skolem Functions in FOL •Objective –Want all variables universally quantified –Notational variant of FOL w/o existentials –Retain implicitly full FOL expressiveness •Skolem’s Theorem Every existentially quantified variable can be replaced by a unique Skolem function whose arguments are all the universally q uantified variables on which the existential depends, without chang ing FOL. •Examples –“Everybody likes something” (x)  (y) [Person(x) & Likes(x,y)] (x) [Person(x) & Likes(x, S1(x))] Where S1(x) = “that which x likes” –“Every philosopher writes at least one book” (x) (y)[Philosopher(x) & Book(y)) => Write(x,y)] (x)[(Philosopher(x) & Book(S2(x))) => Write(x,S2(x))]
  • 33. The Basis of Resolution The resolution procedure is a simple iterative process •at each step two clauses called the parent clauses are com pared(resolved) yielding a new clause that has been inferre d from them. •The new clause represents ways that the two parent clause s interact with each other. •Given: winter V summer  winter V cold We can conclude: summer v cold Both the clauses must be true. If winter is true, then cold must be true to guarantee the truth of the second clause a nd vice versa.
  • 34. The Basis of Resolution •This is the deduction that the resolution procedure will mak e. •Resolution operates by taking two clauses that each contai n the same literal, in this example winter. •The literal must occur in positive form in one clause and in negative form in the other. •The resolvent is obtained by combining all the literals of the two clauses except the ones that cancel. •If the clause that is produced is the empty clause,then a co ntradiction has been found.Example Winter ¬Winter •Will produce the empty clause.
  • 35. Herbrand's Theorem •Herbrand's Theorem: To show that a set of clauses S is unsatisfiable, it is necessary to consider only interpretations over a particul ar set, called the Herbrand universe of S. A set of clause s S is unsatisfiable if and only if a finite subset of ground i nstances (in which all bound variables have had a value substituted for them) of S is unsatsifable.
  • 36. Algorithm: Propositional Resolution 1. Convert all the propositions of F to clause form. 2. Negate P and convert the result to clause form. Add it to the set of clauses obtained in step 1. 3. Repeat until either a contradiction is found or no progress can be made: a) Select two clauses. Call these the parent clauses. b) Resolve them together. The resolvent will be the disjunction of al l of the literals of both of the parent clauses with the following ex ception: If there are any pairs of literals L and  L such that one of the parent clauses contains L and the other contains L, then select one such pair and eliminate both L and L from the resolv ent. c) If the resolvent is the empty clause, then a contradiction has bee n found. If it is not, then add it to the set of clauses available to t he procedure.
  • 37. A Few Facts in Propositional Logic •OR is allowed and AND is not allowed. •Implications are also not allowed. Given Axioms(wff’s) Clause Form(conjuctive normal form) 1.P P (1) 2.(P  Q)  R P V Q V R (2) De Morgan’s Law 1)¬(a b)= a V b 2)¬(a V b)= a  b  (P  Q) V R= P V Q V R
  • 38. A Few Facts in Propositional Logic 3.(S V T)  Q S V Q (3) 4. T V Q (4) (S V T) V Q= ( S   T) V Q By Distributive law= ( S V Q) ( T V Q) 5.T T (5) •To prove R. First the axioms are converted to clause form. Then we negate R. •Then pairs of clauses are selected to resolve together. •Although any pairs of clauses can be resolved, only those pairs that contain complementary literals will produce a resolvent that is likely t o lead to the goal of producing the empty clause.
  • 39. Resolution in Propositional Logic P V Q V R R P V Q Q P T V Q T T
  • 46. Algorithm: Unify(L1,L2) 1. If L1 or L2 is a variable or consta nt, then: a) If L1 and L2 are identical, then r eturn NIL. b) Else if L1 is a variable, then if L 1 occurs in L2 then return FAI L, else return {(L2/L1)}. c) Else if L2 is a variable, then if L 2 occurs in L1 then return FAI L, else return {(L1/L2)}. d) Else return FAIL. 2. If the initial predicate symbols in L1 and L2 are not identical, then r eturn FAIL. 3. If L1 and L2 have a different num ber of arguments, then return FAI L 4. Set SUBST to NIL. 5. For i  1 to number of arguments i n L1: a) Call Unify with the ith argument of L1 and the ith argument of L2, putting result in S. b) If S = FAIL then return FAIL. c) If S is not equal to NIL then: i. Apply S to the remainder of both L1 and L2. ii. SUBST := APPEND(S, SUBST). 6. Return SUBST.
  • 47. Algorithm: Resolution 1. Convert all the propositions of F to clause form. 2. Negate P and convert the result to clause form. Add it to the set of clauses obtained in 1. 3. Repeat until either a contradiction is found, no progress can be made, or a predetermined amount of effort has been expended. a) Select two clauses. Call these the parent clauses. b) Resolve them together. The resolvent will be the disjunction of all the literals of both parent clauses with appropriate substitutions performed and with the following exception: If there is one pair o f literals T1 and  T2 such that one of the parent clauses contain s T1 and the other contains  T2 and if T1 and T2 are unifiable, t hen neither T1 nor  T2 should appear in the resolvent. If there is more than one pair of complementary literals, only one pair sh ould be omitted from the resolvent. c) If the resolvent is the empty clause, then a contradiction has bee n found. If it is not, then add it to the set of clauses available to t he procedure.
  • 48. A Resolution Proof • Axioms in clause form: 1. man(Marcus) 2. Pompeian(Marcus) 3.  Pompeian(x1) v Roman(x1) 4. Ruler(Caesar) 5.  Roman(x2) v loyalto(x2, Caesar) v hate(x2, Caesar) 6. loyalto(x3, f1(x3)) 7.  man(x4) v  ruler(y1) v  tryassassinate(x4, y1) v loyalto (x4, y1) 8. tryassassinate(Marcus, Caesar)
  • 49. Resolution Proof cont. Prove: hate(Marcus, Caesar) hate(Marcus, Caesar) Roman(Marcus) V loyalto(Marcus,Caesar) Marcus/x2 5 3 2 7 1 4 8 Marcus/x 1 Pompeian(Marcus) V loyalto(Marcus,Caesar) loyalto(Marcus,Caesar) Marcus/x4, Caesar/y1 man(Marcus) V  ruler(Caesar) V  tryassassinate(Marcus, Ca esar)  ruler(Caesar) V  tryassassinate(Marcus, Caesar)  tryassassinate(Marcus, Caesar)
  • 50. An Unsuccessful Attempt at Resolution Prove: loyalto(Marcus, Caesa r) loyalto(Marcus, Caesar) Roman(Marcus) V hate(Marcus,Caesar) Marcus/x2 5 3 2 Marcus/x 1Pompeian(Marcus) V hate(Marcus,Caesar) hate(Marcus,Caesar) Marcus/x6, Caesar/y3 (a) hate(Marcus,Caes ar) 10 persecute(Caesar, Marcus) hate(Marcus,Caesar) 9 Marcus/x5, Caesar/y2 (b) : :
  • 51. Question Answering 1. When did Marcus die? 2. Whom did Marcus hate? 3. Who tried to assassinate a ruler? 4. What happen in 79 A.D.? 5. Did Marcus hate everyone? Q Answering = finding a known statement that matches the terms given in the question Slide 51
  • 53. Question Answering When did Marcus die? t: died(Marcus, t) Resolution: t: died(Marcus, t) = died(Marcus, t) Pompeian(x) v died(x, 79) died(Marcus, t) 79 / t, Marcus / x Pompeian(Marcus)Pompeian(Marcus) false Slide 53
  • 55. Natural Deduction Q Problems with resolution –The heuristic information contained in the original stat ements can be lost in the transformation x: judge(x) crooked(x) educated(x) judge(x) v crooked(x) v educated(x) –People do not think in resolution Q Natural deduction: A way of doing machine theorem proving that corresponds more closely to processes us ed in human theorem proving Slide 55