Logic - Welcome to the UNC Department of Computer …lazebnik/fall11/lec11_logic.pdf ·  ·...

41
Logic Logic

Transcript of Logic - Welcome to the UNC Department of Computer …lazebnik/fall11/lec11_logic.pdf ·  ·...

Page 1: Logic - Welcome to the UNC Department of Computer …lazebnik/fall11/lec11_logic.pdf ·  · 2011-09-29What is logic?What is logic? ... rules for constructing valid sentences ...

LogicLogic

Page 2: Logic - Welcome to the UNC Department of Computer …lazebnik/fall11/lec11_logic.pdf ·  · 2011-09-29What is logic?What is logic? ... rules for constructing valid sentences ...

Knowledge-based agentsKnowledge based agents

Inference engine

Knowledge base

Domain-independent algorithms

Domain-specific content

• Knowledge base (KB) = set of sentences in a formal language• Declarative approach to building an agent (or other system):

– Tell it what it needs to know• Then it can ask itself what to do - answers should follow from the KB• Distinction between data and program• Fullest realization of this philosophy was in the field of expert

systems or knowledge-based systems in the 1970s and 1980ssystems or knowledge based systems in the 1970s and 1980s

Page 3: Logic - Welcome to the UNC Department of Computer …lazebnik/fall11/lec11_logic.pdf ·  · 2011-09-29What is logic?What is logic? ... rules for constructing valid sentences ...

What is logic?What is logic?

• Logic is a formal system for manipulating facts soLogic is a formal system for manipulating facts so that true conclusions may be drawn– “The tool for distinguishing between the true and the

false” – Averroes (12th cen.)• Syntax: rules for constructing valid sentences

– E.g., x + 2 ≥ y is a valid arithmetic sentence, ≥x2y + is not• Semantics: “meaning” of sentences, or relationship

b t l i l t d th l ldbetween logical sentences and the real world– Specifically, semantics defines truth of sentences

E g x + 2 ≥ y is true in a world where x = 5 and y = 7– E.g., x + 2 ≥ y is true in a world where x = 5 and y = 7

Page 4: Logic - Welcome to the UNC Department of Computer …lazebnik/fall11/lec11_logic.pdf ·  · 2011-09-29What is logic?What is logic? ... rules for constructing valid sentences ...

OverviewOverview

• Propositional logicPropositional logic• Inference rules and theorem proving• First order logicFirst order logic

Page 5: Logic - Welcome to the UNC Department of Computer …lazebnik/fall11/lec11_logic.pdf ·  · 2011-09-29What is logic?What is logic? ... rules for constructing valid sentences ...

Propositional logic: Syntax• Atomic sentence:

– A proposition symbol representing a true or false statementp p y p g• Negation:

– If P is a sentence, ¬P is a sentence• Conjunction:• Conjunction:

– If P and Q are sentences, P ∧ Q is a sentence• Disjunction:

– If P and Q are sentences, P ∨ Q is a sentence• Implication:

– If P and Q are sentences, P ⇒ Q is a sentenceIf P and Q are sentences, P ⇒ Q is a sentence• Biconditional:

– If P and Q are sentences, P ⇔ Q is a sentence

• ¬, ∧, ∨, ⇒, ⇔ are called logical connectives

Page 6: Logic - Welcome to the UNC Department of Computer …lazebnik/fall11/lec11_logic.pdf ·  · 2011-09-29What is logic?What is logic? ... rules for constructing valid sentences ...

Propositional logic: SemanticsPropositional logic: Semantics• A model specifies the true/false status of each p

proposition symbol in the knowledge base– E.g., P is true, Q is true, R is false– With three symbols there are 8 possible models and they can beWith three symbols, there are 8 possible models, and they can be

enumerated exhaustively

• Rules for evaluating truth with respect to a model:Rules for evaluating truth with respect to a model:¬P is true iff P is falseP ∧ Q is true iff P is true and Q is trueP ∨ Q is true iff P is true or Q is trueP ∨ Q is true iff P is true or Q is trueP ⇒ Q is true iff P is false or Q is trueP ⇔ Q is true iff P ⇒ Q is true and Q ⇒ P is true

Page 7: Logic - Welcome to the UNC Department of Computer …lazebnik/fall11/lec11_logic.pdf ·  · 2011-09-29What is logic?What is logic? ... rules for constructing valid sentences ...

Truth tablesTruth tables

