08. Inference in First Order Logic Flashcards

1
Q

Universal instantiation: we can …
We denote the result of applying the substitution θ to the sentence α by Subst(θ, α) so that
∀vα Subst({v /g }, α)
({v/g} means that v is replaced by g).
Above substitutions: {x/John}, {x/Richard}, {x/Father(John)}.

A

infer any sentence from substituting a ground term (a term without variables) for the variable.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

When existential quantifiers appear, we…
More formally: For any sentence α, variable v, and constant symbol k that does not appear elsewhere in the knowledge base:

A

replace a variable by a single new constant symbol.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Existential Instantiation: Change of Knowledge Base

Universal Instantiation
Universal instantiation can be applied several times to add sentences. The new knowledge base is logically equivalent to the …

Existential Instantiation
Existential instantiation can be applied once to replace the existential sentence.
The new knowledge base is not …, but is satisfiable if the old knowledge base was satisfiable.

A

old when performing all possible substitutions and deleting the quantified sentence, or adding new sentences and keeping the quantified sentence.

equivalent to the old (more than one satisfying object might exist)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Reduction to Propositional Inference: General Approach

A

review slide 9: what should i understand from this important slide?

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Problems with Propositionalization
Propositionalization seems to generate lots of irrelevant sentences. E.g., from
∀x King(x)∧Greedy(x)⇒Evil(x) King (John)
∀ y Greedy (y )
it seems obvious that Evil(John), but propositionalization …
With p k-ary predicates and n constants, there are

A

produces lots of facts such as Greedy(Richard) that are irrelevant.

p*n^k instantiations. With function symbols, it gets much worse!

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is Generalized Modus Ponens?

A

Due to the presented problems with propositionalization, we aim at directly inferring sentences in first-order logic.
To infer Evil(John) from a simplified version of the previous example
∀x King(x)∧Greedy(x)⇒Evil(x) King (John)
Greedy (John)
we only need to find a substitution θ that makes King(x), Greedy(x) identical to sentences already in the KB, so that we can assert the conclusion Evil(x).
Solution: θ = {x/John}.

(see slide 13 for example)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Unification
Lifted inference rules require …, called unification.
The unify algorithm Unify(p, q) = θ returns a unifier θ such that …

Remark:

Why do we standardize apart one of the two sentences by renaming its variables?

A

finding substitutions that make different logical expressions look identical

Subst(θ, p) = Subst(θ, q) if it exists.

If several unifications are used, they are considered to be taken in parallel, i.e. the order in which the substitutions are given does not matter.

–> because x cannot take the values John and Elizabeth at the same time.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Unification: Most General Unifier
In many cases, there is more than one unifier, e.g., Unify(Knows(John,x),Knows(y,z))
could return
{y/John,x/z} or {y/John,x/John,z/John}.
The first unifier gives …, the second one gives Knows(John,John). The second result can be obtained from the first one by the substitution z/John
→ The first unifier is more general.
There always exists a …

A

Knows(John,z) as the result

most general unifier as shown by the algorithm in Fig. 1 of the AI book in the section “Inference in First-Order Logic”.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Properties of Forward Chaining
Sound and complete for first-order Horn clauses
(proof similar to the one for propositional logic)
Forward chaining may not…; e.g., Peano axiom for natural numbers:
NatNum(0)
∀n NatNum(n) ⇒ NatNum(S(n)) (S(n) : successor of n)
Forward chaining would add NatNum(S(0)), NatNum(S(S(0))), … This is unavoidable: entailment with Horn clauses is semidecidable (as for general first-order logic).

Datalog: Declarative logic programming language
Datalog = first-order Horn clauses + no functions (e.g., crime KB) Forward chaining terminates for Datalog in a polynomial number of iterations: at most p · nk literals (p: number of predicates, k: maximum arity of predicates, n: number of constant symbols)

A

terminate in general if function symbols are involved

review Forward Chaining videos

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Explain backward chaining.

A

Go through pseudocode on slides by yourself–> put it on paper

How well did you know this?
1
Not at all
2
3
4
5
Perfectly