+ All Categories
Home > Documents > Chapter 5

Chapter 5

Date post: 23-Feb-2016
Category:
Upload: aiden
View: 48 times
Download: 0 times
Share this document with a friend
Description:
King Saud University College of Computer and Information Sciences Information Technology Department IT422 - Intelligent systems . Chapter 5. Knowledge Representation & Reasoning (Part 1) Propositional Logic. Knowledge Representation & Reasoning. Introduction - PowerPoint PPT Presentation
Popular Tags:
72
Chapter 5 Knowledge Representation & Reasoning (Part 1) Propositional Logic King Saud University College of Computer and Information Sciences Information Technology Department IT422 - Intelligent systems
Transcript
Page 1: Chapter 5

Chapter 5

Knowledge Representation & Reasoning (Part 1)

Propositional Logic

King Saud UniversityCollege of Computer and Information Sciences Information Technology DepartmentIT422 - Intelligent systems

Page 2: Chapter 5

2

Knowledge Representation & Reasoning

Introduction

How can we formalize our knowledge about the world so that:

• We can reason about it?

• We can do sound inference?

• We can prove things?

• We can plan actions?

• We can understand and explain things?

Page 3: Chapter 5

3

Knowledge Representation & Reasoning

Introduction

Objectives of knowledge representation and reasoning are:

• form representations of the world.

• use a process of inference to derive new representations about the world.

• use these new representations to deduce what to do.

Page 4: Chapter 5

4

Knowledge Representation & Reasoning

Introduction

Some definitions:• Knowledge base: set of sentences. Each sentence is expressed

in a language called a knowledge representation language.

• Sentence: a sentence represents some assertion about the world.

• Inference: Process of deriving new sentences from old ones.

Page 5: Chapter 5

5

Knowledge Representation & Reasoning

Introduction

Declarative vs. procedural approach:

• Declarative approach is an approach to system building that consists in expressing the knowledge of the environment in the form of sentences using a representation language.

• Procedural approach encodes desired behaviors directly as a program code.

Page 6: Chapter 5

6

Knowledge Representation & Reasoning

• Example: The Wumpus world

Page 7: Chapter 5

7

About The Wumpus• The Wumpus world was first written as a computer game in

the 70ies;• the wumpus world is a cave consisting of rooms connected by

passageways;• the terrible wumpus is a beast that eats anyone who enters its

room;• the wumpus can be shot by an agent, but the agent has only

one arrow;• some rooms contain bottomless pits that will trap anyone

who enters it;• the agent is in this cave to look for gold.

Page 8: Chapter 5

8

Knowledge Representation & Reasoning

Environment• Squares adjacent to wumpus are

smelly.• Squares adjacent to pit are

breezy.• Glitter if and only if gold is in the

same square.• Shooting kills the wumpus if you

are facing it.• Shooting uses up the only arrow.• Grabbing picks up the gold if in

the same square.• Releasing drops the gold in the

same square.

Goals: Get gold back to the start without entering wumpus square.

Percepts: Breeze, Glitter, Smell.

Actions: Left turn, Right turn, Forward, Grab, Release, Shoot.

Page 9: Chapter 5

9

Knowledge Representation & Reasoning

The Wumpus world

• Is the world deterministic?Yes: outcomes are exactly specified.

• Is the world fully accessible?No: only local perception of square you are in.

• Is the world static?Yes: Wumpus and Pits do not move.

• Is the world discrete?Yes.

Page 10: Chapter 5

10

Knowledge Representation & Reasoning

A

Exploring Wumpus World

Page 11: Chapter 5

11

Knowledge Representation & Reasoning

okA

Ok because:

Haven’t fallen into a pit.

Haven’t been eaten by a Wumpus.

Exploring Wumpus World

Page 12: Chapter 5

12

Knowledge Representation & Reasoning

OK

OK OK

OK since

no Stench, no Breeze,

neighbors are safe (OK).

A

Exploring Wumpus World

Page 13: Chapter 5

13

Knowledge Representation & Reasoning

We move and smell a stench.

A

Exploring Wumpus World

OKstench

OK OK

Page 14: Chapter 5

14

Knowledge Representation & Reasoning

W?

OKstench

W?

OK OK

We can infer the following.

Note: square (1,1) remains OK. A

