Formula (FOL)
Definition
The logical formulas of a FOL are (like terms) defined inductively by the following 5 rules[1]:
- If t1 and t2 are terms then t1≐t2 is a formula
- If t1,…,tm are terms and P is an m-ary predicate symbol then Pt1⋯tm is a formula
- If A is a formula, then (¬A) is a formula
- If A and B are formulas then:
- (A∧B), (A∨B), (A→B) and (A↔B) are all formulas too
- Note, as mentioned on the FOL page, we can define some of these logical connective symbols in terms of the others. Keep that in mind here
- (A∧B), (A∨B), (A→B) and (A↔B) are all formulas too
- If A is a formula and x is a variable symbol then both:
- ∀xA and ∃xA are formulas
- Again from the FOL page recall that we can define ∀ using ∃ and ∃ using ∀
- ∀xA and ∃xA are formulas
We have been rather lax in how we use brackets here. In practice we shall use them whenever they help readability, and also discard them whenever it helps, for example:
- ∃x(x≐y) is easier to read than ∃xx≐y
- A∨B∨C∨D is easier to read than (((A∨B)∨C)∨D)
If we fixed (1) by changing rule 5 to ∀x(A) and ∃x(A) then we'd have lots of things that look like:
- ∃x((…→…))
So just be comfortable that we could write everything out totally unambiguously using lots of brackets without having to address the issue of parsing.
BNF Definition
I don't like this (as it is written now), it needs cleaning up. But using[1] we get:
- Formula ::= Term ≐ Term | PREDICATE (Term)n-times | ¬ Formula | Formula (∧|∨|→|↔) Formula | (∀|∃) VARIABLE Formula
TODO: Clean this up, write a grammar that is "correct". For example there should be brackets on everything between the |s. This reads like "term followed by ≐ followed by (Term or PREDICATE ....)
Terminology
- Any formula given by rules 1 or 2 is called an atomic formula.
- Any other formula is called a composite formula