Why is the empty set in the standard topology?

To put a different slant what others have said, the statement

"Every $x \in U$ has the property $p(x)$" is equivalent to

"There is no $x\in U$ which lacks the property $p(x)$."

In the case of the empty set $\varnothing$, we are therefore allowed to say that "Every $p\in \varnothing$ has the property that there exists ... etc." because you cannot find an $x\in \varnothing$ which doesn't have the property. (In fact, you cannot find any $x\in \varnothing$ at all!)


A second informal way to look at it : if every $x\in A$ has property $p(x)$, and every $x\in B$ has property $p(x)$, then intuitively you would want to say that every $x\in A \cap B$ has property $p(x)$. Extending this intuition to the case where $A$ and $B$ have no elements in common $(A\cap B = \varnothing)$ leads us to the idea of vacuous universal quantification.


This has in fact nothing to do with topology: it is just basic logic. A statement of the form "for all $x$ in $X$, then...", where $X$ is empty, is vacuously true.


You can unbind the quantifiers:

$$ \forall x\in S: P(x) \quad\equiv \quad\forall x: (x \in S) \implies P(x) $$ $$ \exists x\in S: P(x) \quad\equiv \quad\exists x: (x \in S) \wedge P(x) $$

so the formula you wrote means the same thing as

$$ \forall p : p \in \mathcal U \implies \left( \exists r : r \in \Bbb R^+ \wedge B_r(p)\subseteq \mathcal U \right) $$

so the case of $\mathcal{U} = \varnothing$ no longer has you quantifying over an empty domain. And since the antecedent is always false, the conditional is always (vacuously) true.

In fact, we always have

  • $\forall x \in \varnothing : P(x)$ is a tautology
  • $\exists x \in \varnothing : P(x)$ is a contradiction

Some approaches to doing logic actually reject empty domains, and use rules of deduction that only work for nonempty domains, such as:

$$ (\forall x \in \mathcal{D} : P(x)) \implies (\exists x \in \mathcal{D} : P(x)) $$

This should look familiar, as it is quite similar to the objection you had!

However, this implication does not hold without the hypothesis that $\mathcal{D}$ is nonempty. An example of a corrected deduction rule is:

$$ (\forall x \in \mathcal{D} : P(x)) \implies (\mathcal{D} = \varnothing) \vee (\exists x \in \mathcal{D} : P(x)) $$

So keep this in mind — the rules of logic you have learned, be it formally or informally, may actually be wrong for the case where empty domains of quantification are allowed, so until you are used to the more general case, always treat such possibilities with care.