Exploring Wumpus World

Page 15: Chapter 5

15

Knowledge Representation & Reasoning

W?

OKstench

W?

OKOKbreeze

A

Move and feel a breeze

What can we conclude?

Exploring Wumpus World

Page 16: Chapter 5

16

Knowledge Representation & Reasoning

W?

OKstench

P?W?

OKOKbreeze

P?

And what about the other P? and W? squares

But, can the 2,2 square really have either a Wumpus or a pit? ANO!

Exploring Wumpus World

Page 17: Chapter 5

17

Knowledge Representation & Reasoning

W

OKstench

P?W?

OKOKbreeze

PA

Exploring Wumpus World

Page 18: Chapter 5

18

Knowledge Representation & Reasoning

W OK

OKstench

OK OK

OKOKbreeze

P

A

Exploring Wumpus World

Page 19: Chapter 5

19

Knowledge Representation & Reasoning

W

OKStench

OK

OKOKBreeze

P

A

A…And the exploration continues onward until the gold is found. …

Exploring Wumpus World

Page 20: Chapter 5

20

Knowledge Representation & Reasoning

Breeze in (1,2) and (2,1)

no safe actions.

Assuming pits uniformly distributed, (2,2) is most likely to have a pit.

A tight spot

Page 21: Chapter 5

21

Knowledge Representation & Reasoning

W?

W?

Smell in (1,1) cannot move.

Can use a strategy of coercion:– shoot straight ahead;– wumpus was there

dead safe.– wumpus wasn't there

safe.

Another tight spot

Page 22: Chapter 5

22

Knowledge Representation & Reasoning

Fundamental property of logical reasoning:

• In each case where the agent draws a conclusion from the available information, that conclusion is guaranteed to be correct if the available information is correct.

Page 23: Chapter 5

23

Knowledge Representation & Reasoning

Fundamental concepts of logical representation:• Logics are formal languages for representing information such that

conclusions can be drawn.• Each sentence is defined by a syntax and a semantic.• Syntax defines the sentences in the language. It specifies well formed

sentences.• Semantics define the ``meaning'' of sentences;• i.e., in logic it defines the truth of a sentence in a possible world.

For example, in the language of arithmetic:x + 2 y is a sentence.x + y > is not a sentence.x + 2 y is true if the number x+2 is no less than the number y.x + 2 y is true in a world where x = 7, y =1.x + 2 y is false in a world where x = 0, y= 6.

Page 24: Chapter 5

24

Knowledge Representation & Reasoning

Fundamental concepts of logical representation:• Model: This word is used instead of “possible world” for the sake of precision.

m is a model of a sentence α means α is true in model mM(α) means the set of all models of α

• Definition: A model is a mathematical abstraction that simply fixes the truth or falsehood of every relevant sentence.

• Example: x is the number of men and y is the number of women sitting at a table playing bridge.

x+ y = 4 is a sentence which is true when the total number is four.

In this case the Model is a possible assignment of numbers to the variables x and y. Each assignment fixes the truth of any sentence whose variables are x and y.

Page 25: Chapter 5

25

Knowledge Representation & Reasoning

Potential models of the Wumpus world

Following the wumpus-world rules, in which models the KB corresponding to the observations of nothing in [1,1] and breeze in [2,1] is true?

Page 26: Chapter 5

26

Knowledge Representation & Reasoning

Potential models of the Wumpus world

Page 27: Chapter 5

27

Knowledge Representation & Reasoning

Fundamental concepts of logical representation:

• Entailment: Logical reasoning requires the relation of logical entailment between sentences. « a sentence follows ⇒logically from another sentence ».

Mathematical notation: α β (α entails the sentence β)╞

• Formal definition: α β if and only if ╞ in every model in which α is true, β is also true. (The truth of α is contained in the truth of β).

Page 28: Chapter 5

28

Entailment• α β if and only if ╞ in every model in which α is true, β is also true. (The

truth of α is contained in the truth of β).

Models

β = T

α = T

Page 29: Chapter 5

29

Entailment

Logical Representation

World

SentencesKB

FactsSem

antics

Sentences

Semantics

FactsFollows

Entail

Logical reasoning should ensure that the new configurations represent aspects of the world that actually follow from the aspects that the old configurations represent.

