1 / 23

Chapter 1: Propositional and First-Order Logic

D M552: Part 2 Programing Logic. Chapter 1: Propositional and First-Order Logic. Dr Youcef Djenouri djenouri@imada.sdu.dk. 2017-2018. Propositional Logic. Propositional logic. Logical constants : true, false Propositional symbols : P, Q, S, ... ( atomic sentences )

mauriner
Télécharger la présentation

Chapter 1: Propositional and 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. DM552: Part 2 ProgramingLogic Chapter 1: Propositional and First-Order Logic Dr Youcef Djenouri djenouri@imada.sdu.dk 2017-2018

  2. Propositional Logic

  3. Propositional logic • Logical constants: true, false • Propositional symbols: P, Q, S, ... (atomic sentences) • Wrapping parentheses: ( … ) • Sentences are combined by connectives: ...and [conjunction] ...or [disjunction] ...implies [implication / conditional] ..is equivalent [biconditional] ...not [negation] • Literal: atomic sentence or negated atomic sentence

  4. Example • P means “Assist course.” • Q means “do exercise .” • R means “Succeed.” • (P  Q)  R “If you assist course and do exercise, then you succeed”

  5. Propositional logic (PL) • A simple language useful for showing key ideas and definitions • User defines a set of propositional symbols, like P and Q. • User defines the semantics of each propositional symbol: • P means “Assist course” • Q means “do exercise” • R means “succeed” • A sentence is defined as follows: • A symbol is a sentence • If S is a sentence, then S is a sentence • If S is a sentence, then (S) is a sentence • If S and T are sentences, then (S  T), (S  T), (S  T), and (S ↔ T) are sentences

  6. Definitions • The meaning or semantics of a sentence determines its interpretation. • Given the truth values of all symbols in a sentence, it can be “evaluated” to determine its truth value (True or False). • A valid sentence or tautology is a sentence that is True under all interpretations, no matter what the world is actually like or how the semantics are defined. Example: “It’s succeed or it’s not succeed.” • An inconsistent sentence or contradiction is a sentence that is False under all interpretations. The world is never like what it describes, as in “It’s succeed and it’s not succeed.” • P entails Q, written P |= Q, means that whenever P is True, so is Q. In other words, all models of P are also models of Q.

  7. Truth table

  8. Propositional logic is a weak language • Hard to identify “individuals” (e.g., Mary, 3) • Can’t directly talk about properties of individuals or relations between individuals (e.g., “Bill is tall”) • Generalizations, patterns, regularities can’t easily be represented (e.g., “all triangles have 3 sides”) • First-Order Logic (FOL) is expressive enough to concisely represent this kind of information FOL adds relations, variables, and quantifiers, e.g., • “Every elephant is gray”: x (elephant(x) → gray(x)) • “There is a white alligator”: x (alligator(X) ^ white(X))

  9. Classwork • Construct a truthtable for the followingformulas: 1- ((P  Q)  Q) 2- ((( P  Q)  Q)  P) • Which of the previous formulas are considered as tautologies?

  10. First-Order Logic

  11. First-order logic • First-order logic (FOL) models the world in terms of • Objects, which are things with individual identities • Properties of objects that distinguish them from other objects • Relations that hold among sets of objects • Functions, which are a subset of relations where there is only one “value” for any given “input” • 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 ...

  12. Syntax (1/3) • Constant symbols, which represent individuals in the world • Mary • 3 • Green • Function symbols, which map individuals to individuals • father-of(Mary) = John • color-of(Sky) = Blue • Predicate symbols, which map individuals to truth values • greater(5,3) • green(Grass) • color(Grass, Green)

  13. Syntax (2/3) • Variable symbols • E.g., x, y, foo • Connectives • Same as in PL: not (), and (), or (), implies (), if and only if (biconditional ) • Quantifiers • Universal x or (Ax) • Existential x or (Ex)

  14. Syntax(3/3) • A term (denoting a real-world individual) is a constant symbol, a variable symbol, or an n-place function of n terms. x and f(x1, ..., xn) are terms, where each xi is a term. A term with no variables is a ground term • An atomic sentence(which has value true or false) is an n-place predicate of n terms • A complex sentence is formed from atomic sentences connected by the logical connectives: P, PQ, PQ, PQ, PQ where P and Q are sentences • A quantified sentence adds quantifiers  and  • A well-formed formula (wff) is a sentence containing no “free” variables. That is, all variables are “bound” by universal or existential quantifiers. (x)P(x,y) has x bound as a universally quantified variable, but y is free.

  15. Quantifiers • Universal quantification • (x)P(x) means that P holds for all values of x in the domain associated with that variable • E.g., (x) dolphin(x)  mammal(x) • Existentialquantification • ( x)P(x) means that P holds for some value of x in the domain associated with that variable • E.g., ( x) mammal(x)  lays-eggs(x)

  16. Quantifiers • Universal quantifiers are often used with “implies” to form “rules”: (x) student(x)  smart(x) means “All students are smart” • Universal quantification is rarely used to make blanket statements about every individual in the world: (x)student(x)smart(x) means “Everyone in the world is a student and is smart” • Existential quantifiers are usually used with “and” to specify a list of properties about an individual: (x) student(x)  smart(x) means “There is a student who is smart

  17. Quantifier Scope • Switching the order of universal and existential quantifiers does not change the meaning: • (x)(y)P(x,y) ↔ (y)(x) P(x,y) • (x)(y)P(x,y) ↔ (y)(x) P(x,y) • (x)(y) likes(x,y) ↔ (y)(x) likes(x,y)

  18. Connections between All and Exists We can relate sentences involving  and  using De Morgan’s laws: (x) P(x) ↔(x) P(x) (x) P(x) ↔ (x) P(x) (x) P(x) ↔ (x) P(x) (x) P(x) ↔(x) P(x)

  19. Universal instantiation and Existential generalization • If (x) P(x) is true, then P(C) is true, where C is any constant in the domain of x Example: (x) eats(Ziggy, x)  eats(Ziggy, IceCream) • If P(C) is true, then (x) P(x) is inferred. Example eats(Ziggy, IceCream)  (x) eats(Ziggy, x)

  20. Semantics of FOL • Domain M: the set of all objects in the world (of interest) • Interpretation I: includes • Assign each constant to an object in M • Define each function of n arguments as a mapping Mn => M • Define each predicate of n arguments as a mapping Mn => {T, F} • Therefore, every ground predicate with any instantiation will have a truth value • In general there is an infinite number of interpretations because |M| is infinite • Define logical connectives: ~, ^, , =>, <=> as in PL • Define semantics of (x) and (x) • (x) P(x) is true iff P(x) is true under all interpretations • (x) P(x) is true iff P(x) is true under some interpretation

  21. Model: an interpretation of a set of sentences such that every sentence is True • A sentence is • satisfiableif it is true under some interpretation • valid if it is true under all possible interpretations • inconsistentif there does not exist any interpretation under which the sentence is true • Logical consequence: S |= X if all models of S are also models of X

  22. Interpretation: Example Consider the set of formulas: {(x) P(x), (x) Q(x) } An interpretation will need to specify a domain, e.g. D = {1, 2} an assignment for all predicate symbol from D to the set {True, False}, for example {P(1) = True, P(2) = False} and {Q(1) = False, Q(2) = True}.

  23. Classwork • Facts: • husband(Joe, Mary), son(Fred, Joe) • spouse(John, Nancy), male(John), child(Nancy, Jack) • daughter(Linda, Jack), male (Jack). • Rules for genealogical relations • (x,y) parent(x, y) ↔ child (y, x) (x,y) father(x, y) ↔ parent(x, y)  male(x) (similarly for mother(x, y)) (x,y) daughter(x, y) ↔ child(x, y)  female(x) (similarly for son(x, y)) • (x,y) husband(x, y) ↔ spouse(x, y)  male(x) (similarly for wife(x, y)) (x,y) spouse(x, y) ↔ spouse(y, x) (spouse relation is symmetric) • Query • father(Jack, Nancy)?

More Related