Logical agents. Chapter 7. Chapter 7 1

Similar documents
CS 380: ARTIFICIAL INTELLIGENCE PREDICATE LOGICS. Santiago Ontañón

Logical agents. Chapter 7. Chapter 7 1

TDT4136 Logic and Reasoning Systems

Revised by Hankui Zhuo, March 21, Logical agents. Chapter 7. Chapter 7 1

CS 380: ARTIFICIAL INTELLIGENCE

Last update: March 4, Logical agents. CMSC 421: Chapter 7. CMSC 421: Chapter 7 1

Logical Agents. Outline

Artificial Intelligence

A simple knowledge-based agent. Logical agents. Outline. Wumpus World PEAS description. Wumpus world characterization. Knowledge bases.

Artificial Intelligence

Lecture 6: Knowledge 1

Intelligent Agents. Pınar Yolum Utrecht University

Logical Agents. Chapter 7

Logical Agents: Propositional Logic. Chapter 7

EE562 ARTIFICIAL INTELLIGENCE FOR ENGINEERS

7. Logical Agents. COMP9414/ 9814/ 3411: Artificial Intelligence. Outline. Knowledge base. Models and Planning. Russell & Norvig, Chapter 7.

Propositional inference, propositional agents

Lecture 7: Logical Agents and Propositional Logic

Chapter 7 R&N ICS 271 Fall 2017 Kalev Kask

Logical Agents. Outline

CS:4420 Artificial Intelligence

Logical Inference. Artificial Intelligence. Topic 12. Reading: Russell and Norvig, Chapter 7, Section 5

Proof Methods for Propositional Logic

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

Inf2D 06: Logical Agents: Knowledge Bases and the Wumpus World

Logical Agents. Chapter 7

Introduction to Artificial Intelligence. Logical Agents

Title: Logical Agents AIMA: Chapter 7 (Sections 7.4 and 7.5)

Artificial Intelligence Chapter 7: Logical Agents

Kecerdasan Buatan M. Ali Fauzi

Class Assignment Strategies

Logical Agent & Propositional Logic

Logic. proof and truth syntacs and semantics. Peter Antal

Propositional Logic: Methods of Proof (Part II)

Propositional Logic: Methods of Proof. Chapter 7, Part II

Logical Agent & Propositional Logic

CS 771 Artificial Intelligence. Propositional Logic

Propositional Logic: Methods of Proof (Part II)

Outline. Logic. Knowledge bases. Wumpus world characteriza/on. Wumpus World PEAS descrip/on. A simple knowledge- based agent

CS 188: Artificial Intelligence Spring 2007

Chương 3 Tri th ức và lập luận

Inference Methods In Propositional Logic

Propositional Logic. Logic. Propositional Logic Syntax. Propositional Logic

Logical Agents (I) Instructor: Tsung-Che Chiang

Deliberative Agents Knowledge Representation I. Deliberative Agents

Inference Methods In Propositional Logic

The Wumpus Game. Stench Gold. Start. Cao Hoang Tru CSE Faculty - HCMUT

Inference in Propositional Logic

Description Logics. Foundations of Propositional Logic. franconi. Enrico Franconi

COMP219: Artificial Intelligence. Lecture 19: Logic for KR

Propositional Logic: Methods of Proof (Part II)

Adversarial Search & Logic and Reasoning

Logical Agents. Course material: Artificial Intelligence: A Modern Approach, 3 rd Edition, Chapter 7

Logical Agents. Soleymani. Artificial Intelligence: A Modern Approach, 3 rd Edition, Chapter 7

Introduction to Intelligent Systems

COMP219: Artificial Intelligence. Lecture 19: Logic for KR

Logic: Propositional Logic (Part I)

CS 2710 Foundations of AI Lecture 12. Propositional logic. Logical inference problem

Logic. Introduction to Artificial Intelligence CS/ECE 348 Lecture 11 September 27, 2001

Introduction to Intelligent Systems

