m07-logic

Embed Size (px)

Citation preview

  • 8/9/2019 m07-logic

    1/74

    Logical AgentsChapter 7

  • 8/9/2019 m07-logic

    2/74

    Outline

    Knowledge-based agents Wumpus world

    Logic in general -m

    odels and entailm

    ent Propositional (Boolean) logic Equivalence, validity, satisfiability Inference rules and theorem proving

    forward chaining backward chaining resolution

  • 8/9/2019 m07-logic

    3/74

    Knowledge bases

    Knowledge base = set ofsentences 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 Agents can be viewed at the knowledge level

    i.e., what they know, regardless of how implemented

    Or at the implementation level

    i.e., data stru

    ctu

    res in KB and algorithm

    s thatm

    anipu

    late them

  • 8/9/2019 m07-logic

    4/74

    A simple knowledge-based agent

    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

  • 8/9/2019 m07-logic

    5/74

    Wumpus World PEAS

    description Perfor mancemeasure gold +1000, death -1000 -1 per step, -10 forusing the arrow

    Environment

    Squares adjacent to wumpus are smelly Squares adjacent to pit are breezy Glitter iff gold is in the same square

    Shooting kills wumpus if you are facing it Shooting uses up the only arrow Grabbing picks up gold if in same square Releasing drops the gold in same square

    Sensors: Stench, Breeze, Glitter, Bump, Scream Actuators: Left turn, Ri ht turn, Forward, Grab, Release, Shoot

  • 8/9/2019 m07-logic

    6/74

    Wumpus world characterization

    Fully Observable No only local perception Deter ministic Yes outcomes exactly specified

    Episodic No sequ

    ential at the level of actions Static Yes Wumpus and Pits do not move Discrete Yes Single-agent? Yes Wumpus is essentially a

    natural feature

  • 8/9/2019 m07-logic

    7/74

    Exploring a wumpus world

  • 8/9/2019 m07-logic

    8/74

    Exploring a wumpus world

  • 8/9/2019 m07-logic

    9/74

    Exploring a wumpus world

  • 8/9/2019 m07-logic

    10/74

    Exploring a wumpus world

  • 8/9/2019 m07-logic

    11/74

    Exploring a wumpus world

  • 8/9/2019 m07-logic

    12/74

    Exploring a wumpus world

  • 8/9/2019 m07-logic

    13/74

    Exploring a wumpus world

  • 8/9/2019 m07-logic

    14/74

    Exploring a wumpus world

  • 8/9/2019 m07-logic

    15/74

    Logic in general

    Logics are formal languages for representing informationsuch that conclusions can be drawn

    Syntax defines the sentences in the langu

    age 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

  • 8/9/2019 m07-logic

    16/74

    Entailment

    Entailment means that one thing follows fromanother:

    KB Knowledge base KB entails sentence if and

    only if is true in all worlds where KB is true

    E.g., the KB containing the Giants won and theReds won entails Either the Giants won or the Redswon

    E.g., x+y = 4 entails 4 = x+y

  • 8/9/2019 m07-logic

    17/74

    Models Logicians typically think in terms ofmodels, which are formally

    structured worlds with respect to which truth can be evaluated

    We say m is a model ofa sentence if is true in m

    M() is the set of all models of

    Then KB iff M(KB) M()

    E.g. KB= Giants won and Redswon = Giants won

  • 8/9/2019 m07-logic

    18/74

    Entailment in the wumpus world

    Situation after detectingnothing in [1,1], movingright, breeze in [2,1]

    Consider possible models forKB assuming only pits

    3 Boolean choices 8possible models

  • 8/9/2019 m07-logic

    19/74

    Wumpus models

  • 8/9/2019 m07-logic

    20/74

    Wumpus models

    KB= wumpus-world rules + observations

  • 8/9/2019 m07-logic

    21/74

    Wumpus models

    KB= wumpus-world rules + observations 1 = "[1,2] is safe", KB 1, proved by model checking

  • 8/9/2019 m07-logic

    22/74

    Wumpus models

    KB= wumpus-world rules + observations

  • 8/9/2019 m07-logic

    23/74

    Wumpus models

    KB= wumpus-world rules + observations 2 = "[2,2] is safe", KB 2

  • 8/9/2019 m07-logic

    24/74

    Inference

    KBi = sentence can be derived fromKBbyprocedure i

    Sou

    ndness:i

    is sou

    nd if wheneverKB

    i , it is also tru

    ethat KB Completeness: iis complete if wheneverKB , it is also

    true that KBi

    Preview: we will define a logic (first-order logic) which isexpressive enough to say almost anything of interest,and for which there exists a sound and completeinference procedure.

  • 8/9/2019 m07-logic

    25/74

    Propositional logic: Syntax

    Propositional logic is the simplest logic illustratesbasic ideas

    The proposition symbols P1, P2 etc are sentences

    If S is a sentence, S is a sentence (negation)

    If S 1 and S2 are sentences, S1 S2 is a sentence (conju

    nction) If S 1 and S2 are sentences, S1 S2 is a sentence (disjunction) If S 1 and S2 are sentences, S1 S2 is a sentence (implication) If S and S are sentences S S is a sentence biconditional

  • 8/9/2019 m07-logic

    26/74

    Propositional logic: SemanticsEach model specifies true/false for each proposition symbol

    E.g. P1,2 P2,2 P3,1false tr ue false

    With these symbols, 8 possible models, can be enumerated automatically.

    Rules for evaluating truth with respect to a model m:

    S is tr ue iff S is falseS1 S2 is true iff S1 is true and S2 is true

    S1 S2 is true iff S1is true or S2 is trueS1 S2 is true iff S1 is false or S2 is truei.e., is false iff S1 is true and S2 is falseS1 S2 is true iff S1S2 is true andS2S1 is true

    Sim

    ple recu

    rsive process evalu

    ates an arbitrary sentence, e.g.,

  • 8/9/2019 m07-logic

    27/74

    Truth tables for connectives

  • 8/9/2019 m07-logic

    28/74

    Wumpus world sentences

    Let Pi,j be true if there is a pit in [i, j].Let Bi,j be true if there is a breeze in [i, j].

    P1,1B1,1B2,1

    "Pits cause breezes in adjacent squares"

    B1,1 (P1,2 P2,1)B

    2,1 (P

    1,1 P

    2,2 P

    3,1)

  • 8/9/2019 m07-logic

    29/74

    Truth tables for inference

  • 8/9/2019 m07-logic

    30/74

    Inference by enumeration Depth-first enumeration of all models is sound and complete

    For n symbols, time complexity is O(2n), space complexity is O(n)

  • 8/9/2019 m07-logic

    31/74

    Logical equivalence

    Two sentences are logically equivalent} iff true in samemodels: iff and

  • 8/9/2019 m07-logic

    32/74

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

    e.g., True, A A, A A, (A (A B)) B

    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 modele.g., A B, C

    A sentence is unsatisfiable if it is true in no modelse.g., AA

    Satisfiability is connected to inference via the following:KB if and only if (KB ) is unsatisfiable

  • 8/9/2019 m07-logic

    33/74

    Proofmethods

    Proof methods divide into (roughly) two kinds:

    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 searchalgorithm

    Typically require transformation of sentences into a normal form

    Model checking truth table enumeration (always exponential in n)

    -- - -

  • 8/9/2019 m07-logic

    34/74

    ResolutionConjunctive Normal Form (CNF)

    conjunction ofdisjunctions ofliteralsclauses

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

    Resolution inference rule (for CNF):li lk, m1 mn

    li li-1 li+1 lk m1 mj-1 mj+1 ... mn

    where li and mj are complementary literals.E.g., P

    1,3 P

    2,2, P

    2,2P1,3

    Resolution is sound and completefor propositional logic

  • 8/9/2019 m07-logic

    35/74

    Resolution

    Soundness of resolution inference rule:

    (li

    l

    i-1 l

    i+1

    l

    k) l

    imj (m1 mj-1 mj+1 ... mn)

    (li li-1 li+1 lk) (m1 mj-1 mj+1 ... mn)

  • 8/9/2019 m07-logic

    36/74

    Conversion to CNFB1,1 (P1,2 P2,1)

    1. Eliminate , replacing with ( )( ).2.

    (B1,1 (P1,2 P2,1)) ((P1,2 P2,1) B1,1)

    2. Eliminate , replacing with .

    (B1,1 P1,2 P2,1) ((P1,2 P2,1) B1,1)

    3. Move inwards using de Morgan's rules and double-negation:

  • 8/9/2019 m07-logic

    37/74

    Resolution algorithm

    Proof by contradiction, i.e., show KB unsatisfiable

  • 8/9/2019 m07-logic

    38/74

    Resolution example

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

  • 8/9/2019 m07-logic

    39/74

    Forward and backward chaining Horn For m (restricted)

    KB = conjunction ofHorn clauses

    Horn clause = proposition symbol; or

    (conju

    nction of sym

    bols) sym

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

    Modus Ponens (for Horn Form): complete for Horn KBs

    1, ,n, 1 n

    Can be used with forward chaining orbackward chaining. These algorithms are very natural and run in lineartime

  • 8/9/2019 m07-logic

    40/74

    Forward chaining

    Idea: fire any rule whose premises are satisfied in theKB, add its conclusion to the KB, until query is found

  • 8/9/2019 m07-logic

    41/74

    Forward chaining algorithm

    Forward chaining is sound and complete forHorn KB

  • 8/9/2019 m07-logic

    42/74

    Forward chaining example

  • 8/9/2019 m07-logic

    43/74

    Forward chaining example

  • 8/9/2019 m07-logic

    44/74

    Forward chaining example

  • 8/9/2019 m07-logic

    45/74

    Forward chaining example

  • 8/9/2019 m07-logic

    46/74

    Forward chaining example

  • 8/9/2019 m07-logic

    47/74

    Forward chaining example

  • 8/9/2019 m07-logic

    48/74

    Forward chaining example

  • 8/9/2019 m07-logic

    49/74

    Forward chaining example

  • 8/9/2019 m07-logic

    50/74

    Proof of completeness

    FC derives every atomic sentence that isentailed by KB

    1. FC reaches a fixed point where no new atomicsentences are derived2.2. Consider the final state as a model m, assigning

    true/false to symbols

    3.3. Every clause in the original KB is true in m4.

    a1 ak b

  • 8/9/2019 m07-logic

    51/74

    Backward chaining

    Idea: work backwards from the query q:

    to prove q by BC,

    check ifq is known already, orprove by BC 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

  • 8/9/2019 m07-logic

    52/74

    Backward chaining example

  • 8/9/2019 m07-logic

    53/74

    Backward chaining example

  • 8/9/2019 m07-logic

    54/74

    Backward chaining example

  • 8/9/2019 m07-logic

    55/74

    Backward chaining example

  • 8/9/2019 m07-logic

    56/74

    Backward chaining example

  • 8/9/2019 m07-logic

    57/74

    Backward chaining example

  • 8/9/2019 m07-logic

    58/74

    Backward chaining example

  • 8/9/2019 m07-logic

    59/74

    Backward chaining example

  • 8/9/2019 m07-logic

    60/74

    Backward chaining example

  • 8/9/2019 m07-logic

    61/74

    Backward chaining example

  • 8/9/2019 m07-logic

    62/74

    Forward vs. backward chaining

    FC is data-driven, automatic, unconscious processing, e.g., object recognition, routine decisions

    May do lots of work that is irrelevant to the goal BC is goal-driven, appropriate for problem-solving,

    e.g., Where are my keys? How do I get into a PhD program?

    Complexity of BC can be much less than linear in size ofKB

  • 8/9/2019 m07-logic

    63/74

    Efficient propositional inference

    Two families of efficient algorithms for propositionalinference:

    Complete backtracking search algorithms DPLL algorithm (Davis, Putnam, Logemann, Loveland)

    Incom

    plete local search algorithm

    s WalkSAT algorithm

  • 8/9/2019 m07-logic

    64/74

    The DPLL algorithmDetermine if an input propositional logic sentence (in CNF) is

    satisfiable.

    Improvements over truth table enumeration:

    1. Early terminationA clause is true if any literal is true.A sentence is false if any clause is false.

    2. Pure symbol heuristic

    Pu

    re sym

    bol: always appears with the sam

    e "sign" in all clau

    ses.e.g., In the three clauses (A B), (B C), (C A), A and B are pure, C isimpure.

    Make a pure symbol literal true.

    3. Unit clause heuristicUnit clause: only one literal in the clause

    The onl literal in a unit clause must be true.

  • 8/9/2019 m07-logic

    65/74

    The DPLL algorithm

  • 8/9/2019 m07-logic

    66/74

    The WalkSAT algorithm

    Incomplete, local search algorithm Evaluation function: The min-conflict heuristic ofm

    inim

    izing the num

    ber ofu

    nsatisfied clau

    ses Balance between greediness and randomness

  • 8/9/2019 m07-logic

    67/74

    The WalkSAT algorithm

  • 8/9/2019 m07-logic

    68/74

  • 8/9/2019 m07-logic

    69/74

    Hard satisfiability problems

  • 8/9/2019 m07-logic

    70/74

    Hard satisfiability problems

    Median runtime for 100 satisfiable random 3-CNF sentences, n = 50

  • 8/9/2019 m07-logic

    71/74

    Inference-based agents in the

    wum

    pu

    s worldA wumpus-world agent using propositional logic:

    P1,1W1,1Bx,y (Px,y+1 Px,y-1 Px+1,y Px-1,y)Sx,y (Wx,y+1 Wx,y-1 Wx+1,y Wx-1,y)W1,1 W1,2 W4,4W1,1 W1,2

    W1,1 W1,3

    64 distinct proposition symbols, 155 sentences

  • 8/9/2019 m07-logic

    72/74

  • 8/9/2019 m07-logic

    73/74

    KB contains "physics" sentences for every single square

    For every time tand every location [x,y],Lx,y FacingRight

    t Forwardt Lx+1,y

    Rapid proliferation of clauses

    Expressiveness limitation of

    propositional logic

    tt

  • 8/9/2019 m07-logic

    74/74

    Summary Logical agents apply inference to a knowledge base to derive new

    information and make decisions Basic concepts of logic:

    syntax: formal structure ofsentences semantics: truth of sentences wrt models

    entailm

    ent: necessary tru

    th of one sentence given another inference: deriving sentences from other sentences soundness: derivations produce only entailed sentences completeness: derivations can produce all entailed sentences

    Wumpus world requires the ability to represent partial and negatedinformation, reason by cases, etc.

    Resolution is complete for propositional logic

    Forward, backward chaining are linear-time, complete for Hornclauses

    Propositional logic lacks expressive power