• A truth table specifies the truth value of aA truth table specifies the truth value of a composite sentence for each possible assignments of truth values to its atoms

• The truth value of a more complex sentence canThe truth value of a more complex sentence can be evaluated recursively or compositionally

Page 8: Logic - Welcome to the UNC Department of Computer …lazebnik/fall11/lec11_logic.pdf ·  · 2011-09-29What is logic?What is logic? ... rules for constructing valid sentences ...

Logical equivalenceLogical equivalence• Two sentences are logically equivalent iff they are true in g y q y

same models

Page 9: Logic - Welcome to the UNC Department of Computer …lazebnik/fall11/lec11_logic.pdf ·  · 2011-09-29What is logic?What is logic? ... rules for constructing valid sentences ...

Validity satisfiabilityValidity, satisfiabilityA sentence is valid if it is true in all models,

e.g., True, A ∨¬A, A ⇒ A, (A ∧ (A ⇒ B)) ⇒ B

A sentence is satisfiable if it is true in some modelA sentence is satisfiable if it is true in some modele.g., A∨B, C

A sentence is unsatisfiable if it is true in no modelsA sentence is unsatisfiable if it is true in no modelse.g., A∧¬A

Page 10: Logic - Welcome to the UNC Department of Computer …lazebnik/fall11/lec11_logic.pdf ·  · 2011-09-29What is logic?What is logic? ... rules for constructing valid sentences ...

EntailmentEntailment

• Entailment means that a sentence follows fromEntailment means that a sentence follows from the premises contained in the knowledge base:

KB ╞ αKB ╞ α

• Knowledge base KB entails sentence α if and l if i t i ll d l h KB i tonly if α is true in all models where KB is true

– E.g., x = 0 entails x * y = 0Can α be true when KB is false?– Can α be true when KB is false?

• KB ╞ α iff (KB⇒ α) is valid• KB ╞ α iff (KB α) is unsatisfiable• KB ╞ α iff (KB ∧¬α) is unsatisfiable

Page 11: Logic - Welcome to the UNC Department of Computer …lazebnik/fall11/lec11_logic.pdf ·  · 2011-09-29What is logic?What is logic? ... rules for constructing valid sentences ...

InferenceInference

• Logical inference: a procedure for generatingLogical inference: a procedure for generating sentences that follow from a knowledge base KB

• An inference procedure is sound if whenever it pderives a sentence α, KB╞ α– A sound inference procedure can derive only true

sentences• An inference procedure is complete if whenever

KB╞ b d i d b th dKB╞ α, α can be derived by the procedure– A complete inference procedure can derive every

entailed sentenceentailed sentence

Page 12: Logic - Welcome to the UNC Department of Computer …lazebnik/fall11/lec11_logic.pdf ·  · 2011-09-29What is logic?What is logic? ... rules for constructing valid sentences ...

InferenceInference• How can we check whether a sentence α is entailed by KB?y• How about we enumerate all possible models of the KB

(truth assignments of all its symbols), and check that α is t i d l i hi h KB i t ?true in every model in which KB is true?– Is this sound?– Is this complete?– Is this complete?

• Problem: if KB contains n symbols, the truth table will be of size 2n

• Better idea: use inference rules, or sound procedures to generate new sentences or conclusions given the premisesin the KBin the KB

Page 13: Logic - Welcome to the UNC Department of Computer …lazebnik/fall11/lec11_logic.pdf ·  · 2011-09-29What is logic?What is logic? ... rules for constructing valid sentences ...

Inference rulesInference rules

• Modus PonensModus Ponens

αβα ,⇒ premises

ββ

conclusion

• And-elimination

αβα ∧

α

Page 14: Logic - Welcome to the UNC Department of Computer …lazebnik/fall11/lec11_logic.pdf ·  · 2011-09-29What is logic?What is logic? ... rules for constructing valid sentences ...

Inference rulesInference rules

• And-introductionAnd introduction

βα ,βα ∧

• Or-introduction

βαα∨ βα ∨

Page 15: Logic - Welcome to the UNC Department of Computer …lazebnik/fall11/lec11_logic.pdf ·  · 2011-09-29What is logic?What is logic? ... rules for constructing valid sentences ...

Inference rulesInference rules

• Double negative eliminationDouble negative elimination

ᬬαᬬ

• Unit resolution

αββα ¬∨ ,

α

Page 16: Logic - Welcome to the UNC Department of Computer …lazebnik/fall11/lec11_logic.pdf ·  · 2011-09-29What is logic?What is logic? ... rules for constructing valid sentences ...