Overview. Knowledge-Based Agents. Introduction. COMP219: Artificial Intelligence. Lecture 19: Logic for KR

INF5390 Kunstig intelligens. Logical Agents. Roar Fjellheim

Advanced Topics in LP and FP

Logical Agents. Knowledge based agents. Knowledge based agents. Knowledge based agents. The Wumpus World. Knowledge Bases 10/20/14

7 LOGICAL AGENTS. OHJ-2556 Artificial Intelligence, Spring OHJ-2556 Artificial Intelligence, Spring

Outline. Logical Agents. Logical Reasoning. Knowledge Representation. Logical reasoning Propositional Logic Wumpus World Inference

CS 7180: Behavioral Modeling and Decision- making in AI

Logical Agents. Soleymani. Artificial Intelligence: A Modern Approach, 3 rd Edition, Chapter 7

Propositional Logic: Logical Agents (Part I)

Outline. Logical Agents. Logical Reasoning. Knowledge Representation. Logical reasoning Propositional Logic Wumpus World Inference

Price: $25 (incl. T-Shirt, morning tea and lunch) Visit:

Propositional Logic Part 1

Logical Agents. September 14, 2004

Artificial Intelligence. Propositional logic

Foundations of Artificial Intelligence

Foundations of Artificial Intelligence

Knowledge based Agents

Language of Propositional Logic

Logic in AI Chapter 7. Mausam (Based on slides of Dan Weld, Stuart Russell, Subbarao Kambhampati, Dieter Fox, Henry Kautz )

Logic and Inferences

CSC242: Intro to AI. Lecture 11. Tuesday, February 26, 13

Part 1: Propositional Logic

Deductive Systems. Lecture - 3

Logical Agents. Santa Clara University

AI Programming CS S-09 Knowledge Representation

Propositional logic II.

Foundations of Artificial Intelligence

COMP3702/7702 Artificial Intelligence Week 5: Search in Continuous Space with an Application in Motion Planning " Hanna Kurniawati"

Agenda. Artificial Intelligence. Reasoning in the Wumpus World. The Wumpus World

COMP219: Artificial Intelligence. Lecture 20: Propositional Reasoning

2. The Logic of Compound Statements Summary. Aaron Tan August 2017

Propositional Logic: Logical Agents (Part I)

Logic in AI Chapter 7. Mausam (Based on slides of Dan Weld, Stuart Russell, Dieter Fox, Henry Kautz )

COMP9414: Artificial Intelligence Propositional Logic: Automated Reasoning

7. Propositional Logic. Wolfram Burgard and Bernhard Nebel

Logic & Logic Agents Chapter 7 (& background)

Propositional logic. Programming and Modal Logic

CS:4420 Artificial Intelligence

Lecture 7: Logic and Planning

Propositional Logic: Review

Transcription:

Logical agents Chapter 7 Chapter 7 1

Outline Knowledge-based agents Logic in general models and entailment Propositional (oolean) logic Equivalence, validity, satisfiability Inference rules and theorem proving forward chaining backward chaining resolution Chapter 7 2

Knowledge bases Inference engine domain independent algorithms Knowledge base domain specific content Knowledge base = 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 sk itself what to do answers should follow from the K gents can be viewed at the knowledge level i.e., what they know, regardless of how implemented Or at the implementation level i.e., data structures in K and algorithms that manipulate them Chapter 7 3

simple knowledge-based agent function K-gent( percept) returns an action static: K, a knowledge base t, a counter, initially 0, indicating time Tell(K, Make-Percept-Sentence( percept, t)) action sk(k, Make-ction-Query(t)) Tell(K, Make-ction-Sentence(action, t)) t t + 1 return action The agent must be able to: Represent states, actions, etc. Incorporate new percepts Update internal representations of the world Deduce hidden properties of the world Deduce appropriate actions Chapter 7 4

