cpsc 312 functional and logic programming
play

CPSC 312 Functional and Logic Programming Assignment 4 is due - PowerPoint PPT Presentation

CPSC 312 Functional and Logic Programming Assignment 4 is due Thursday! Logic is the beginning of wisdom, not the end. Leonard Nimoy D. Poole 2018 c CPSC 312 Lecture 21 1 / 15 Plan Done: Syntax and semantics of


  1. CPSC 312 — Functional and Logic Programming Assignment 4 is due Thursday! “Logic is the beginning of wisdom, not the end.” Leonard Nimoy � D. Poole 2018 c CPSC 312 — Lecture 21 1 / 15

  2. Plan Done: Syntax and semantics of propositional definite clauses Model a simple domain using propositional definite clauses Soundness and completeness of a proof procedure Bottom-up proof procedure Today: Bottom-up proof procedure: soundness and completeness Top-down proof procedure Procedural definition (box model) � D. Poole 2018 c CPSC 312 — Lecture 21 2 / 15

  3. Semantics An interpretation I assigns a truth value to each atom. rule h :- b 1 , . . . , b k is true unless h is false and b 1 . . . b k are all true. A model of a set of clauses is an interpretation in which all the clauses (atomic facts and rules) are true . If KB is a set of clauses and g is a conjunction of atoms, g is a logical consequence of KB , written KB | = g , if g is true in every model of KB . That is, KB | = g if there is no interpretation in which KB is true and g is false . � D. Poole 2018 c CPSC 312 — Lecture 21 3 / 15

  4. Proofs A proof is a mechanically derivable demonstration that a formula logically follows from a knowledge base. Given a proof procedure, KB ⊢ g means g can be derived from knowledge base KB . Recall KB | = g means g is true in all models of KB . A proof procedure is sound if KB ⊢ g implies KB | = g . A proof procedure is complete if KB | = g implies KB ⊢ g . � D. Poole 2018 c CPSC 312 — Lecture 21 4 / 15

  5. Clicker Question Suppose there at some atom aaa such that KB ⊢ aaa and KB �| = aaa . What can be inferred? A The proof procedure is not sound B The proof prodecure is not complete C The proof procedure is sound and complete D The proof procedure is either sound or complete E None of the above � D. Poole 2018 c CPSC 312 — Lecture 21 5 / 15

  6. Bottom-up proof procedure KB ⊢ g if g ∈ C at the end of this procedure: C := {} ; repeat select fact h or a rule“ h :- b 1 , . . . , b m ” in KB such that b i ∈ C for all i , and h / ∈ C ; C := C ∪ { h } until no more clauses can be selected. � D. Poole 2018 c CPSC 312 — Lecture 21 6 / 15

  7. Clicker Question Consider the knowledge base KB: aah :- green . xox :- bar , fun . ahh :- blue . bar :- zed . green . zed . What is the final consequence set in the bottom-up proof procedure run on KB? A { aah , blue , green , xox , bar , fun , zed } B { aah , blue , green , xox , bar , zed } C { aah , green , bar , zed } D { green , bar , zed } E None of the above � D. Poole 2018 c CPSC 312 — Lecture 21 7 / 15

  8. Soundness of bottom-up proof procedure If KB ⊢ g then KB | = g . Suppose there is a g such that KB ⊢ g and KB �| = g . Then there must be a first atom added to C that isn’t true in every model of KB . Call it h . Suppose h isn’t true in model I of KB . h was added to C , so there must be a clause in KB h :- b 1 , . . . , b m where each b i is in C , and so true in I . h is false in I (by assumption) So this clause is false in I . Therefore I isn’t a model of KB . Contradiction. Therefore there cannot be such a g . � D. Poole 2018 c CPSC 312 — Lecture 21 8 / 15

  9. Fixed Point The C generated at the end of the bottom-up algorithm is called a fixed point. Let I be the interpretation in which every element of the fixed point is true and every other atom is false. Claim: I is a model of KB . Proof: suppose h :- b 1 , . . . , b m in KB is false in I . Then h is false and each b i is true in I . Thus h can be added to C . Contradiction to C being the fixed point. I is called a Minimal Model. � D. Poole 2018 c CPSC 312 — Lecture 21 9 / 15

  10. Completeness If KB | = g then KB ⊢ g . Suppose KB | = g . Then g is true in all models of KB . Thus g is true in the minimal model. Thus g is in the fixed point. Thus g is generated by the bottom up algorithm. Thus KB ⊢ g . � D. Poole 2018 c CPSC 312 — Lecture 21 10 / 15

  11. Clicker Question Consider the knowledge base KB: aah :- blue . xox :- bar , fun . aah :- green . bar :- zed . green . zed . What is the set of atoms that are true in the minimal model of KB? A { aah , blue , green , xox , bar , fun , zed } B { aah , blue , green , xox , bar , zed } C { aah , green , bar , zed } D { green , bar , zed } E None of the above � D. Poole 2018 c CPSC 312 — Lecture 21 11 / 15

  12. Top-down Definite Clause Proof Procedure Idea: search backward from a query to determine if it is a logical consequence of KB . An answer clause is of the form: yes :- a 1 , a 2 , . . . , a m The (SLD) resolution of this answer clause on atom a 1 with the clause in the knowledge base: a 1 :- b 1 , . . . , b p is the answer clause yes :- b 1 , · · · , b p , a 2 , · · · , a m . A fact in the knowledge base is considered as a clause where p = 0. � D. Poole 2018 c CPSC 312 — Lecture 21 12 / 15

  13. Example (simpeg.pl) a :- b, c. a :- e, f. b :- f, k. c :- e. d :- k. e. f :- j, e. f :- c. j :- c. � D. Poole 2018 c CPSC 312 — Lecture 21 13 / 15

  14. Clicker Question Given the answer clause yes :- good , happy , green . Which clause in a KB could this be resolved with (i) green :- good . (ii) good . (iii) happy :- green . (iv) good :- nice , green . (v) happy , green Click on: A (i), (ii) and (iv) only B (ii) and (iv) only C (ii) only D (iii) and (v) only E none of the above � D. Poole 2018 c CPSC 312 — Lecture 21 14 / 15

  15. Clicker Question Given the answer clause yes :- good , happy , green . What is the result of resolving this with the clause good :- nice , green . A yes :- good , nice , green , happy , green B good :- happy , green C yes :- happy , green D yes :- nice , green , happy , green E yes :- nice , green , good , happy , green � D. Poole 2018 c CPSC 312 — Lecture 21 15 / 15

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