Foundations of AI 9. Predicate Logic Syntax and Semantics, Normal - - PowerPoint PPT Presentation

foundations of ai
SMART_READER_LITE
LIVE PREVIEW

Foundations of AI 9. Predicate Logic Syntax and Semantics, Normal - - PowerPoint PPT Presentation

Foundations of AI 9. Predicate Logic Syntax and Semantics, Normal Forms, Herbrand Expansion Wolfram Burgard & Bernhard Nebel Contents Motivation Syntax and Semantics Normal Forms Reduction to Propositional Logic:


slide-1
SLIDE 1

Foundations of AI

  • 9. Predicate Logic

Syntax and Semantics, Normal Forms, Herbrand Expansion

Wolfram Burgard & Bernhard Nebel

slide-2
SLIDE 2

Contents

  • Motivation
  • Syntax and Semantics
  • Normal Forms
  • Reduction to Propositional Logic:

Herbrand Expansion

  • Closing Remarks
slide-3
SLIDE 3

Motivation

We can already do a lot with propositional logic. It is, however, annoying that there is no structure in the atomic propositions. Example: “All blocks are red” “There is a block A” It should follow that “A is red” But propositional logic cannot handle this. Idea: We introduce individual variables, predicates, functions, … . First-Order Predicate Logic (PL1)

slide-4
SLIDE 4

The Alphabet of First-Order Predicate Logic

Symbols:

  • Operators: ¬, , , ∀, ∃, =
  • Variables: x,x1,x2,…,x’,x’’,…,y,…,z,…
  • Brackets: ( ) [ ] { }
  • Function symbols (e.g. weight( ), color( ))
  • Predicate symbols (e.g. block( ), red( ))
  • Predicate and function symbols have an arity (number of arguments).

0-ary predicate: propositional logic atoms 0-ary function: constant

  • We suppose a countable set of predicates and functions of any arity.
  • “=“ is usually not considered a predicate, but a logical symbol
slide-5
SLIDE 5

The Grammar of First-Order Predicate Logic (1)

Terms (represent objects): 1. Every variable is a term. 2. If t1,t2,…,tn are terms and f is an n-ary function, then f f f f (t1,t2,…,tn) is also a term. Terms without variables: ground terms. Atomic Formulae (represent statements about objects) 1. If t1,t2,…,tn are terms and P is an n-ary predicate, then P(t1,t2,…,tn) is an atomic formula. 2. If t1 and t2 are terms, then t1 = t2 is an atomic formula. Atomic formulae without variables: ground atoms.

slide-6
SLIDE 6

The Grammar of First-Order Predicate Logic (2)

Formulae:

  • 1. Every atomic formula is a formula.
  • 2. If ϕ and ψ are formulae and x is a variable, then

¬ϕ, ϕψ, ϕψ, ϕψ, ϕ⇔ψ, ∃xϕ and ∀xϕ are also formulae. ∀, ∃ are as strongly binding as ¬. Propositional logic is part of the PL1 language:

  • 1. Atomic formulae: only 0-ary predicates
  • 2. Neither variables nor quantifiers.
slide-7
SLIDE 7

Alternative Notation

ϕ ϕ&ψ ϕ•ψ ϕ,ψ ϕ|ψ ϕ;ψ ϕ+ψ ϕ→ψ ϕψ ϕ↔ψ ϕ≡ψ (∀x )ϕ x ϕ (∃x )ϕ x ϕ ¬ϕ ϕψ ϕψ ϕψ ϕ⇔ψ ∀x ϕ ∃x ϕ

Elsewhere Here

slide-8
SLIDE 8

Meaning of PL1-Formulae

Our example: ∀x[Block(x)Red(x)],Block(a) For all objects x: If x is a block, then x is red and a is a block. Generally:

  • Terms are interpreted as objects.
  • Universally-quantified variables denote all objects in the

universe.

  • Existentially-quantified variables represent one of the objects

in the universe (made true by the quantified expression).

  • Predicates represent subsets of the universe.

Similar to propositional logic, we define interpretations, satisfiability, models, validity, …

slide-9
SLIDE 9

Semantics of PL1-Logic

Interpretation: I = D,•I where D is an arbitrary, non

  • empty set and •I is a function that
  • maps n
  • a

r y function symbols to functions over D: f I ∈ [Dn D]

  • maps individual constants to elements of D:

aI ∈ D

  • maps n
  • a

r y predicate symbols to relations over D: PI Dn Interpretation of ground terms: (f f f f (t1,…,tn))I = f f f f I(t1

I,…,tn I)

Satisfaction of ground atoms P(t1,…,tn): I P(t1,…,tn) iff t1

I,…,tn I ∈ PI

slide-10
SLIDE 10

Example (1)

Block(b)

  • I

Red(b)

  • I

D = RedI {d1} = BlockI … = cI d2 = bI d1 = aI {d1,…,dn | n > 1} = D

slide-11
SLIDE 11

Example 2

Even(succ(2))

  • I

Even(2)

  • I

{(12),(23), …} = succI {2, 4, 6, …} = EvenI

  • 2

= 2I 1 = 1I {1, 2, 3, …} = D

