Statements About Everything and Something
Propositional logic cannot express "every integer has a successor" — it has no way to talk about all or some objects. Predicate logic adds predicates — statements with a variable, true or false depending on — and quantifiers that range over a domain.
The two quantifiers:
- Universal — "for all , ": true when holds for every in the domain.
- Existential — "there exists an with ": true when at least one satisfies .
The order of mixed quantifiers matters enormously. ("every has some ") is generally different from ("some single works for all ") — the second is much stronger. "Every person has a mother" is true; "there is one mother of everyone" is false. Swapping quantifiers can silently change the meaning.
Negating quantified statements follows a clean rule that flips the quantifier and negates the predicate: In words: the negation of "all are " is "some is not " (one counterexample suffices), and the negation of "some is " is "none is ." This is why a universal claim is disproved by a single counterexample.
Common pitfall: swapping the order of quantifiers or negating them incorrectly. is not the same as . And is — "not all" means "at least one isn't," not "none is." Negation flips to (and vice versa) while negating the inside.