ResolutionResolution

γββα ∨¬∨ γββα ⇒∨γα

γββα∨

∨¬∨ ,γα

γββα∨

⇒∨ ,or

• Example:α: “The weather is dry”β: “The weather is rainy”γ: “I carry an umbrella”

Page 17: Logic - Welcome to the UNC Department of Computer …lazebnik/fall11/lec11_logic.pdf ·  · 2011-09-29What is logic?What is logic? ... rules for constructing valid sentences ...

Resolution is complete

γαγββα

∨∨¬∨ ,

• To prove KB╞ α, assume KB ∧ ¬ α and derive a t di ti

γα ∨

contradiction• Rewrite KB ∧ ¬ α as a conjunction of clauses,

or disjunctions of literalsor disjunctions of literals– Conjunctive normal form (CNF)

• Keep applying resolution to clauses that contain complementary literals and adding resulting clauses to the list– If there are no new clauses to be added, then KB does not entail α,– If two clauses resolve to form an empty clause, we have a

contradiction and KB╞ α

Page 18: Logic - Welcome to the UNC Department of Computer …lazebnik/fall11/lec11_logic.pdf ·  · 2011-09-29What is logic?What is logic? ... rules for constructing valid sentences ...

Complexity of inferenceComplexity of inference

• Propositional inference is co-NP-completePropositional inference is co-NP-complete– Complement of the SAT problem: α ╞ β if and

only if the sentence α ∧ ¬ β is unsatisfiableonly if the sentence α ∧ ¬ β is unsatisfiable– Every known inference algorithm has worst-

case exponential running timecase exponential running time• Efficient inference possible for restricted

casescases

Page 19: Logic - Welcome to the UNC Department of Computer …lazebnik/fall11/lec11_logic.pdf ·  · 2011-09-29What is logic?What is logic? ... rules for constructing valid sentences ...

Definite clausesDefinite clauses

• A definite clause is a disjunction with exactlyA definite clause is a disjunction with exactly one positive literal

• Equivalent to (P1 ∧ … ∧ Pn) ⇒ Qq ( 1 n) Q

premise or body conclusion or head

• Basis of logic programming (Prolog)

or head

as s o og c p og a g ( o og)• Efficient (linear-time) complete inference through

forward chaining and backward chainingg g

Page 20: Logic - Welcome to the UNC Department of Computer …lazebnik/fall11/lec11_logic.pdf ·  · 2011-09-29What is logic?What is logic? ... rules for constructing valid sentences ...

Forward chainingForward chaining

• Idea: find any rule whose premises are satisfied inIdea: find any rule whose premises are satisfied in the KB, add its conclusion to the KB, and keep going until query is found

Page 21: Logic - Welcome to the UNC Department of Computer …lazebnik/fall11/lec11_logic.pdf ·  · 2011-09-29What is logic?What is logic? ... rules for constructing valid sentences ...

Forward chaining exampleForward chaining example

Page 22: Logic - Welcome to the UNC Department of Computer …lazebnik/fall11/lec11_logic.pdf ·  · 2011-09-29What is logic?What is logic? ... rules for constructing valid sentences ...

Forward chaining exampleForward chaining example

Page 23: Logic - Welcome to the UNC Department of Computer …lazebnik/fall11/lec11_logic.pdf ·  · 2011-09-29What is logic?What is logic? ... rules for constructing valid sentences ...

Forward chaining exampleForward chaining example

Page 24: Logic - Welcome to the UNC Department of Computer …lazebnik/fall11/lec11_logic.pdf ·  · 2011-09-29What is logic?What is logic? ... rules for constructing valid sentences ...

Forward chaining exampleForward chaining example

Page 25: Logic - Welcome to the UNC Department of Computer …lazebnik/fall11/lec11_logic.pdf ·  · 2011-09-29What is logic?What is logic? ... rules for constructing valid sentences ...

Forward chaining exampleForward chaining example

Page 26: Logic - Welcome to the UNC Department of Computer …lazebnik/fall11/lec11_logic.pdf ·  · 2011-09-29What is logic?What is logic? ... rules for constructing valid sentences ...

Forward chaining exampleForward chaining example

Page 27: Logic - Welcome to the UNC Department of Computer …lazebnik/fall11/lec11_logic.pdf ·  · 2011-09-29What is logic?What is logic? ... rules for constructing valid sentences ...

