Proof Flashcards
Meaning of A ⊨ B
A ⊨ B
means that B
is true in every structure in which A
is true.
Meaning of A ⊢ B
A ⊢ B
means B
can be proved using A
as the premises.
Soundness
If A ⊢ B
then A ⊨ B
Completeness
If A ⊨ B
then A ⊢ B
reductio ad absurdum
An assumption is rejected because it leads to a contradiction (an absurdity).
AND introduction
AND elimination
OR Introduction
OR Elimination
NOT Introduction
NOT Elimination
IMPLIES Introduction
IMPLIES Elimination
Double negation elimination
Excluded middle
⊢ A ∨ ¬A
Universal Elimination
- We know that for all
x
the statementp
holds. - We have a term
t
that we need to use in our argument. - So we know that the statement
p
holds if we replacex
byt
everywhere in the statement.
Universal introduction
- We are using
x
for a completely arbitrary element of the domain, being careful not to assume it has any special properties. - We show that
x
has to have the property stated in the formulap
. - Because
x
was arbitrary, we conclude that the formulap
must hold for allx
.
Existential elimination
- We know there is some
x
with the property stated byp
. - Let’s introduce a new name,
a
, for a particular thing with this property. - We deduce that some statement,
s
, (not involvinga
) must hold by an argument using the assumption thata
has propertyp
. - We conclude that
s
holds on its own, without the assumption abouta
having propertyp
.
Existential introduction
- We have a statement
p
about some particular termt
. - We conclude that there is some x with the property stated by
p
where we replacet
byx
.
literal
A WFF which is either an atom (an atomic proposition) or the negation of an atom.
Clause
A set of literals.
A clause is used to stand for the disjunction of its elements.
[a, ¬b] refers to both:
- a ∨ ¬b
- ¬b ∨ a
Horn clauses
Clauses with at most one positive literal.
Equivalent clause to false
Empty clause[]
Equivalent disjunction to a → b
¬a ∨ b
Clausal resolution
α
is an atomΣ₁
and Σ₂
are clauses
α
is called the atom resolved upon.Σ₁
and Σ₂
is the resolvent.
Procedure for reduction to CNF
- Replace any → by using
¬ A ∨ B
instead ofA → B
2.
- Replace any wff of form¬¬A
byA
- Replace¬ ( A ∨ B )
by¬A ∧ ¬B
- Replace¬ ( A ∧ B )
by¬A ∨ ¬B
3.
- ReplaceA ∨ ( B ∧ C )
by(A ∨ B) ∧ ((A ∨ C)
- Replace(A ∧ B) ∨ C
by(A ∨ C) ∧ ( B ∨ C )
Clausal Form
We write( a ∨ b ) ∧ ( c ∨ d ) ∧ ( a ∨ d ∨ e )
in the form{ [a, b], [c, d], [a, d, e] }
The innermost sets are treated as disjunctions of their elements, the whole is treated as the conjunction of its elements.
Equivalent clause to true
Empty conjunction
{ }
Resolution Refutation Procedure
Given a finite set of wffs Δ
and a wff f
, carry out this procedure:
- Convert
Δ
to CNF, giving a set of clauses,Φ
. - Convert the negation of
f
to CNF givingΨ
. - Let
Γ = Φ ∨ Ψ
- Iteratively apply resolution to the clauses in
Γ
adding the resolvents toΓ
.
Continue until no more resolution is possible or until the empty clause is a resolvent.
Resolution in first-order logic
- Convert knowledge base and negated query to clauses
- Keep resolving until get empty clause or cannot continue
Convert to clausal form: first order case
6 Steps
- Eliminate
→
- Move
¬
inwards
-¬∀x ɑ
rewrites to∃x ¬ɑ
-¬∃x ɑ
rewrites to∀x ¬ɑ
- Eliminate remaining variables (Skolemization)
- Rename variables so
v
different for each∀v
. - Move
∀
s to the front - Distribute ∧ over ∨
Finally, rename variables so different clauses have different variables.
Convert to clausal form
Move ¬
inwards
-
¬∀x ɑ
rewrites to∃x ¬ɑ
-
¬∃x ɑ
rewrites to∀x ¬ɑ
Skolemization: idea
for unqualified existential variables
Replace ¬∃x P(x)
by P(c)
where c
is a new constant.
∃y ∀x L(x, y)
skolemizes to ∀x L(x, c)
Skolemization: idea
for qualified existential variables
If x₁, ... xₙ
are the universally quantified variables with scope including ∃x ɑ
, then replace all the occurrences of x
in ∃x ɑ
by f(x₁, ... xₙ)
where f is a new function symbol.
∀x ∃y L(x, y)
skolemizes to ∀x L(x, f(x))
Does skolemization preserve logical equivalence?
No. ∃x P(x)
is not logically equivalent to P(c)
.
Skolemization preserves satisfiability. All we need is to preserve satisfiability for refutation completeness.
Substitution
A finite set of pairs {x₁/t₁, ... xₙ/tₙ}
where the xᵢ
are distinct variables ant the tᵢ
are arbitrary terms.
If θ
is a substitution and ⍴
is a literal, then θ⍴
is the literal that results from simultaneously replacing each xᵢ
in ⍴
by tᵢ
.
Instance
⍴
is an instance of ⍴'
if for some θ
, we have θ⍴'
= ⍴
Most general unifier
θ
is an MGU of c₁
and c₂
iff
for any other unifier θ₁
of c₁
and c₂
,
then there exists θ₂
such that θ₁
=θ₂θ
MGUs are not necessarily unique.
MGU algorithm
To find MGU of ⍴₁
and ⍴₂
- Start with
θ={}
- Exit if
⍴₁
=⍴₂
- Otherwise get the disagreement set, DS, which is the pair of terms at the first place where the terms disagree.
- Find var
v∈DS
, & termt∈DS
not containingv
. If not, fail. - Otherwise set
θ
to{v/t} θ
and⍴ᵢ
to{v/t} ⍴ᵢ
. Go to step 2.
2 Reasons the MGU Algorithm might fail
-
Clash
. A constant variable cannot be changed by any substitution. - Cyclic. Cannot find
v, t, ∈ DS
wherev
does not occur int
.
Factoring
Given c₁ ∪ c₂
where |c₂|>1
and θ
is an MGU of c₂
.
Infer θ(c₁ ∪ c₂)
From [Likes(sam, x), Likes(y, bananas)]
Infer [Likes(sam, bananas)]