slide-12
SLIDE 12

Semantics of PL1: Variable Assignment

Set of all variables V. Function α: VD Notation: α[x/d] is the same as α up to point x. For x : α[x/d](x) = d. Interpretation of terms under I, α:

f f f f I(t1

I,α,…,tn I,α)

=

(f f f f (t1,…,tn))I,α aI

=

aI,α α(x )

=

xI,α

Satisfiability of atomic formulae:

I,α

  • P(t1,…,tn) iff t1

I,α,…,tn I,α ∈ PI

slide-13
SLIDE 13

Example

Block(y)

  • I,α[y/d1]

Red(x)

  • I,α

{(xd1),(y d2)} = α

slide-14
SLIDE 14

Semantics of PL1: Satisfiability

A formula ϕ is satisfied by an interpretation I and a variable assignment α, i.e. I,α

  • ϕ:

I,α

  • T

I,α

  • I,α
  • ¬

¬ ¬ ¬ϕ iff I,α

  • ϕ

… and all other propositional rules as well as there exists a d ∈ D with I,α[x/d]

  • ϕ

iff I,α

  • ∃x ϕ

for all d ∈ D, I,α[x/d]

  • ϕ

iff I,α

  • ∀x ϕ

t1

I,α,…,tn I,α ∈ P I,α

iff I,α

  • P(t1,…,tn)
slide-15
SLIDE 15

Example

{(x d1), (y d2)} = = = = α D = RedI {d1} = BlockI d2 = bI d1 = aI {d1,…,dn | n > 1} = D Block(a), Block(b) ∀x (Block(x) Red(x)) = Questions: 1. I,α

  • Block(b) ¬Block(b)?

2. I,α

  • Block(x) (Block(x) ¬Block(y))?

3. I,α

  • Block(a) Block(b)?

4. I,α

  • ∀x (Block(x) Red(x))?

5. I,α

  • ?

{ }

slide-16
SLIDE 16

Free and Bound Variables

∀x[R( y , z ) ∃y{¬P(y,x) R(y, z )}] Boxed appearances of y and z are free. All other appearances of x,y,z are bound. Formulae with no free variables are called closed formulae or

  • sentences. We form theories from closed formulae.

Note: With closed formulae, the concepts logical equivalence, satisfiability, and implication, etc. are not dependent on the variable assignment α (i.e. we can always ignore all variable assignments). With closed formulae, α can be left out on the left side of the model relationship symbol:

I

  • ϕ
slide-17
SLIDE 17

Terminology

An interpretation I is called a model of ϕ under α if I,α

  • ϕ

A PL1 formula ϕ can, as in propositional logic, be satisfiable, unsatisfiable, falsifiable, or valid. Analogously, two formulae are logically equivalent (ϕ≡ψ), if for all I,α : I,α

  • ϕ

iff I,α

  • ψ

Note: P(x) ≡ P(y)! Logical Implication is also analogous to propositional logic. Question: How can we define derivation? /

slide-18
SLIDE 18

Prenex Normal Form

Because of the quantifiers, we cannot produce the CNF form of a formula directly. First step: Produce the prenex normal form quantifier prefix + (quantifier-free) Matrix ϕ: ∀x1 ∀x2 ∀x3 … ∀xn ϕ

slide-19
SLIDE 19

Equivalences for the Production of Prenex-Normal Form

∃x (ϕ ψ) if x not free in ψ

  • (∃xϕ) ψ

∃x (ϕ ψ) if x not free in ψ

  • (∃xϕ) ψ

∀x (ϕ ψ) if x not free in ψ

  • (∀xϕ) ψ

∀x¬ϕ

  • ¬∃xϕ

∃x¬ϕ

  • ¬∀xϕ

∃x (ϕ ψ)

  • ∃xϕ ∃xψ

∀x (ϕ ψ)

  • ∀xϕ ∀xψ

∀x (ϕ ψ) if x not free in ψ

  • (∀xϕ) ψ

… and propositional logic equivalents

slide-20
SLIDE 20

Production of Prenex Normal Form

  • 1. Eliminate and ⇔
  • 2. Move ¬ inwards
  • 3. Move quantifiers outwards

Example: ¬∀x[(∀x P(x)) Q(x)] ¬∀x[¬(∀x P(x)) Q(x)] ∃x [(∀x P(x)) ¬Q(x)] and now? Solution: Renaming of variables ϕ[x/t] comes from ϕ, in which all free appearances of x in ϕ are replaced by the term t. Lemma: Let y be a variable that does not appear in ϕ. Then it holds that ∀xϕ ∀yϕ[x/y] and ∃xϕ ∃yϕ[x/y]. Theorem: There exists an algorithm that calculates the prenex normal form of any formula.

slide-21
SLIDE 21

Derivation in PL1

Why is prenex normal form useful? Unfortunately, there is no simple law as in propositional logic that allows us to determine satisfiability or general validity (by transformation into DNF or CNF). But: We can reduce the satisfiability problem in predicate logic to the satisfiability problem in propositional logic. In general, however, this produces a very large number of propositional formulae (perhaps infinitely many) Then: Apply resolution.