Knowledge Representation and Reasoning Represent knowledge in some formal language Propositional logic First-order logic Probabilistic/Statistical models Probabilistic First-order logic Think of represented knowledge as complete knowledge about the domain Inference: nswer a query posed over the model (deduction) Learning: Induce a model in a particular formal language that best fits the data (and possibly some prior assumptions) Chapter 7 5

Logic in general Logics are formal languages for representing information such that conclusions can be drawn Syntax defines the sentences in the language Semantics define the meaning of sentences; i.e., define truth of a sentence in a world E.g., the language of arithmetic x+2 y is a sentence; x2+y > is not a sentence x+2 y is true iff 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 Chapter 7 6

Entailment Entailment means that one thing follows from another: K = α Knowledge base K entails sentence α if and only if α is true in all worlds where K is true E.g., the K containing the Giants won and the Reds won entails Either the Giants won or the Reds won E.g., x+y=4 entails 4=x+y Entailment is a relationship between sentences (i.e., syntax) that is based on semantics Note: brains process syntax (of some sort) Chapter 7 7

Models Logicians typically think in terms of models, which are formally structured worlds with respect to which truth can be evaluated We say m is a model of a sentence α if α is true in m M(α) is the set of all models of α Then K = α if and only if M(K) M(α) E.g. K = Giants won and Reds won α = Giants won M( ) x x x x x x x x x x x x x x x x x x x x x x x x x xx x xx x x x x x x x M(K) x x x x x x x x x Chapter 7 8

Inference K i α = sentence α can be derived from K by procedure i Consequences of K are a haystack; α is a needle. Entailment = needle in haystack; inference = finding it Soundness: i is sound if whenever K i α, it is also true that K = α Completeness: i is complete if whenever K = α, it is also true that K i α Preview: we will define a logic (first-order logic) which is expressive enough to say almost anything of interest, and for which there exists a sound and complete inference procedure. That is, the procedure will answer any question whose answer follows from what is known by the K. Chapter 7 9

Propositional logic: Syntax Propositional logic is the simplest logic illustrates basic ideas The proposition symbols P 1, P 2 etc are sentences If S is a sentence, S is a sentence (negation) If S 1 and S 2 are sentences, S 1 S 2 is a sentence (conjunction) If S 1 and S 2 are sentences, S 1 S 2 is a sentence (disjunction) If S 1 and S 2 are sentences, S 1 S 2 is a sentence (implication) If S 1 and S 2 are sentences, S 1 S 2 is a sentence (biconditional) Chapter 7 10

Propositional logic: Semantics Each model specifies true/false for each proposition symbol E.g. P 1,2 P 2,2 P 3,1 true true false (With these symbols, 8 possible models, can be enumerated automatically.) Rules for evaluating truth with respect to a model m: S is true iff S is false S 1 S 2 is true iff S 1 is true and S 2 is true S 1 S 2 is true iff S 1 is true or S 2 is true S 1 S 2 is true iff S 1 is false or S 2 is true i.e., is false iff S 1 is true and S 2 is false S 1 S 2 is true iff S 1 S 2 is true and S 2 S 1 is true Simple recursive process evaluates an arbitrary sentence, e.g., P 1,2 (P 2,2 P 3,1 ) = true (false true)=true true=true Chapter 7 11

Truth tables for connectives P Q P P Q P Q P Q P Q false false true false false true true false true true false true true false true false false false true false false true true false true true true true Chapter 7 12

Inference by enumeration Depth-first enumeration of all models is sound and complete function TT-Entails?(K, α) returns true or false inputs: K, the knowledge base, a sentence in propositional logic α, the query, a sentence in propositional logic symbols a list of the proposition symbols in K and α return TT-Check-ll(K, α, symbols,[]) function TT-Check-ll(K, α, symbols, model) returns true or false if Empty?(symbols) then if PL-True?(K, model) then return PL-True?(α, model) else return true else do P First(symbols); rest Rest(symbols) return TT-Check-ll(K, α, rest, Extend(P, true, model)) and TT-Check-ll(K, α, rest, Extend(P, false, model)) O(2 n ) for n symbols; problem is co-np-complete Chapter 7 13

