Interface:First-order logic with quantifiability
| First-order logic with quantifiability |
| This interface collects important theorems from first-order logic, which builds on propositional logic by adding quantifiers ("for all" and "there exists") and equality. It is meant as a user-friendly reservoir for those interfaces and proof modules which merely use first-order logic, without proving anything new within it. It also includes results which rely on the axiom of quantifiability, such as most of the ones involving substituting a term for a variable.
Statements can be added if necessary, but then the exporting modules have to be updated accordingly. |
| Module usage |
|---|
| Parameters |
| Interface:Classical propositional calculus |
| Imported by |
| Interface:Peano axioms Interface:Tarski's geometry axioms and others |
| Exported by |
| First-order logic with quantifiability First-order logic in terms of substitution built on equality |
[edit] Formulas, objects, and quantification
We build on Interface:Classical propositional calculus:
By convention we use φ, ψ, χ, and θ to represent formulas:
We use the term object to refer to something which is subject to quantification or equality. From an axiomatic point of view, what is a valid object is defined implicitly, by axioms such as those of ZFC set theory or Peano arithmetic.
var (object s t u s0 s1 t0 t1)
A variable is something we can quantify over.
var (variable x y z x0 x1 y0 y1)
A variable can be used where an object is expected, although it needs to be converted via the following explicit conversion. When we are writing informally (rather than in JHilbert proofs themselves), we may omit the conversion (it should be understood whereever we use a variable in a context where an object is expected).
The reverse is not possible. Examples of objects which are not variables might be s + t for Peano arithmetic, or s ∪ t for set theory.
We extend the available formulas with universal quantification and existential quantification:
term (formula (∃ variable formula))
[edit] Relationship between universal and existential quantification
stmt (NotThereExists () () ((¬ (∃ x φ)) ↔ (∀ x (¬ φ))))
[edit] Builders for quantifiers
As with propositional calculus, we need to build up formulas explicitly, and these rules let us do it. We provide them for both quantifiers, for implication and the biconditional.
stmt (addThereExists () ((φ → ψ)) ((∃ x φ) → (∃ x ψ)))
stmt (buildForAll () ((φ ↔ ψ)) ((∀ x φ) ↔ (∀ x ψ)))
stmt (buildThereExists () ((φ ↔ ψ)) ((∃ x φ) ↔ (∃ x ψ)))
[edit] Additional builders
Some of these builders rely on theorems we haven't presented yet, but they are similar to the simple ones above in terms of general intent.
((φ → (ψ ↔ χ)))
(φ → ((∃ x ψ) ↔ (∃ x χ))))
stmt (buildForAllInConsequent ((x φ))
((φ → (ψ ↔ χ)))
(φ → ((∀ x ψ) ↔ (∀ x χ))))
[edit] Order
The order of adjacent quantifiers of the same type can be exchanged:
stmt (ThereExistsCommutation () () ((∃ x (∃ y φ)) ↔ (∃ y (∃ x φ))))
∃ followed by ∀ can be switched,
but the converse does not in general hold.
[edit] Combining quantified statements
Quantifiers of the same variable can sometimes be combined or split:
stmt (ThereExistsDisjunction () () ((∃ x (φ ∨ ψ)) ↔ ((∃ x φ) ∨ (∃ x ψ))))
stmt (ThereExistsImplication () () ((∃ x (φ → ψ)) ↔ ((∀ x φ) → (∃ x ψ))))
stmt (ForAllImplication () () ((∀ x (φ → ψ)) → ((∀ x φ) → (∀ x ψ))))
stmt (ThereExistsConjunction () () ((∃ x (φ ∧ ψ)) → ((∃ x φ) ∧ (∃ x ψ))))
[edit] Biconditional
[edit] Other kinds of splits and combinations
stmt (ForAllBiconditionalThereExists () () ((∀ x (φ ↔ ψ)) → ((∃ x φ) ↔ (∃ x ψ))))
stmt (ThereExistsConjunctionCombining () ()
(((∀ x φ) ∧ (∃ x ψ)) → (∃ x (φ ∧ ψ))))
stmt (ThereExistsConjunctionRightCombining () ()
(((∃ x φ) ∧ (∀ x ψ)) → (∃ x (φ ∧ ψ))))
stmt (combineThereExistsForAll () ((∃ x φ) (∀ x ψ)) (∃ x (φ ∧ ψ)))
[edit] Generalization and specialization
We can remove a universal quantifier:
stmt (specialize () ((∀ x φ)) φ)
The converse is sometimes possible, but only with some restrictions. Either the variable does not occur in the formula, or the formula is unconditionally true:
stmt (generalize () (φ) (∀ x φ))
An existential quantifier can be added unconditionally,
and can be removed if the variable does not occur in the formula.
stmt (removeThereExists ((x φ)) ((∃ x φ)) φ)
stmt (removeThereExistsInConsequent ((x φ)) ((antecedent → (∃ x φ))) (antecedent → φ))
[edit] Equality
Equality is reflexive, symmetry, and transitive.
stmt (EqualityReflexivity () () (s = s))
stmt (EqualitySymmetry () () ((s = t) ↔ (t = s)))
stmt (swapEquality () ((s = t)) (t = s))
stmt (EqualityTransitivity () () (((s = t) ∧ (t = u)) → (s = u)))
stmt (applyEqualityTransitivity () ((s = t) (t = u)) (s = u))
Here are convenience theorems which are closely related to those:
stmt (applyEqualityTransitivityInConsequent () ((φ → (s = t)) (φ → (t = u))) (φ → (s = u)))
There is also the principle of "equals can be substituted for equals". In our system, this is done via builders, and here we provide one for equals itself. Theories which build on first-order logic will provide builders for additional expressions such as ∈ (is an element of) for set theory or + (addition) for Peano arithmetic.
stmt (buildEquality () ((s0 = s1) (t0 = t1)) ((s0 = t0) ↔ (s1 = t1)))
We also supply a variety of variant builders, for convenience:
stmt (buildEqualityRR () ((s0 = s1)) ((s0 = t) ↔ (s1 = t)))
stmt (EqualityBuilderLL () () ((s0 = s1) → ((t = s0) ↔ (t = s1))))
stmt (buildEqualityLL () ((t0 = t1)) ((s = t0) ↔ (s = t1)))
stmt (buildEqualityInConsequent ()
((φ → (s0 = s1))
(φ → (t0 = t1)))
(φ → ((s0 = t0) ↔ (s1 = t1))))
stmt (buildEqualityRRInConsequent ()
((φ → (s0 = s1)))
(φ → ((s0 = t) ↔ (s1 = t))))
stmt (buildEqualityLLInConsequent ()
((φ → (t0 = t1)))
(φ → ((s = t0) ↔ (s = t1))))
We also define ≠, which is just an abbreviation for negation and equality.
[edit] Free variables
We provide a variety of ways to prove that a variable is not free in a formula, and a variety of conclusions that follow from this. These theorems do not depend on the details of how is-not-free-in is defined, and there is no theorem that implies the negation of is-not-free-in for cases not covered here. In other words, is-not-free-in need not correspond exactly to the conventional definition of freeness, as long as it corresponds for the cases we need.
[edit] Showing a variable is free
A variable is not free in a formula if it does not occur in the formula:
A variable is not free in a formula if it is bound by a quantifier:
stmt (BoundThereExistsNotFree () () (x is-not-free-in (∃ x φ)))
If a variable is not free in a formula it is not free in a formula which adds another quantifier (possibly to a different variable) at the start:
stmt (addThereExistsNotFree () ((x is-not-free-in φ)) (x is-not-free-in (∃ y φ)))
If a variable is not free in any of the parts of a formula it is not free in the formula which joins them with connectives:
stmt (implicationNotFree ()
((x is-not-free-in φ) (x is-not-free-in ψ))
(x is-not-free-in (φ → ψ))
)
stmt (disjunctionNotFree ()
((x is-not-free-in φ) (x is-not-free-in ψ))
(x is-not-free-in (φ ∨ ψ)))
stmt (conjunctionNotFree ()
((x is-not-free-in φ) (x is-not-free-in ψ))
(x is-not-free-in (φ ∧ ψ)))
stmt (biconditionalNotFree ()
((x is-not-free-in φ) (x is-not-free-in ψ))
(x is-not-free-in (φ ↔ ψ)))
And we supply a builder for is-not-free-in:
[edit] Adding or removing quantifiers
If a variable is not free in a formula, it is legitimate to add or remove quantifiers from that formula:
stmt (ThereExistsAddRemoveNotFree () ((x is-not-free-in φ)) ((∃ x φ) ↔ φ))
[edit] Moving formulas in and out of quantification
The results in this section all have to do with being able to move around formulas relative to quantifiers, given that the quantified variable is not free in the formula being moved.
[edit] Implication
stmt (moveAntecedentOutOfForAll () ((∀ x (φ → ψ)) (x is-not-free-in φ)) (φ → (∀ x ψ)))
stmt (moveAntecedentIntoForAll ()
((φ → (∀ x ψ)) (x is-not-free-in φ))
(∀ x (φ → ψ)))
stmt (ThereExistsAntecedentMovementNotFree () ((x is-not-free-in φ)) ((∃ x (φ → ψ)) ↔ (φ → (∃ x ψ))))
stmt (ForAllImplicationConsequentMovement () ((x is-not-free-in ψ)) ((∀ x (φ → ψ)) ↔ ((∃ x φ) → ψ)))
stmt (ThereExistsImplicationConsequentMovement () ((x is-not-free-in ψ)) ((∃ x (φ → ψ)) ↔ ((∀ x φ) → ψ)))
stmt (ThereExistsConjunctionMovementNotFree () ((x is-not-free-in φ)) ((∃ x (φ ∧ ψ)) ↔ (φ ∧ (∃ x ψ))))
[edit] Versions with distinct variables
stmt (ThereExistsConjunctionRightMovement ((x ψ)) () ((∃ x (φ ∧ ψ)) ↔ ((∃ x φ) ∧ ψ)))
stmt (ThereExistsDisjunctionMovement ((x φ)) () ((∃ x (φ ∨ ψ)) ↔ (φ ∨ (∃ x ψ))))
stmt (ThereExistsDisjunctionRightMovement ((x ψ)) () ((∃ x (φ ∨ ψ)) ↔ ((∃ x φ) ∨ ψ)) )
stmt (ThereExistsAntecedentMovement ((x φ)) () ((∃ x (φ → ψ)) ↔ (φ → (∃ x ψ))))
Here are a few rules based on these:
((antecedent → (φ ∧ (∃ x ψ))))
(antecedent → (∃ x (φ ∧ ψ))))
stmt (moveRightConjunctIntoThereExistsInConsequent ((x ψ))
((antecedent → ((∃ x φ) ∧ ψ)))
(antecedent → (∃ x (φ ∧ ψ))))
stmt (repeatAntecedentThereExists ((x antecedent))
((antecedent → (∃ x ψ)))
(antecedent → (∃ x (antecedent ∧ ψ))))
[edit] Scattering and gathering
If we have two formulas joined by a conjunction, one quantified over one variable and the other quantified over another, we can express the quantifiers either at the beginning or with the formulas they apply to.[1] We name the propositions φx and ψy to express the idea that φx will typically contain x and ψy will typically contain y.
stmt (ThereExistsScattering ((φx y) (ψy x)) ()
((∃ x (∃ y (φx ∧ ψy))) ↔ ((∃ x φx) ∧ (∃ y ψy))))
stmt (gatherThereExistsInConsequent ((φx y) (ψy x)) ((antecedent → ((∃ x φx) ∧ (∃ y ψy))))
(antecedent → (∃ x (∃ y (φx ∧ ψy)))))
[edit] Adding quantifiers to theorems which are implications
These variants on moving formulas turn out to be used particularly often:
((φ → ψ))
((∃ x φ) → ψ))
stmt (addForAllToConsequent ((x φ))
((φ → ψ))
(φ → (∀ x ψ)))
stmt (addForAllToConsequentNotFree () ((x is-not-free-in φ) (φ → ψ)) (φ → (∀ x ψ)))
[edit] Converting variable to object
We can convert a formula containing a variable x to one containing an object s using the following theorem.
((((value x) = s) → (φx ↔ φs))
φx
)
φs)
[edit] Substitution
Having a formula which substitutes one variable for another greatly increases the readability of many theorems. For example, a statement of induction will generally apply the same formula with 0, k, k + 1, or n.
This kind of substitution is known as proper substitution as there are some rules about what kinds of substitution are valid. The following theorems enable making proper substitutions.
We first define the subst term:
so for example (subst s x φ) can be thought of as a copy of φ in which x is changed to s. In more conventional notation this would be [s / x] φ (or, using a common but potentially ambiguous notation, changing φ(x) to φ(s)).
[edit] Building up expressions involving subst
If we have a theorem, we can add a variable substitution onto it.
From an equality, we can build an equivalence of substitutions:
((s = t) → ((subst s x φ) ↔ (subst t x φ))))
stmt (buildSubstReplacement () ((s = t))
((subst s x φ) ↔ (subst t x φ)))
A statement of the form x = s → (φ ↔ ψ), where x is not free in ψ, can be thought of as an implicit substitution, as it can be used to relate a formula about x to a formula about s. The distinct variable constraint between x and s might be one we can eliminate, but in practice it isn't too difficult to deal with.
((((value x) = s) → (φ ↔ ψ)))
((subst s x φ) ↔ ψ))
We can add subst to both sides of an implication or a biconditional.
stmt (SubstBuilder () () ((∀ x (φ ↔ ψ)) → ((subst s x φ) ↔ (subst s x ψ))))
stmt (addSubst () ((φ → ψ)) ((subst s x φ) → (subst s x ψ)))
stmt (buildSubst () ((φ ↔ ψ)) ((subst s x φ) ↔ (subst s x ψ)))
We can move subst across logical connectives,
stmt (SubstDisjunction () () ((subst s x (φ ∨ ψ)) ↔ ((subst s x φ) ∨ (subst s x ψ))))
stmt (SubstConjunction () () ((subst s x (φ ∧ ψ)) ↔ ((subst s x φ) ∧ (subst s x ψ))))
stmt (SubstImplication () () ((subst s x (φ → ψ)) ↔ ((subst s x φ) → (subst s x ψ))))
stmt (SubstBiconditional () () ((subst s x (φ ↔ ψ)) ↔ ((subst s x φ) ↔ (subst s x ψ))) )
and quantifiers (to distinct variables).
[edit] Substitution of a variable which does not appear
[edit] Turning substitution into there-exists
One way to prove a formula of the form ∃ x φ is to demonstrate a particular x for which φ holds.
stmt (introduceThereExistsFromObject () ((subst s x φ)) (∃ x φ))
[edit] Specialization
Specialization as conventionally cited contains a substitution, and is often worded something like "if a formula holds for all values of a variable, it also holds when a particular term is properly substituted for that variable" or in symbols ∀ x φ → [ s / x ] φ.[2][3][4]
stmt (specializeToObjectInConsequent () ((antecedent → (∀ x φ))) (antecedent → (subst s x φ)))
[edit] Changing the quantified variable
We can transform a quantified formula by substituting each of the occurences of the variable we are quantifying over to another variable, and changing the variable in the quantifier accordingly. Here is a version with implicit substitution,
((y φx) (x φy) (x y))
((((value x) = (value y)) → (φx ↔ φy)))
((∃ x φx) ↔ (∃ y φy)))
stmt (ChangeVariableForAll ((y φx) (x φy) (x y))
((((value x) = (value y)) → (φx ↔ φy)))
((∀ x φx) ↔ (∀ y φy)))
and one with explicit substitution.
((∃ x φ) ↔ (∃ y (subst (value y) x φ))))
stmt (ChangeVariableExplicitForAll ((y φ) (x y)) ()
((∀ x φ) ↔ (∀ y (subst (value y) x φ))))
Here are versions of the implicit ones with explicit freeness hypotheses rather than distinct variable constraints.
((x y))
((x is-not-free-in φy)
(y is-not-free-in φx)
(((value x) = (value y)) → (φx ↔ φy)))
((∃ x φx) ↔ (∃ y φy)))
stmt (ChangeVariableForAllNotFree ((x y))
((x is-not-free-in φy)
(y is-not-free-in φx)
(((value x) = (value y)) → (φx ↔ φy)))
((∀ x φx) ↔ (∀ y φy)))
A similar transformation is possible for substitution.
((y φx) (x φy) (x y) (s x) (s y))
((((value x) = (value y)) → (φx ↔ φy)))
((subst s x φx) ↔ (subst s y φy)))
[edit] More theorems involving subst
stmt (SubstItself () () ((subst (value x) x φ) ↔ φ))
[edit]
Although the following theorems do not refer to substitution with subst, they do express similar ideas.
((∀ x (((value x) = s) → φ)) ↔ ψ))
stmt (ImplicitThereExists ((x s) (x ψ)) ((((value x) = s) → (φ ↔ ψ)))
((∃ x (((value x) = s) ∧ φ)) ↔ ψ))
[edit] Quantifiability
Although the above results do imply the axiom of quantifiability, at least on occasion it is useful directly.
[edit] References
- ↑ eeanv, metamath's set.mm, accessed August 8, 2010
- ↑ stdpc4 in metamath's set.mm, accessed June 9, 2010
- ↑ a5sbc in Raph Levien's Peano, accessed June 9, 2010
- ↑ Hirst and Hirst, axiom 4 on page 51
Interface module parsed successfully