• Non ci sono risultati.

Forward/Backward Chaining Unification and Resolution

N/A
N/A
Protected

Academic year: 2021

Condividi "Forward/Backward Chaining Unification and Resolution"

Copied!
38
0
0

Testo completo

(1)

Forward/Backward Chaining

Unification and Resolution

(2)
(3)

Linguaggi e assunzioni

ontologiche/epistemiologiche

(4)

Sintassi logica I ordine

(5)

Esempi Formule F.O.L.

(6)

Assiomi di Peano (N e +)

(7)

Example knowledge base

• The law says that it is a crime for an American to sell weapons to hostile nations. The country Nono, an enemy of America, has some missiles, and all of its missiles were sold to it by Colonel West, who is

American.

• Prove that Col. West is a criminal

(8)

Example knowledge base

(all vars assumed universally quantified)

... it is a crime for an American to sell weapons to hostile nations:

American(x) Ù Weapon(y) Ù Sells(x,y,z) Ù Hostile(z) Þ Criminal(x) Nono … has some missiles, i.e., $x Owns(Nono,x) Ù Missile(x):

Owns(Nono,M1) and Missile(M1)

… all of its missiles were sold to it by Colonel West Missile(x) Ù Owns(Nono,x) Þ Sells(West,x,Nono) Missiles are weapons:

Missile(x) Þ Weapon(x)

An enemy of America counts as "hostile“:

Enemy(x,America) Þ Hostile(x) West, who is American …

American(West)

The country Nono, an enemy of America … Enemy(Nono,America)

(9)

Generalized Modus Ponens (GMP)

p1', p2', … , pn', ( p1 Ù p2 Ù … Ù pn Þq) qθ

p1' is King(John) p1 is King(x) p2' is Avido(y) p2 is Avido(x) θ is {x/John,y/John} q is Malvagiol(x) q θ is Malvagio(John)

• GMP used with KB of definite clauses (exactly one positive literal)

• All variables assumed universally quantified

where pi'θ = pi θ for all i

(10)

Forward chaining algorithm

(11)

Forward chaining proof

(12)

Forward chaining proof

(13)

Forward chaining proof

(14)

Properties of forward chaining

• Sound and complete for first-order definite clauses

• Datalog = first-order definite clauses + no functions

• FC terminates for Datalog in finite number of iterations

• May not terminate in general if α is not entailed

• This is unavoidable: entailment with definite clauses is semidecidable

(15)

Unification

• Unify(α,β) = θ if αθ = βθ

p q θ

Knows(John,x) Knows(John,Jane) Knows(John,x) Knows(y,OJ)

Knows(John,x) Knows(y,Mother(y)) Knows(John,x) Knows(x,OJ)

• Standardizing apart eliminates overlap of variables, e.g., Knows(z17,OJ)

(16)

Unification

• Unify(α,β) = θ if αθ = βθ

p q θ

Knows(John,x) Knows(John,Jane) {x/Jane}}

Knows(John,x) Knows(y,OJ)

Knows(John,x) Knows(y,Mother(y)) Knows(John,x) Knows(x,OJ)

• Standardizing apart eliminates overlap of variables, e.g., Knows(z17,OJ)

(17)

Unification

• Unify(α,β) = θ if αθ = βθ

p q θ

Knows(John,x) Knows(John,Jane) {x/Jane}}

Knows(John,x) Knows(y,OJ) {x/OJ,y/John}}

Knows(John,x) Knows(y,Mother(y)) Knows(John,x) Knows(x,OJ)

• Standardizing apart eliminates overlap of variables, e.g., Knows(z17,OJ)

(18)

Unification

• Unify(α,β) = θ if αθ = βθ

p q θ

Knows(John,x) Knows(John,Jane) {x/Jane}}

Knows(John,x) Knows(y,OJ) {x/OJ,y/John}}

Knows(John,x) Knows(y,Mother(y)) {y/John,x/Mother(John)}}

Knows(John,x) Knows(x,OJ)

• Standardizing apart eliminates overlap of variables, e.g., Knows(z17,OJ)

(19)

Unification

• Unify(α,β) = θ if αθ = βθ

p q θ

Knows(John,x) Knows(John,Jane) {x/Jane}}

Knows(John,x) Knows(y,OJ) {x/OJ,y/John}}

Knows(John,x) Knows(y,Mother(y)) {y/John,x/Mother(John)}}

Knows(John,x) Knows(x,OJ) {fail}

• Standardizing apart eliminates overlap of variables, e.g., Knows(z17,OJ)

(20)

Unification

• Knows(John,x) e Knows(y,z) unificano con:

θ = {y/John, x/z } or θ = {y/John, x/John, z/John}

• Il primo unificatore è più generale

(informalmente, vincola di meno le variabili)

• Esiste un solo most general unifier (MGU) che è unico a meno di rinominazione di variabili

MGU = { y/John, x/z }

(21)

Unification: Occur Check

Esempio necessità del controllo di occorrenza:

Ama(x,x) e Ama(y,Padre(y)) unificano con x/y e y/Padre(y) che non ha senso!

Occur check: una variabile unifica con un termine

composto (funzione) solo se il termine composto

non coinvolge la variabile stessa.

(22)

The unification algorithm

(23)

The unification algorithm

(24)

Backward chaining example

(25)

Backward chaining example

(26)

Backward chaining example

(27)

Backward chaining example

(28)

Backward chaining example

(29)

Backward chaining example

(30)

Backward chaining example

(31)

Backward chaining example

(32)

Backward chaining algorithm

SUBST(COMPOSE(θ

1

, θ

2

), p) = SUBST(θ

2

,

SUBST(θ

1

, p))

(33)

Properties of backward chaining

• Depth-first recursive proof search: space is linear in size of proof

• Incomplete due to infinite loops

– Þ fix by checking current goal against every goal on stack

• Inefficient due to repeated subgoals (both success and failure)

– Þ fix using caching of previous results (extra space)

• Widely used for logic programming

(34)

Resolution: brief summary

• Full first-order version:

l1 Ú ··· Ú lk, m1 Ú ··· Ú mn

(l1 Ú ··· Ú li-1 Ú li+1 Ú ··· Ú lk Ú m1 Ú ··· Ú mj-1 Ú mj+1 Ú ··· Ú mn)θ where Unify(li, ¬mj) = θ.

• The two clauses are assumed to be standardized apart so that they share no variables.

• For example,

¬Rich(x) Ú Unhappy(x) Rich(Ken) Unhappy(Ken)

with θ = {x/Ken}

• Apply resolution steps to CNF(KB Ù ¬α); complete for FOL

(35)
(36)

Resolution proof: definite clauses

(37)

Conversion to CNF

• Everyone who loves all animals is loved by someone:

"x ["y Animal(y) Þ Loves(x,y)] Þ [$y Loves(y,x)]

• 1. Eliminate biconditionals and implications

"x [¬"y ¬Animal(y) Ú Loves(x,y)] Ú [$y Loves(y,x)]

• 2. Move ¬ inwards: ¬"x p ≡ $x ¬p, ¬ $x p ≡ "x

¬p

"x [$y ¬(¬Animal(y) Ú Loves(x,y))] Ú [$y Loves(y,x)]

"x [$y ¬¬Animal(y) Ù ¬Loves(x,y)] Ú [$y Loves(y,x)]

"x [$y Animal(y) Ù ¬Loves(x,y)] Ú [$y Loves(y,x)]

(38)

Conversion to CNF cont.

3. Standardize variables: each quantifier should use a different variable

4. "x [$y Animal(y) Ù ¬Loves(x,y)] Ú [$z Loves(z,x)]

4. Skolemize: a more general form of existential instantiation.

Each existential variable is replaced by a Skolem function of the enclosing universally quantified variables:

"x [Animal(F(x)) Ù ¬Loves(x,F(x))] Ú Loves(G(x),x) 5. Drop universal quantifiers:

[Animal(F(x)) Ù ¬Loves(x,F(x))] Ú Loves(G(x),x) 6. Distribute Ú over Ù :

7. [Animal(F(x)) Ú Loves(G(x),x)] Ù [¬Loves(x,F(x)) Ú Loves(G(x),x)]

Riferimenti

Documenti correlati

Il tempo neces- sario per stabilire la connessione col sito A ` e descritto da una variabile aleatoria T A con legge (assolutamente continua) uniforme sull’intervallo [0, 40]

- griglia 3D regolare di valori di densità - campionamento regolare in 3D - es: output di una scansione TAC. densità: 0.3

NURBS *, b-splines

Il contrario, che qualche volta è utile, MOLTO meno.. * verdemo più avanti nel corso, se

Occur check: una variabile unifica con un termine composto (funzione) solo se il termine composto non coinvolge la variabile stessa. Una variabile universal non può

Occur check: una variabile unifica con un termine composto (funzione) solo se il termine composto non coinvolge la variabile stessa.. Una variabile universal non può

Apostol:

Perci` o l’u- tilizzo della disuguaglianza di Chebyshev `e limitato ai casi in cui non `e nota la forma della distribuzione della variabile casuale... Sia X la variabile