Page 30: Chapter 5

30

Knowledge Representation & Reasoning

Entailment

KB: breeze in [2,1]α1 : [1,2] is safe

In every model in which KB is True, α1 is also True, therefore:

KB╞ α1

Page 31: Chapter 5

31

Knowledge Representation & Reasoning

Entailment

KB: breeze in [2,1]α2 : [2,2] is safe

There are models in which KB is True, and α2 is not True, therefore:

KB ╞ α2

Page 32: Chapter 5

32

Knowledge Representation & Reasoning

• The previous examples not only illustrate entailment, but also shows how entailment can be applied to derive conclusions or to carry out logical inference

• The inference algorithm we used, is called Model Checking • Model checking: Enumerates all possible models to check

that α is true in all models in which KB is true.

Mathematical notation: KB α

Where: i is the inference algorithm used. The notation says: α is derived from KB by i or i derives α from KB.

i

Page 33: Chapter 5

33

Knowledge Representation & Reasoning

• To understand entailment and inference:– All consequence of KB is a

haystack– α is a needle

• Entailment: The needle in the haystack• Inference:

Finding the needle

Page 34: Chapter 5

34

Knowledge Representation & Reasoning

• An inference procedure can do two things:– Given KB, generate new sentence purported to be

entailed by KB.– Given KB and , report whether or not is entailed by KB.

• Sound or truth preserving: inference algorithm that derives only entailed sentences.– i is sound if: – Whenever KB├ i α, it is also true that KB α ╞

• Completeness: an inference algorithm is complete, if it can derive any sentence that is entailed.– i is complete if: – Whenever KB α , it is also true that KB╞ ├ i α

Page 35: Chapter 5

35

Knowledge Representation & Reasoning

Explaining more Soundness and completeness

• Soundness: if the system proves that something is true, then it really is true. The system doesn’t derive contradictions

• Completeness: if something is really true, it can be proven using the system. The system can be used to derive all the true mathematical statements one by one

Page 36: Chapter 5

36

Knowledge Representation & ReasoningPropositional Logic

Propositional logic is the simplest logic.• Syntax

• Semantic

• Entailment

Page 37: Chapter 5

37

Knowledge Representation & ReasoningPropositional Logic

Syntax: It defines the allowable sentences.1. Atomic sentence:

– single proposition symbol.• uppercase names for symbols must have some

mnemonic value: example W1,3 to say the Wumpus is in [1,3].

– True and False: proposition symbols with fixed meaning.2. Complex sentences:

– they are constructed from simpler sentences using logical connectives.

Page 38: Chapter 5

38

Knowledge Representation & ReasoningPropositional Logic

Logical connectives: • (NOT) negation.• (AND) conjunction, operands are conjuncts.• (OR), operands are disjuncts.• ⇒ (Implication or conditional) It is also known as rule or if-

then statement.• if and only if (biconditional).

Page 39: Chapter 5

39

Knowledge Representation & ReasoningPropositional Logic

• Logical constants TRUE and FALSE are sentences.• Proposition symbols P1, P2 etc. are sentences.• Symbols P1 and negated symbols P1 are called literals.• If S is a sentence, S is a sentence (NOT).• If S1 and S2 is a sentence, S1 S2 is a sentence (AND).• If S1 and S2 is a sentence, S1 S2 is a sentence (OR).• If S1 and S2 is a sentence, S1 S2 is a sentence (Implies).• If S1 and S2 is a sentence, S1 S2 is a sentence (Equivalent).

Page 40: Chapter 5

40

Knowledge Representation & ReasoningPropositional Logic

A BNF(Backus-Naur Form) grammar of sentences in propositional Logic is defined by the following rules:

Sentence → AtomicSentence │ComplexSentence AtomicSentence → True │ False │ Symbol

Symbol → P │ Q │ R … ComplexSentence → Sentence

│(Sentence Sentence)│(Sentence Sentence)│(Sentence Sentence)│(Sentence Sentence)

Page 41: Chapter 5

41

Knowledge Representation & ReasoningPropositional Logic

Order of precedenceFrom highest to lowest:

parenthesis ( Sentence )– NOT – AND – OR – Implies – Equivalent

• Special cases: A B C no parentheses are needed• What about A B C???

