logic as a tool chapter 2 deductive reasoning in
play

Logic as a Tool Chapter 2: Deductive Reasoning in Propositional - PowerPoint PPT Presentation

Logic as a Tool Chapter 2: Deductive Reasoning in Propositional Logic 2.5 Normal forms of propositional formulae Propositional Resolution Valentin Goranko Stockholm University October 2016 Goranko Disjunctive and conjunctive normal forms:


  1. Logic as a Tool Chapter 2: Deductive Reasoning in Propositional Logic 2.5 Normal forms of propositional formulae Propositional Resolution Valentin Goranko Stockholm University October 2016 Goranko

  2. Disjunctive and conjunctive normal forms: basic definitions 1. A literal is a propositional constant or variable or its negation. 2. An elementary disjunction (resp., elementary conjunction) is a disjunction (resp., conjunction) of one or more literals. Examples: p , ¬ q , p ∨ ¬ q , p ∨ ¬ p ∨ q ∨ ¬ r are elementary disjunctions; p , ¬ q , ¬ p ∧ q , ¬ p ∧ q ∧ ¬ r ∧ ¬ p are elementary conjunctions. 3. A disjunctive normal form (DNF) is a disjunction of elementary conjunctions. Examples: p , ¬ q , p ∧ ¬ q , p ∨ ¬ q , ( p ∧ ¬ p ) ∨ ¬ q , ( r ∧ q ∧ ¬ p ) ∨ ( ¬ q ∧ p ) ∨ ( ¬ r ∧ p ). 4. A conjunctive normal form (CNF) is a conjunction of elementary disjunctions. Examples: p , ¬ q , p ∧ ¬ q , p ∨ ¬ q , p ∧ ( ¬ p ∨ ¬ q ), ( r ∨ q ∨ ¬ r ) ∧ ¬ q ∧ ( ¬ p ∨ r ). Goranko

  3. Algorithm for equivalent transformation to CNF/DNF Theorem (Conjunctive normal form) Every propositional formula is equivalent to a disjunctive normal form and to a conjunctive normal form. Algorithm transforming a formula into a DNF, respectively CNF: 1. Eliminate all occurrences of ↔ and → using the equivalences A ↔ B ≡ ( A → B ) ∧ ( B → A ) and A → B ≡ ¬ A ∨ B . 2. Transform to negation normal form by using the relevant equivalences. 3. For a DNF: distribute all conjunctions over disjunctions using p ∧ ( q ∨ r ) ≡ ( p ∧ q ) ∨ ( p ∧ r ) . 4. For a CNF: distribute all disjunctions over conjunctions using p ∨ ( q ∧ r ) ≡ ( p ∨ q ) ∧ ( p ∨ r ) . Goranko

  4. Some useful simplifications Throughout this process the formulae can be simplified by using commutativity, associativity, and idempotency of ∨ and , as well as: ◮ p ∨ ¬ p ≡ ⊤ ; p ∧ ¬ p ≡ ⊥ ; ◮ p ∧ ⊤ ≡ p ; p ∧ ⊥ ≡ ⊥ ; ◮ p ∨ ⊤ ≡ ⊤ ; p ∨ ⊥ ≡ p . Goranko

  5. Transformation to DNF and CNF: example ( p ∧ ¬ r ) → ( p ↔ ¬ q ) ≡ ( p ∧ ¬ r ) → (( p → ¬ q ) ∧ ( ¬ q → p )) (eliminating ↔ ) ≡ ¬ ( p ∧ ¬ r ) ∨ (( ¬ p ∨ ¬ q ) ∧ ( ¬¬ q ∨ p )) (eliminating → ) ≡ ( ¬ p ∨ ¬¬ r ) ∨ (( ¬ p ∨ ¬ q ) ∧ ( q ∨ p )) (driving ¬ inside) ≡ ¬ p ∨ r ∨ (( ¬ p ∨ ¬ q ) ∧ ( q ∨ p )) For a DNF we further distribute ∧ over ∨ and simplify: ≡ ¬ p ∨ r ∨ ((( ¬ p ∨ ¬ q ) ∧ q ) ∨ (( ¬ p ∨ ¬ q ) ∧ p )) ≡ ¬ p ∨ r ∨ (( ¬ p ∧ q ) ∨ ( ¬ q ∧ q )) ∨ (( ¬ p ∧ p ) ∨ ( ¬ q ∧ p )) ≡ ¬ p ∨ r ∨ (( ¬ p ∧ q ) ∨ ⊥ ) ∨ ( ⊥ ∨ ( ¬ q ∧ p )) ≡ ¬ p ∨ r ∨ ( ¬ p ∧ q ) ∨ ( ¬ q ∧ p ). For a CNF we distribute ∨ over ∧ and simplify: ≡ ( ¬ p ∨ r ∨ ¬ p ∨ ¬ q ) ∧ ( ¬ p ∨ r ∨ q ∨ p ) ≡ ( ¬ p ∨ r ∨ ¬ q ) ∧ ( ⊤ ∨ r ∨ q ) ≡ ( ¬ p ∨ r ∨ ¬ q ) ∧ ⊤ ≡ ¬ p ∨ r ∨ ¬ q . (Note that this is a DNF, too.) Goranko

  6. The rule of Propositional Resolution A ∨ C , B ∨ ¬ C RES A ∨ B The formula A ∨ B is called a resolvent of A ∨ C and B ∨ ¬ C , denoted Res ( A ∨ C , B ∨ ¬ C ). Exercise : Show that the Resolution rule is logically sound. That is, if both premises are valid then the conclusion is valid. Moreover, RES preserves satisfiability: Exercise : Show that if the set of premises is (simultaneously) satisfiable, then it is satisfiable together with the conclusion. Goranko

  7. Clausal normal forms • A clause is essentially an elementary disjunction l 1 ∨ . . . ∨ l n , but written as a (possibly empty) set of literals { l 1 , . . . , l n } . • The empty clause {} is a clause containing no literals. • A unit clause is a clause containing only one literal. • A clausal form is a (possibly empty) set of clauses, written as a list: C 1 . . . C k . It represents the conjunction of these clauses. Thus, every CNF can be re-written in a clausal form, and therefore every propositional formula is equivalent to one in a clausal form. Example : the clausal form of the CNF-formula ( p ∨ ¬ q ∨ ¬ r ) ∧ ¬ p ∧ ( ¬ q ∨ r ) is { p , ¬ q , ¬ r }{¬ p }{¬ q , r } . Note that the empty clause {} is not satisfiable (being an empty disjunction), while the empty set of clauses ∅ is satisfied by any truth assignment (being an empty conjunction). Goranko

  8. Clausal Propositional Resolution rule The Propositional Resolution rule can be rewritten for clauses: { A 1 , . . . , C , . . . , A m } { B 1 , . . . , ¬ C , . . . , B n } CL − RES { A 1 , . . . , A m , B 1 , . . . , B n } . The clause { A 1 , . . . , A m , B 1 , . . . , B n } is called a resolvent of the clauses { A 1 , . . . , C , . . . , A m } and { B 1 , . . . , ¬ C , . . . , B n } . Example { p , q , ¬ r } {¬ q , ¬ r } { p , ¬ r , ¬ r } , {¬ p , q , ¬ r } { r } {¬ p , q } , {¬ p } { p } {} . Goranko

  9. Some remarks Note that two clauses can have more than one resolvent, e.g.: { p , ¬ q }{¬ p , q } { p , ¬ q }{¬ p , q } { p , ¬ p } , {¬ q , q } . However, it is wrong to apply the Propositional Resolution rule for both pairs of complementary literals simultaneously and obtain { p , ¬ q }{¬ p , q } {} . Sometimes, the resolvent can (and should) be simplified, by removing duplicated literals on the fly: { A 1 , . . . , C , C , . . . , A m } ⇒ { A 1 , . . . , C , . . . , A m } . For instance: { p , ¬ q , ¬ r }{ q , ¬ r } instead of { p , ¬ q , ¬ r }{ q , ¬ r } { p , ¬ r } { p , ¬ r , ¬ r } Goranko

  10. Propositional resolution as a deductive system The underlying idea of Propositional Resolution: in order to prove the validity of a logical consequence A 1 , . . . , A n | = B , show that there is no truth assignment which falsifies it, i.e., show that the formulae A 1 , . . . , A n and ¬ B cannot be satisfied simultaneously . That is done by transforming the formulae A 1 , . . . , A n and ¬ B to a clausal form, and then using repeatedly the Propositional Resolution rule in attempt to derive the empty clause {} . Since {} is not satisfiable, its derivation means that A 1 , . . . , A n and ¬ B cannot be satisfied together. Then, the logical consequence A 1 , . . . , A n | = B holds. Alternatively, after finitely many applications of the Propositional Resolution rule, no new applications of the rule remain possible. If the empty clause is not derived by then, it cannot be derived at all, and hence the A 1 , . . . , A n and ¬ B can be satisfied together, so the logical consequence A 1 , . . . , A n | = B does not hold. Goranko

  11. Propositional resolution: how to construct a satisfying assignment? Suppose the Propositional Resolution applied to a given input set of clauses ends with a set of non-empty clauses (such that no more clauses can be derived from it). Question: How to construct a satisfying assignment for that set of clauses? Goranko

  12. Propositional resolution derivation: Example 1 Check whether p → q , q → r | = p → r holds. First, transform p → q , q → r , ¬ ( p → r ) to clausal form: C 1 = {¬ p , q } , C 2 = {¬ q , r } , C 3 = { p } , C 4 = {¬ r } . Now, applying Propositional Resolution successively: C 5 = Res ( C 1 , C 3 ) = { q } ; C 6 = Res ( C 2 , C 5 ) = { r } ; C 7 = Res ( C 4 , C 6 ) = {} . The derivation of the empty clause completes the proof. Goranko

  13. Propositional resolution derivation: Example 2 Check whether ( ¬ p → q ) , ¬ r � p ∨ ( ¬ q ∧ ¬ r ) holds. First, transform ( ¬ p → q ) , ¬ r , ¬ ( p ∨ ( ¬ q ∧ ¬ r )) to clausal form: C 1 = { p , q } , C 2 = {¬ r } , C 3 = {¬ p } , C 4 = { q , r } . Now, applying Propositional Resolution successively: C 5 = Res ( C 1 , C 3 ) = { q } ; C 6 = Res ( C 2 , C 4 ) = { q } ; At this stage, no new applications of the Propositional Resolution rule are possible, hence the empty clause is not derivable. Therefore, ( ¬ p → q ) , ¬ r � � p ∨ ( ¬ q ∧ ¬ r ). A falsifying assignment can be extracted from the unit clauses in the final set: p : F , q : T , r : F . Goranko

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