Quantification
Logical concept
Quantification is the logical operation of specifying how many things a proposition applies to, ranging over a domain of individuals, rather than naming any one of them directly.
Say we have a predicate “is a philosopher” (represented as $P$). Instead of having to pick out each particular person and saying they are a philosopher, quantification lets us make a claim about a whole group. There are two standard quantifiers: the universal quantifier, written $\forall$ and said “for all”; and the existential quantifier, written $\exists$ and said “there exists” or “there is at least one”. “For all” allows us to say something holds for everything in a domain, for example “all humans are philosophers” becomes $\forall x.Px$ (where the domain is humans). “There exists” allows us to say that there is at least one thing in the domain. For example, “some humans are philosophers” becomes $\exists x. Px$. What types of thing you are allowed to quantify over depends on what logic system you are using, but in the most common, [first order logic](https://dailysocratic.com/dictionary/first-order-logic-fol/), you can only quantify over individuals, but in some other systems, such as second order logic, you to also quantify over predicates!
One of the other interesting things about these two quantifiers, is you don’t actually need both of them. If I want to say “all humans are philosophers”, I could equivalently say “there does not exist a human who isn’t a philosopher.” If I write both of these out logically, they look quite different. The first looks like $\forall x. Px$ and the second, $\neg \exists x . \neg P x$. Yet, both appear to communicate the same idea. Similarly, if I say “no human is a philosopher”, that would look like $\forall x . \neg P x$, but the statement “there does not exist a human philosopher” communicates the exact same idea, yet would be written $\neg \exists x . Px$.
As a general rule, $\forall x . \neg P x \equiv \neg \exists x . Px$, and $\neg \forall x. Px \equiv \exists x . \neg P x$. (note: for some logical systems this isn't true, but it is in [FOL](https://dailysocratic.com/dictionary/first-order-logic-fol/))