Page 42: Chapter 5

42

Knowledge Representation & Reasoning

Most sentences are sometimes true. P Q

Some sentences are always true (valid). P P

Some sentences are never true (unsatisfiable). P P

P Q P P Q P Q P Q P Q False False True False False True TrueFalse True True False True True FalseTrue False False False True False FalseTrue True False True True True True4

Mod

els

Sentences

P Q is True in 3 models: P = F & Q =TP = T & Q = FP = T & Q = T

Page 43: Chapter 5

43

Knowledge Representation & Reasoning

Implication: P Q

“If P is True, then Q is true; otherwise I’m making no claims about the truth of Q.” (Or: P Q is equivalent to Q)

Under this definition, the following statement is true

Pigs_fly Everyone_gets_an_A

Since “Pigs_Fly” is false, the statement is true irrespective of the truth of “Everyone_gets_an_A”. [Or is it? Correct inference only when “Pigs_Fly” is known to be false.]

P Q P QFalse False TrueFalse True TrueTrue False FalseTrue True True

Page 44: Chapter 5

44

Knowledge Representation & Reasoning

Propositional Inference:

Using Enumeration Method (Model checking)

• Let and KB =( C) B C)• Is it the case that KB

╞ ?• Check all possible

models -- must be true whenever KB is true.

A B CKB

( C) B C)

False False False False False

False False True False False

False True False False True

False True True True True

True False False True True

True False True False True

True True False True True

True True True True True

Page 45: Chapter 5

45

Knowledge Representation & Reasoning

A B CKB

( C) B C)

False False False False False

False False True False False

False True False False True

False True True True True

True False False True True

True False True False True

True True False True True

True True True True True

Page 46: Chapter 5

46

Knowledge Representation & Reasoning

A B CKB

( C) B C)

False False False False False

False False True False False

False True False False True

False True True True True

True False False True True

True False True False True

True True False True True

True True True True True

KB ╞ α

Page 47: Chapter 5

47

Knowledge Representation & Reasoning

Propositional Logic: Proof methods

1. Model checking– Truth table enumeration (sound and complete for

propositional logic).– For n symbols, the time complexity is O(2n).– Need a smarter way to do inference

2. Application of inference rules– Legitimate (sound) generation of new sentences from old.– Proof = a sequence of inference rule applications. Can use inference rules as operators in a standard search

algorithm. How?

Page 48: Chapter 5

48

Knowledge Representation & Reasoning

Some related concepts: Validity and Satisfiability• A sentence is valid (a tautology) if it is true in all models

e.g., True, A ¬A, A A, • Validity is connected to inference via the Deduction Theorem:

KB α if and only if (╞ KB α) is valid• A sentence is satisfiable if it is true in some model

e.g., A B• A sentence is unsatisfiable if it is false in all models

e.g., A ¬A• Satisfiability is connected to inference via the following:

KB α if and only if (╞ KB ¬α) is unsatisfiable(there is no model for which KB=true and α is false)

Page 49: Chapter 5

49

Knowledge Representation & Reasoning

Propositional Logic: Inference rules

An inference rule is sound if the conclusion is true in all cases where the premises are true.

Premise_____ Conclusion

Page 50: Chapter 5

50

Knowledge Representation & Reasoning

Propositional Logic: An inference rule: Modus Ponens

• From an implication and the premise of the implication, you can infer the conclusion.

Premise___________ Conclusion

Example:“raining implies soggy courts”, “raining”Infer: “soggy courts”

Page 51: Chapter 5

51

Knowledge Representation & Reasoning

Propositional Logic: An inference rule: Modus Tollens

• From an implication and the premise of the implication, you can infer the conclusion.

¬ Premise___________ ¬ Conclusion

Example:“raining implies soggy courts”, “courts not soggy”Infer: “not raining”

Page 52: Chapter 5

52

Knowledge Representation & Reasoning

Propositional Logic: An inference rule: AND elimination

• From a conjunction, you can infer any of the conjuncts.

1 2 … n Premise_______________

i Conclusion

• Question: show that ‘Modus Ponens’ and ‘And’ Elimination are sound?

Page 53: Chapter 5

53

Knowledge Representation & Reasoning

Propositional Logic: other inference rules

• And-Introduction 1, 2, …, n Premise_______________

