Quantifiers and Scope
Nested Quantifiers and Scope
When a sentence contains more than one quantifier, the quantifiers are nested: the scope of one sits inside the scope of another. The scope of a quantifier is everything within the parentheses (or brackets) that follow it, and it determines which variables that quantifier binds.
The crucial thing to understand here is that order matters. Swapping the order of nested quantifiers can completely change what a sentence means.
- says: "For every , there exists some such that ." The can be different for each .
- says: "There is some single such that for every , ." Now one specific must work for all values.
Think of it with a concrete predicate. Let mean " admires ."
- : Everyone admires someone (possibly different people).
- : There's one person that everyone admires.
Those are very different claims. When you're symbolizing, always read from left to right and ask yourself which quantifier has wider scope.
Multiple Predicates in Quantified Statements
Quantified statements often involve more than one predicate, and the predicates can share variables. This is where symbolization gets interesting, because the logical connectives between the predicates shape the meaning.
A common pattern is a universally quantified conditional with an existential inside:
This says: "For every , if is , then there exists some that is and stands in relation to ."
For example, let = " is a student," = " is a course," and = " is enrolled in ." The formula then reads: "Every student is enrolled in some course."
Pay attention to which variables are bound by which quantifier. In the formula above, is bound by throughout, while is bound by only within the inner parentheses.
Predicates and Identity
The Identity Predicate
The identity predicate () is a special built-in predicate that asserts two terms refer to the same object. You write it between its two arguments: means " and are the very same thing."
Identity has three defining logical properties:
- Reflexivity: . Everything is identical to itself.
- Symmetry: . If is identical to , then is identical to .
- Transitivity: . If and , then .
You'll also frequently use the negation of identity, , which asserts that two terms refer to distinct objects. This becomes essential for uniqueness claims (covered below).

Relational Predicates
A relational predicate takes two or more arguments and asserts that a specific relation holds between them. While one-place predicates describe properties of single objects (like for " is prime"), relational predicates describe connections between objects.
Some examples:
- : " loves " (two-place)
- : " is greater than " (two-place)
- : " is between and " (three-place)
Relational predicates combine with quantifiers to express claims about how objects in a domain relate to one another. For instance:
- : "Everyone loves someone."
- : "Someone loves everyone."
- : "If anyone loves someone, that person loves them back." (Love is symmetric.)
The argument positions matter. and say different things, so be careful about which variable goes where when you symbolize.
Descriptions and Uniqueness
Uniqueness Claims
A uniqueness claim asserts that exactly one object satisfies a given condition. To express this in predicate logic, you combine the existential quantifier with the identity predicate using this standard pattern:
Here's how to read it, step by step:
- : There exists some that is .
- : And for anything , if is also , then must be identical to that same .
Together, this guarantees that at most one thing is (the second part) and at least one thing is (the first part). That gives you exactly one.
For example, "There is exactly one prime minister":
where = " is a prime minister."
Definite Descriptions
A definite description is a phrase that picks out a unique individual by describing it, typically using "the": the tallest mountain, the current president, the author of Principia Mathematica.
In predicate logic, definite descriptions are symbolized using the same uniqueness formula. The idea is that "the " presupposes there is exactly one . So to say something about "the ," you assert that a unique exists and then predicate something of it.
For example, "The author of Principia Mathematica is British" gets symbolized as:
where = " authored Principia Mathematica" and = " is British."
The steps for symbolizing a definite description:
- Identify the descriptive condition (the property that "the" phrase specifies). That becomes your predicate .
- Write the uniqueness formula: .
- Add whatever is being predicated of "the " as an additional conjunct inside the scope of .
One note: this approach follows Russell's theory of definite descriptions, which treats "the " not as a simple name but as a quantified expression that asserts existence and uniqueness. This is the standard treatment in most formal logic courses.