Logical equivalence Two sentences are logically equivalent iff true in same models: α β if and only if α = β and β = α (α β) (β α) commutativity of (α β) (β α) commutativity of ((α β) γ) (α (β γ)) associativity of ((α β) γ) (α (β γ)) associativity of ( α) α double-negation elimination (α β) ( β α) contraposition (α β) ( α β) implication elimination (α β) ((α β) (β α)) biconditional elimination (α β) ( α β) De Morgan (α β) ( α β) De Morgan (α (β γ)) ((α β) (α γ)) distributivity of over (α (β γ)) ((α β) (α γ)) distributivity of over Chapter 7 14

Validity and satisfiability sentence is valid if it is true in all models, e.g., True,,, ( ( )) Validity is connected to inference via the Deduction Theorem: K = α if and only if (K α) is valid sentence is satisfiable if it is true in some model e.g.,, C sentence is unsatisfiable if it is true in no models e.g., Satisfiability is connected to inference via the following: K = α if and only if (K α) is unsatisfiable i.e., prove α by reductio ad absurdum Chapter 7 15

Proof methods Proof methods divide into (roughly) two kinds: pplication 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 alg. Typically require translation of sentences into a normal form Model checking truth table enumeration (always exponential in n) improved backtracking, e.g., Davis Putnam Logemann Loveland heuristic search in model space (sound but incomplete) e.g., min-conflicts-like hill-climbing algorithms Chapter 7 16

Forward and backward chaining Horn Form (restricted) K = conjunction of Horn clauses Horn clause = proposition symbol; or (conjunction of symbols) symbol E.g., C ( ) (C D ) Modus Ponens (for Horn Form): complete for Horn Ks α 1,...,α n, α 1 α n β β Can be used with forward chaining or backward chaining. These algorithms are very natural and run in linear time Chapter 7 17

Forward chaining Idea: fire any rule whose premises are satisfied in the K, add its conclusion to the K, until query is found P Q L M P L M P L L L Q P M Chapter 7 18

Forward chaining algorithm function PL-FC-Entails?(K, q) returns true or false inputs: K, the knowledge base, a set of propositional Horn clauses q, the query, a proposition symbol local variables: count, a table, indexed by clause, initially the number of premises inferred, a table, indexed by symbol, each entry initially false agenda, a list of symbols, initially the symbols known in K while agenda is not empty do p Pop(agenda) unless inferred[p] do inferred[p] true for each Horn clause c in whose premise p appears do decrement count[c] if count[c] = 0 then do if Head[c] = q then return true Push(Head[c], agenda) return false Chapter 7 19

Forward chaining example Q P Q L M P L M P L L 1 P 2 M 2 L 2 2 Chapter 7 20

Forward chaining example Q P Q L M P L M P L L 1 P 2 M 2 L 1 1 Chapter 7 21

Forward chaining example Q 1 P Q L M P L M P L L 1 P 2 L M 0 1 Chapter 7 22

Forward chaining example Q 1 P Q L M P L M P L L 1 P 1 L M 0 0 Chapter 7 23

Forward chaining example Q 1 P Q L M P L M P L L 1 P 0 L M 0 0 Chapter 7 24

Forward chaining example Q 0 P Q L M P L M P L L 0 P 0 L M 0 0 Chapter 7 25

Forward chaining example Q 0 P Q L M P L M P L L 0 P 0 L M 0 0 Chapter 7 26

Forward chaining example Q 0 P Q L M P L M P L L 0 P 0 L M 0 0 Chapter 7 27

Proof of completeness FC derives every atomic sentence that is entailed by K 1. FC reaches a fixed point where no new atomic sentences are derived 2. Consider the final state as a model m, assigning true/false to symbols 3. Every clause in the original K is true in m Proof: Suppose a clause a 1... a k b is false in m Then a 1... a k is true in m and b is false in m Therefore the algorithm has not reached a fixed point! 4. Hence m is a model of K 5. If K = q, q is true in every model of K, including m General idea: construct any model of K by sound inference, check α Chapter 7 28

