Are the following two assertions always true, always false or meaningless?
$\exists i \in \emptyset$
$\forall i \in \emptyset$
Because it seems that one encounters expressions of this kind fairly similar in mathematics, especially if we are dealing with degenerate cases of definitions. Let me give an example (in graph theory) of such a case. There, one can formalize the idea the two vertices are connected in the following way: Let $G=(V,E)$ be a graph and let $v,w\in V $. We define $v$ and $w$ to be "connected" if: $\exists n \in \mathbb{N}, \ \exists \alpha: \left\{ 1,\ldots,n \right\} \rightarrow V, \ \alpha_0=v \ \& \ \alpha_n=w \ \ \forall i\in \mathbb{N}, 0\leqslant i \ \& \ i<n:\ \left\{ \alpha_i, \alpha_{i+1} \right\} \in E$
Now, if we would ask, if every node is connected to itself (a fact which intuitively we would want to be true), we would have to exhibit an $n$ and a sequence $\alpha$, such that [bla bla...]. The obvious choice for $n$ is 0. But for this choice of $n$, no mattter which sequence $\alpha$ we would consider, the set of the $i$'s would be empty, because the set of the $i$'s is actually $\left\{ i\in \mathbb{N} | 0\leqslant j \ \& \ j<n \right\}$. But for $n=0$ this set is the empty set. Thus, because we quantify $\forall i \in \left\{ i\in \mathbb{N} | 0\leqslant j \ \& \ j<0 \right\}=\emptyset$, should the statement be true/false by definition?
EDIT: Sorry, for my unclear formulation and to everybody who on my fault interpreted it wrongly. The way Carl Mummert or Listing interpreted it, was what I meant.
When we translate mathematical statements into formal logic, the "bounded quantifiers" $(\exists x \in I) P(x)$ and $(\forall x \in I) P(x)$ are usually viewed as abbreviations, as follows:
$(\exists x \in I) P(x)$ is an abbreviation of $(\exists x)(x \in I \land P(x))$.
$(\forall x \in I) P(x)$ is an abbreviation of $(\forall x)(x \in I \to P(x))$.
With these conventions, the bounded quantifiers continue to make sense even when $I$ is empty. In that case, $(\exists x \in \emptyset) P(x)$ will always be false, and $(\forall x \in \emptyset) P(x)$ will always be true, regardless of the formula $P(x)$. So, for example, $(\exists x \in \emptyset)(i = i)$ is false and $(\forall x \in \emptyset)(i \not = i)$ is true.
A nice property of this definition of the bounded quantifiers is that it makes them dual in the sense that for any set $I$ (possibly empty) and any formula $P(x)$, we have
These can be verified by direct calculation: $$ \begin{split} (\exists x \in I) P(x) & \Leftrightarrow (\exists x) (x \in I \land P(x)) \\ & \Leftrightarrow \lnot (\forall x) \lnot (x \in I \land P(x)) \\ & \Leftrightarrow \lnot (\forall x)(x \not \in I \lor \lnot P(x)) \\ & \Leftrightarrow \lnot (\forall x)(x \in I \to \lnot P(x))\\ & \Leftrightarrow \lnot (\forall x \in I)\lnot P(x) \end{split} $$ and $$ \begin{split} (\forall x \in I) P(x) & \Leftrightarrow (\forall x) (x \in I \to P(x)) \\ & \Leftrightarrow \lnot (\exists x) \lnot (x \not \in I \lor P(x))\\ & \Leftrightarrow \lnot (\exists x) (x \in I \land \lnot P(x))\\ & \Leftrightarrow \lnot (\exists x \in I) \lnot P(x) \end{split} $$