1 / 48

First-Order Logic

First-Order Logic. Artificial Intelligence. Content . The need for First Order Logic Syntax and semantics of FOL Using FOL Knowledge engineering in FOL Using FOL in Set Theory. Pros and cons of propositional logic. Lack of variables prevents stating more general rules

wyome
Télécharger la présentation

First-Order Logic

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. First-Order Logic Artificial Intelligence

  2. Content • The need for First Order Logic • Syntax and semantics of FOL • Using FOL • Knowledge engineering in FOL • Using FOL in Set Theory

  3. Pros and cons of propositional logic • Lack of variables prevents stating more general rules • Propositional logic allows partial/disjunctive/negated information • (unlike most data structures and databases) • Propositional logic is compositional: • meaning of B1,1 P1,2 is derived from meaning of B1,1 and of P1,2 • Meaning in propositional logic is context-independent • (unlike natural language, where meaning depends on context) • Change of the KB over time is difficult to represent

  4. Pros and cons of propositional logic • Propositional logic has very limited expressive power • (unlike natural language) • E.g., cannot say "pits cause breezes in adjacent squares“ • except by writing one sentence for each square

  5. First-order logic • First-order logic (FOL) models the world in terms of • A set of objects. Objects, which are things with individual identities. These are objects in the environment that are important for your application. • Properties of objects that distinguish them from other objects. Distinguished subsets of objects.

  6. Semantics Formal Details • Relations that hold among sets of objects. Distinguished sets of tuples of objects. • Functions, which are a subset of relations where there is only one “value” for any given “input”. • Distinguished functions mapping tuples of objects to objects.

  7. Examples • Objects: Students, lectures, companies, cars • Relations: Brother-of, bigger-than, outside, part-of, has-color, occurs-after, owns, visits, precedes, ... • Properties: blue, oval, even, large, ... • Functions: father-of, best-friend, second-half, one-more-than ...

  8. Example Suppose, we want to represent knowledge that would be useful for making the course a successful learning experience. What are the objects in the course environment? What are the properties/ predicates associated with these objects? What are the relations among these objects? What functions map these objects to others?

  9. Examples • Objects: • students, subjects, assignments, numbers. • Predicates: • difficult(subject), BIT_3(student). • Relations: • Handed_In(student, assignment) • Functions: • Grade(student, assignment) →number

  10. First-order logic • Whereas propositional logic assumes the world contains facts, • first-order logic (like natural language) assumes the world contains

  11. Relations • Some relations are properties: they state some fact about a single object: Round(ball), Prime(7). • n-ary relations state facts about two or more objects: Married(John,Mary), LargerThan(3,2). • Some relations are functions: their value is another object: Plus(2,3), Father(Dan).

  12. Logic consists of • A language which tells us how to build up sentences in the language (i.e., syntax), and and what the sentences mean (i.e., semantics) • An inference procedure which tells us which sentences are valid inferences from other sentences

  13. First Order Logic • Syntax: • A grammar specifying what are legal syntactic constructs of the representation. • Semantics: • A formal mapping from syntactic constructs to set theoretic assertions.

  14. Syntax of FOL: Basic elements • Constants KingJohn, 2, BUS,... • Predicates Brother, >,... • Functions Sqrt, LeftLegOf,... • Variables x, y, a, b,... • Connectives , , , ,  • Equality = • Quantifiers , 

  15. First Order Syntax • Start with a set of primitive symbols. 1.constant symbols. 2.function symbols. 3.predicate symbols (for predicates and relations). 4.variables. • Each function and predicate symbol has a specific arity (determines the number of arguments it takes).

  16. First Order Syntax—Building up • Term = logical expression that refers to an object. • There are 2 kinds of terms: • constant symbols: Table, Computer • function symbols: LeftLeg(Pete), Sqrt(3), Plus(2,3) etc • An expression of the form f(t1, …tk) where • f is a function symbol; • k is its arity; • each ti is a term, e.g., t1

  17. First Order Syntax—Building up • An atom is an expression of the form f(t1, …tk) where f is a predicate symbol; k is its arity; each ti is a term • Note: • constants are the same as functions taking zero arguments. • Use UPPER CASE for variables, lower case for function/constant/predicate symbols.

  18. Atomic Sentences • Atomic sentences state facts using terms and predicate symbols • P(x,y) interpreted as “x is P of y” • Examples: LargerThan(2,3) is false i.e., 2 is larger than 3 Brother_of(Mary,Pete) is false. Married(Father(Richard), Mother(John)) could be true or false • Note: Functions do not state facts and form no sentence: • Brother(Pete) refers to John (his brother) and is neither true nor false. • Brother_of(Pete,Brother(Pete)) is True. Function Binary relation

  19. Complex Sentences • We make complex sentences with connectives (just like in propositional logic). property binary relation function objects connectives

  20. Terms • Terms denote individuals: • constants denote specific individuals; • functions map tuples/groups of individuals to other individuals • bill, jane, father(jane), father(father(jane)) • X, father(X), hotel7, rating(hotel7), cost(hotel7) • Atoms denote facts that can be true or false about the world • father_of(jane, bill), female(jane), system_down() • satisfied(client15), satisfied(C) • desires(client15,rome,week29), desires(X,Y,Z) • rating(hotel7, 4), cost(hotel7, 125)

  21. Atoms are formulas. (Atomic formulas). The negation(NOT) of a formula is a new formula ¬f(-f) Asserts that f is false. The conjunction (AND) of a set of formulas is a formula. f1Λf2Λ…Λfnwhere each fiis formula Asserts that each formula fi is true.

  22. The disjunction (OR) of a set of formulas is a formula. f1νf2ν…νfn where each fiis formula Asserts that at least one formula fi is true. Existential Quantification ∃. ∃X. f where X is a variable and f is a formula. Asserts there is some individual such that f under than binding will be true. Universal Quantification ∀. ∀X.fwhere X is a variable and f is a formula. Assets that f is true for every individual.

  23. Semantics Formulas (syntax) can be built up recursively, and can become arbitrarily complex. Intuitively, there are various distinct formulas (viewed as strings) that really are asserting the same thing ∀X,Y. elephant(X) Λ teacup(Y) →largerThan(X,Y) ∀X,Y. teacup(Y) Λ elephant(X)→largerThan(X,Y) To capture this equivalence and to make sense of complex formulas we utilize the semantics.

  24. Recur from prepositional logic calculus • The symbols of propositional calculus are • the propositional symbols: • P, Q, R, S, … • the truth symbols: • true, false • and connectives: • , , , , 

  25. Propositional Calculus Sentences • Every propositional symbol and truth symbol is a sentence. • Examples: true, P, Q, R. • The negation of a sentence is a sentence. • Examples: P,  false. • The conjunction, or and, of two sentences is a sentence. • Example: P  P

  26. Propositional Calculus Sentences (cont’d) • The disjunction, or or, of two sentences is a sentence. • Example: P  P • The implication of one sentence from another is a sentence. • Example: P  Q • The equivalenceof two sentences is a sentence. • Example: P  Q  R • Legal sentences are also called well-formed formulas or WFFs.

  27. Variables • Person(John) is true or false because we give it a single argument ‘John’ • We can be much more flexible if we allow variables which can take on values in a domain. e.g., all persons x, all integers i, etc. • E.g., can state rules like Person(x) => HasHead(x) or Integer(i) => Integer(plus(i,1)

  28. Universal Quantification  •  means “for all” • Allows us to make statements about all objects that have certain properties • Can now state general rules:  x King(x) => Person(x)  x Person(x) => HasHead(x) • i Integer(i) => Integer(plus(i,1)) Note that • x King(x)  Person(x) is not correct! This would imply that all objects x are Kings and are People  x King(x) => Person(x) is the correct way to say this

  29. Existential Quantification  •  x means “there exists an x such that….” (at least one object x) • Allows us to make statements about some object without naming it • Examples:  x King(x)  x Lives_in(John, Castle(x))  iInteger(i) GreaterThan(i,0) Note that  is the natural connective to use with  (And => is the natural connective to use with  )

  30. More examples For all real x, x>2 implies x>3. There exists some real x whose square is minus 1.

  31. Combining Quantifiers  x  y Loves(x,y) • For everyone (“all x”) there is someone (“y”) who loves them  y  x Loves(x,y) - there is someone (“y”) who loves everyone Clearer with parentheses:  y (  x Loves(x,y) )

  32. Connections between Quantifiers • Asserting that all x have property P is the same as asserting that does not exist any x that don’t have the property P  x Likes(x, 271 class)   x Likes(x, 271 class) In effect: -  is a conjunction over the universe of objects -  is a disjunction over the universe of objects

  33. Using FOL • We want to TELL things to the KB, e.g. TELL(KB, ) TELL(KB, King(John) ) These sentences are assertions • We also want to ASK things to the KB, ASK(KB, ) these are queries or goals The KB should return the list of x’s for which Person(x) is true: {x/John,x/Richard,...}

  34. FOL Version of Wumpus World • Typical percept sentence:Percept([Stench,Breeze,Glitter,None,None],5) • Actions:Turn(Right), Turn(Left), Forward, Shoot, Grab, Release, Climb • To determine best action, construct query: a BestAction(a,5) • ASK solves this and returns {a/Grab} • And TELL about the action.

  35. Knowledge Base for Wumpus World • Perception • b,g,t Percept([Breeze,b,g],t)  Breeze(t) • s,b,t Percept([s,b,Glitter],t)  Glitter(t) • Reflex • t Glitter(t)  BestAction(Grab,t) • Reflex with internal state • t Glitter(t) Holding(Gold,t)  BestAction(Grab,t) Holding(Gold,t) can not be observed: keep track of change.

  36. Deducing hidden properties Environment definition: x,y,a,bAdjacent([x,y],[a,b])  [a,b]  {[x+1,y], [x-1,y],[x,y+1],[x,y-1]} Properties of locations: s,tAt(Agent,s,t)  Breeze(t)  Breezy(s) Squares are breezy near a pit: • Diagnostic rule---infer cause from effect s Breezy(s)  r Adjacent(r,s)  Pit(r) • Causal rule---infer effect from cause (model based reasoning) r Pit(r)  [s Adjacent(r,s)  Breezy(s)]

  37. Set Theory in First-Order Logic Can we define set theory using FOL? - individual sets, union, intersection, etc Answer is yes. Basics: - empty set = constant = { } - unary predicate Set( ), true for sets - binary predicates: x  s (true if x is a member of the set x) s1 s2 (true if s1 is a subset of s2) - binary functions: intersection s1 s2, union s1 s2 , adjoining{x|s}

  38. A Possible Set of FOL Axioms for Set Theory The only sets are the empty set and sets made by adjoining an element to a set s Set(s)  (s = {} )  (x,s2 Set(s2)  s = {x|s2}) The empty set has no elements adjoined to it x,s {x|s} = {} Adjoining an element already in the set has no effect x,s x  s  s = {x|s} The only elements of a set are those that were adjoined into it. Expressed recursively: x,s x  s  [ y,s2 (s = {y|s2}  (x = y  x  s2))]

  39. A Possible Set of FOL Axioms for Set Theory A set is a subset of another set iff all the first set’s members are members of the 2nd set s1,s2 s1 s2 (x x s1 x  s2) Two sets are equal iff each is a subset of the other s1,s2 (s1 = s2)  (s1 s2 s2 s1) An object is in the intersection of 2 sets only if it is a member of both x,s1,s2 x  (s1 s2)  (x  s1 x  s2)

  40. A Possible Set of FOL Axioms for Set Theory An object is in the union of 2 sets only if a member of either x,s1,s2 x  (s1 s2)  (x  s1 x  s2)

  41. Summary • First-order logic: Much more expressive than propositional logic • Allows objects and relations as semantic primitives • Universal and existential quantifiers • syntax: constants, functions, predicates, equality, quantifiers Knowledge engineering using FOL • Capturing domain knowledge in logical form • Inference and reasoning in FOL

  42. What Next?

  43. Artificial Intelligence • Give course Returns Good time Effort scores

More Related