ackward chaining Idea: work backwards from the query q: to prove q by C, check if q is known already, or prove by C all premises of some rule concluding q void loops: check if new subgoal is already on the goal stack void repeated work: check if new subgoal 1) has already been proved true, or 2) has already failed Chapter 7 29

ackward chaining example Q P Q L M P L M P L L L P M Chapter 7 30

ackward chaining example Q P Q L M P L M P L L L P M Chapter 7 31

ackward chaining example Q P Q L M P L M P L L L P M Chapter 7 32

ackward chaining example Q P Q L M P L M P L L L P M Chapter 7 33

ackward chaining example Q P Q L M P L M P L L L P M Chapter 7 34

ackward chaining example Q P Q L M P L M P L L L P M Chapter 7 35

ackward chaining example Q P Q L M P L M P L L L P M Chapter 7 36

ackward chaining example Q P Q L M P L M P L L L P M Chapter 7 37

ackward chaining example Q P Q L M P L M P L L L P M Chapter 7 38

ackward chaining example Q P Q L M P L M P L L L P M Chapter 7 39

Forward vs. backward chaining FC is data-driven, cf. automatic, unconscious processing, e.g., object recognition, routine decisions May do lots of work that is irrelevant to the goal C is goal-driven, appropriate for problem-solving, e.g., Where are my keys? How do I get into a PhD program? Complexity of C can be much less than linear in size of K Chapter 7 40

Resolution Conjunctive Normal Form (CNF universal) conjunction of disjunctions of literals }{{} clauses E.g., ( ) ( C D) Resolution inference rule (for CNF): complete for propositional logic l 1 l k, m 1 m n l 1 l i 1 l i+1 l k m 1 m j 1 m j+1 m n where l i and m j are complementary literals. Resolution is sound and complete for propositional logic Chapter 7 41

Conversion to CNF 1,1 (P 1,2 P 2,1 ) 1. Eliminate, replacing α β with (α β) (β α). ( 1,1 (P 1,2 P 2,1 )) ((P 1,2 P 2,1 ) 1,1 ) 2. Eliminate, replacing α β with α β. ( 1,1 P 1,2 P 2,1 ) ( (P 1,2 P 2,1 ) 1,1 ) 3. Move inwards using de Morgan s rules and double-negation: ( 1,1 P 1,2 P 2,1 ) (( P 1,2 P 2,1 ) 1,1 ) 4. pply distributivity law ( over ) and flatten: ( 1,1 P 1,2 P 2,1 ) ( P 1,2 1,1 ) ( P 2,1 1,1 ) Chapter 7 42

Resolution algorithm Proof by contradiction, i.e., show K α unsatisfiable function PL-Resolution(K, α) returns true or false inputs: K, the knowledge base, a sentence in propositional logic α, the query, a sentence in propositional logic clauses the set of clauses in the CNF representation of K α new {} loop do for each C i, C j in clauses do resolvents PL-Resolve(C i,c j ) if resolvents contains the empty clause then return true new new resolvents if new clauses then return false clauses clauses new Chapter 7 43

Resolution example K = ( 1,1 (P 1,2 P 2,1 )) 1,1 α = P 1,2 P 2,1 1,1 1,1 P 1,2 P 2,1 P 1,2 1,1 1,1 P 1,2 1,1 P 1,2 1,1 P 1,2 P 2,1 P 1,2 1,1 P 2,1 1,1 P1,2 P 2,1 P 2,1 P 2,1 P 1,2 Chapter 7 44

Summary Logical agents apply inference to a knowledge base to derive new information and make decisions asic 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 soundess: derivations produce only entailed sentences completeness: derivations can produce all entailed sentences Forward, backward chaining are linear-time, complete for Horn clauses Resolution is complete for propositional logic Propositional logic lacks expressive power Chapter 7 45