1 2 … n Conclusion

• Double Negation Premise

_______ Conclusion

Page 54: Chapter 5

54

Knowledge Representation & Reasoning

Propositional Logic: Equivalence rules• Two sentences are logically equivalent iff they are true in the same

models: α ≡ ß iff α β and β α.╞ ╞

Page 55: Chapter 5

55

Knowledge Representation & Reasoning

Page 56: Chapter 5

56

Knowledge Representation & Reasoning

Inference in Wumpus World Let Si,j be true if there is a stench in cell i,j Let Bi,j be true if there is a breeze in cell i,j Let Wi,j be true if there is a Wumpus in cell i,jGiven:1. ¬B1,1 observation 2. B1,1 (P1,2 P2,1) from Wumpus World rulesLet’s make some inferences:

1. (B1,1 (P1,2 P2,1)) ((P1,2 P2,1) B1,1 ) (By definition of the biconditional)

2. (P1,2 P2,1) B1,1 (And-elimination)3. ¬B1,1 ¬(P1,2 P2,1) (equivalence with contrapositive)4. ¬(P1,2 P2,1) (modus ponens)5. ¬P1,2 ¬P2,1 (DeMorgan’s rule)6. ¬P1,2 , ¬ P2,1(And Elimination)

2

1 OK1 2

OK

OK?

?

Page 57: Chapter 5

57

Knowledge Representation & Reasoning Inference in Wumpus World

Percept SentencesS1,1 B1,1

S2,1 B1,2

S1,2 B2,1

Environment KnowledgeR1: S1,1 W1,1 W2,1 W1,2

R2: S2,1 W1,1 W2,1 W2,2 W3,1

R3: B1,1 P1,1 P2,1 P1,2

R5: B1,2 P1,1 P1,2 P2,2 P1,3

...

Some inferences:Apply Modus Ponens to R1

Add to KBW1,1 W2,1 W1,2

Apply to this AND-EliminationAdd to KB

W1,1

W2,1

W1,2

Initial KB

Page 58: Chapter 5

58

Knowledge Representation & Reasoning Inference in Wumpus World

B1,2 P1,1 P2,2 P1,3 (From Wumpus world rules)(B1,2 P1,1 P2,2P1,3 ) (P1,1 P2,2 P1,3 B1,2) (Biconditional

elimination) (P1,1 P2,2 P1,3 B1,2) (And-Elimination) ¬B1,2 ¬ (P1,1 P2,2 P1,3 ) (Contraposition) ¬B1,2 ¬ P1,1 ¬ P2,2 ¬ P1,3 (De Morgan) • Recall that when we were at (1,2) we could not decide

on a safe move, so we backtracked, and explored (2,1), which yielded ¬B1,2

Using (¬B1,2 ¬P1,1 ¬P1,3 ¬P2,2 ) & ¬B1,2 this yields to:¬P1,1 ¬P1,3 ¬P2,2 (Modes Ponens) ¬P1,1 , ¬P1,3 , ¬P2,2 (And-Elimination)

• Now we can consider the implications of B2,1.

3 W?

2S P?

W?1 OK B P?

1 2 3

Page 59: Chapter 5

59

Knowledge Representation & Reasoning

1. B2,1 (P1,1 P2,2 P3,1)2. B2,1 (P1,1 P2,2 P3,1)(P1,1 P2,2 P3,1) B2,1 (biconditional Elimination)3. B2,1 (P1,1 P2,2 P3,1) (And-Elimination) + B2,14. P1,1 P2,2 P3,1 (modus ponens)5. P1,1 P3,1 (resolution rule because no pit in (2,2)

¬ P2,2)6. P3,1 (resolution rule because no pit in (1,1) ¬

P1,1)

• The resolution rule: if there is a pit in (1,1) or (3,1), and it’s not in (1,1), then it’s in (3,1).

P1,1 P3,1, ¬P1,1

P3,1

Page 60: Chapter 5

60

Knowledge Representation & Reasoning

Resolution

Unit Resolution inference rule:l1 … lk, m

l1 … li-1 li+1 … lk

where li and m are complementary literals.

Page 61: Chapter 5

61

Knowledge Representation & Reasoning

Resolution

Full resolution inference rule:l1 … lk, m1 … mn