slide-22
SLIDE 22

Skolemization

Idea: Elimination of existential quantifiers by applying a function that produces the “right” element. Theorem (Skolem Normal Form): Let ϕ be a closed formula in prenex normal form such that all quantified variables are pair-wise distinct and the function symbols g1,g2,… do not appear in ϕ. Let ϕ = ∀x1 … ∀xi ∃yψ, then ϕ is satisfiable iff ϕ’ = ∀x1 … ∀xi ψ[y/gi(x1, …, xi)] is satisfiable. Example: ∀x ∃y [P(x) Q(y)] ∀x [P(x) Q(g(x))]

slide-23
SLIDE 23

Skolem Normal Form

Skolem Normal Form: Prenex normal form without existential quantifiers. Notation: ϕ* is the SNF of ϕ. Theorem: It is possible to calculate the skolem normal form of every closed formula ϕ ϕ ϕ ϕ. Example: ∃x ((∀x P(x)) ¬Q(x)) develops as follows: ∃y ((∀x P(x)) ¬Q(y)) ∃y (∀x (P(x) ¬Q(y))) ∀x (P(x) ¬Q(g0)) Note: This transformation is not an equivalence transformation; it only preserves satisfiability! Note: … and is not unique. Example: ∃x (p(x)) ∀y (q(y))

slide-24
SLIDE 24

Ground Terms & Herbrand Expansion

The set of ground terms (or Herbrand Universe) over a set of SNF formulae θ* is the (infinite) set of all ground terms formed from the symbols of θ* (in case there is no constant symbol, one is added). This set is denoted by D(θ*) The Herbrand expansion E(θ*) is the instantiation of the Matrix ψi of all formulae in θ* through all terms t ∈D(θ*): E(θ*)={ψi[x1/t1,…, xn/tn] | (∀ x1,…, xnψi) ∈ θ*, tj ∈D(θ*)} Theorem (Herbrand): Let θ* be a set of formulae in SNF. Then θ* is satisfiable iff E(θ*) is satisfiable. Note: If D(θ*) and θ* are finite, then the Herbrand expansion is finite finite propositional logic theory. Note: This is used heavily in AI and works well most of the time!

slide-25
SLIDE 25

Infinite Propositional Logic Theories

Can a finite proof exist when the set is infinite? Theorem (compactness of propositional logic): A (countable) set of formulae of propositional logic is satisfiable if and only if every finite subset is satisfiable. Corollary: A (countable) set of formulae in propositional logic is unsatisfiable if and only if a finite subset is unsatisfiable. Corollary: (compactness of PL1): A (countable) set of formulae in predicate logic is satisfiable if and only if every finite subset is satisfiable.

slide-26
SLIDE 26

Recursive Enumeration and Decidability

We can construct a semi-decision procedure for validity, i.e. we can give a (rather inefficient) algorithm that enumerates all valid formulae step by step. Theorem: The set of valid (and unsatisfiable) formulae in PL1 is recursively enumerable. What about satisfiable formulae? Theorem (undecidability of PL1): It is undecidable, whether a formula of PL1 is valid. (Proof by reduction from PCP) Corollary: The set of satisfiable formulae in PL1 is not recursively enumerable. In other words: If a formula is valid, we can effectively confirm this fact. Otherwise, we can end up in an infinite loop.

slide-27
SLIDE 27

Closing Remarks: Possible Extensions

PL1 is definitely very expressive, but in some circumstances we would like more…

  • Second-Order Logic: Also over predicate quantifiers

∀x,y [(x=y) ⇔ {∀p[p(x) ⇔ p(y)]}] Validity is no longer semi-decidable (we have lost compactness)

  • Lambda Calculus: Definition of predicates, e.g.

λx,y[∃z P(x,z) Q(z,y)] defines a new predicate of arity 2 Reducible to PL1 through Lambda-Reduction

  • Uniqueness quantifier: ∃!xϕ(x) – there is exactly one x …

→ Reduction to PL1: ∃x [ϕ(x) ∀y {ϕ(y) x = y}]

slide-28
SLIDE 28

Closing Remarks: Processing

  • PL1-Resolution: Execute resolution on clauses with

variables instead of on the Herbrand expansion.

– Unification – Resolution on classes of ground instances.

  • Restriction of the syntactical form: Only Horn

clauses

– PROLOG – considerably more efficient methods.

  • Finite theories: In applications, we often have to deal

with a fixed set of objects. Domain closure axiom: ∀x[x=c1 x=c2 … x=cn]

– Translation into finite propositional theory is possible.

slide-29
SLIDE 29

Summary

  • PL1 makes it possible to structure statements,

thereby giving us considerably more expressive power than propositional logic.

  • Formulae consist of terms and atomic formulae,

which, together with connectors and quantifiers, can be put together to produce formulae.

  • Interpretations in PL1 consist of a universe and an

interpretation function.

  • The Herbrand Theory shows that satisfiability in PL1

can be reduced to satisfiability in propositional logic (although infinite sets of formulae can arise under certain circumstances).

  • Validity in PL1 is not decidable (it is only semi-

decidable)