Forward chaining exampleForward chaining example

Page 28: Logic - Welcome to the UNC Department of Computer …lazebnik/fall11/lec11_logic.pdf ·  · 2011-09-29What is logic?What is logic? ... rules for constructing valid sentences ...

Forward chaining exampleForward chaining example

Page 29: Logic - Welcome to the UNC Department of Computer …lazebnik/fall11/lec11_logic.pdf ·  · 2011-09-29What is logic?What is logic? ... rules for constructing valid sentences ...

Backward chainingBackward chainingIdea: work backwards from the query q:q y q

to prove q by BC,check if q is known already, or

b BC ll i f l l diprove by BC all premises of some rule concluding q

Page 30: Logic - Welcome to the UNC Department of Computer …lazebnik/fall11/lec11_logic.pdf ·  · 2011-09-29What is logic?What is logic? ... rules for constructing valid sentences ...

Backward chaining exampleBackward chaining example

Page 31: Logic - Welcome to the UNC Department of Computer …lazebnik/fall11/lec11_logic.pdf ·  · 2011-09-29What is logic?What is logic? ... rules for constructing valid sentences ...

Backward chaining exampleBackward chaining example

Page 32: Logic - Welcome to the UNC Department of Computer …lazebnik/fall11/lec11_logic.pdf ·  · 2011-09-29What is logic?What is logic? ... rules for constructing valid sentences ...

Backward chaining exampleBackward chaining example

Page 33: Logic - Welcome to the UNC Department of Computer …lazebnik/fall11/lec11_logic.pdf ·  · 2011-09-29What is logic?What is logic? ... rules for constructing valid sentences ...

Backward chaining exampleBackward chaining example

Page 34: Logic - Welcome to the UNC Department of Computer …lazebnik/fall11/lec11_logic.pdf ·  · 2011-09-29What is logic?What is logic? ... rules for constructing valid sentences ...

Backward chaining exampleBackward chaining example

Page 35: Logic - Welcome to the UNC Department of Computer …lazebnik/fall11/lec11_logic.pdf ·  · 2011-09-29What is logic?What is logic? ... rules for constructing valid sentences ...

Backward chaining exampleBackward chaining example

Page 36: Logic - Welcome to the UNC Department of Computer …lazebnik/fall11/lec11_logic.pdf ·  · 2011-09-29What is logic?What is logic? ... rules for constructing valid sentences ...

Backward chaining exampleBackward chaining example

Page 37: Logic - Welcome to the UNC Department of Computer …lazebnik/fall11/lec11_logic.pdf ·  · 2011-09-29What is logic?What is logic? ... rules for constructing valid sentences ...

Backward chaining exampleBackward chaining example

Page 38: Logic - Welcome to the UNC Department of Computer …lazebnik/fall11/lec11_logic.pdf ·  · 2011-09-29What is logic?What is logic? ... rules for constructing valid sentences ...

Backward chaining exampleBackward chaining example

Page 39: Logic - Welcome to the UNC Department of Computer …lazebnik/fall11/lec11_logic.pdf ·  · 2011-09-29What is logic?What is logic? ... rules for constructing valid sentences ...

Backward chaining exampleBackward chaining example

Page 40: Logic - Welcome to the UNC Department of Computer …lazebnik/fall11/lec11_logic.pdf ·  · 2011-09-29What is logic?What is logic? ... rules for constructing valid sentences ...

Forward vs backward chainingForward vs. backward chaining

• Forward chaining is data-driven, automaticForward chaining is data driven, automatic processing– May do lots of work that is irrelevant to the goal

• Backward chaining is goal-driven, appropriate g g , pp pfor problem-solving– Complexity can be much less than linear in size of KB

Page 41: Logic - Welcome to the UNC Department of Computer …lazebnik/fall11/lec11_logic.pdf ·  · 2011-09-29What is logic?What is logic? ... rules for constructing valid sentences ...

SummarySummary• Logical agents apply inference to a knowledge base to g g pp y g

derive new information and make decisions• Basic concepts of logic:

– syntax: formal structure of sentences– semantics: truth of sentences wrt models– entailment: necessary truth of one sentence given another– inference: deriving sentences from other sentences– soundness: derivations produce only entailed sentences– completeness: derivations can produce all entailed sentences– completeness: derivations can produce all entailed sentences

• Resolution is complete for propositional logic• Forward, backward chaining are linear-time, complete for g p

definite clauses