With Chapter 9, we move from (mainly) propositional logic to predicate logic. We will need to extend and complicate our language. Here is a quick list of the main changes to the syntax of the first-order language we're developing.
We add two new pieces to our language: variables and quantifiers.
Up until now, the primitive symbols of our language have all been constants, predicates, and connectives.
Now, however, we will treat constants as only one kind of term. Variables are also terms. (So are function symbols with terms in their argument places, but we have mostly not been using function symbols.)
We use letters early in the alphabet for constants: a, b, c, d, e, f, g.
We use letters late in the alphabet for variables: t, u, v, w, x, y, z
Variables can appear anywhere constants do. So our syntax is now more complex.
We will define the notion of a well-formed formula, or wff for short.
The scope of a quantifier is the first complete wff that follows it
A quantifier binds any variable which (a) is within its scope, (b) matches the quantifier's variable, and (c) isn't already bound by another quantifier.
A variable that is not bound by any quantifier is free.
A sentence is a wff with no free variables.