l1 … li-1li+1 …lkm1…mj-1mj+1... mn

where li and m are complementary literals.

Page 62: Chapter 5

62

Knowledge Representation & Reasoning

ResolutionFor simplicity let’s consider clauses of length two:

l1 l2, ¬l2 l3

l1 l3

To derive the soundness of resolution consider the values l2 can take:• If l2 is True, then since we know that ¬l2 l3 holds,

it must be the case that l3 is True.• If l2 is False, then since we know that l1 l2 holds,

it must be the case that l1 is True.

Page 63: Chapter 5

63

Knowledge Representation & Reasoning

Resolution1. Properties of the resolution rule:

• Sound• Complete (yields to a complete inference algorithm).

2. The resolution rule forms the basis for a family of complete inference algorithms.

3. Resolution rule is used to either confirm or refute a sentence but it cannot be used to enumerate true sentences.

Page 64: Chapter 5

64

Knowledge Representation & Reasoning

Resolution

4. Resolution can be applied only to disjunctions of literals. How can it lead to a complete inference procedure for all propositional logic?

5. Turns out any knowledge base can be expressed as a conjunction of disjunctions (conjunctive normal form, CNF).

E.g., (A ¬B) (B ¬C ¬D)

Page 65: Chapter 5

65

Knowledge Representation & Reasoning

Resolution: Inference procedure

6. Inference procedures based on resolution work by using the principle of proof by contradiction:

To show that KB ╞ α we show that (KB ¬α) is unsatisfiable

The process: 1. convert KB ¬α to CNF 2. resolution rule is applied to the resulting clauses.

Page 66: Chapter 5

66

Knowledge Representation & Reasoning

Resolution: Inference procedure

Page 67: Chapter 5

67

Knowledge Representation & Reasoning

Resolution: Inference procedureExample of proof by contradiction

• KB = (B1,1 (P1,2 P2,1)) ¬ B1,1

• α = ¬P1,2

Question: convert (KB ¬α) to CNF

¬ αKB

Empty Clause

Page 68: Chapter 5

68

Knowledge Representation & Reasoning

Inference for Horn clauses. Definite clause: a disjunction of literals of which exactly one is

positive. Example: (L1,1 v ¬Breeze v B1,1) , so all definite clauses are Horn clauses

. Goal clauses: clauses with no positive litterals.

. Horn Form (special form of CNF) KB = conjunction of Horn clauses Horn clause = propositional symbol; or (conjunction of symbols) symbol⇒ e.g., C ( B ⇒ A) (C D ⇒ B)Modus Ponens is a natural way to make inference in Horn KBs

Page 69: Chapter 5

69

Knowledge Representation & Reasoning

Inference for Horn clauses

α1, … ,αn, α1 … αn ⇒ β

β

Successive application of modus ponens leads to algorithms that are sound and complete, and run in linear time.

Page 70: Chapter 5

70

Knowledge Representation & Reasoning

Inference for Horn clauses: Forward Chaining• Idea: fire any rule whose premises are satisfied in the KB and

add its conclusion to the KB, until query is found.• Forward chaining is sound and complete for horn

knowledge bases

Page 71: Chapter 5

71

Knowledge Representation & Reasoning

Inference for Horn clauses: Backward Chaining

• Idea: work backwards from the query q:

check if q is known already, or prove by backward chaining all premises of

some rule concluding q.

Avoid loops:

check if new subgoal is already on the goal stack

Avoid repeated work: check if new subgoal has already been proved true, or

has already failed.

Page 72: Chapter 5

72

Knowledge Representation & Reasoning

Summary• Logical agents apply inference to a knowledge base to derive new information and make

decisions.

• Basic concepts of logic:– Syntax: formal structure of sentences.– Semantics: truth of sentences in possible world or models.– Entailment: necessary truth of one sentence given another.– Inference: process of deriving new sentences from old ones.– Soundness: derivations produce only entailed sentences.– Completeness: derivations can produce all entailed sentences.– Inference rules: patterns of sound inference used to find proofs.– Fwd chaining and Bkw chaining: natural reasoning algorithms for KB in Horn Form.

• Truth table method is sound and complete for propositional logic but Cumbersome in most cases.

• Application of inference rules is another alternative to perform entailment.


Recommended