Interpreting statement notation

notation

I have statement

$$ \forall x \in \mathbb{Z} : \exists y \in \mathbb{Z} : xy=1 $$

I would translate this into English as:

for all x and for some y integers it is true that:

$$ xy=1 $$

Problem is i don't understand $:$ in this notation. To my understanding if we have statement it is in form $\text{statement}:\text{condition}$ and for sets is used $\{ \text{statement}:\text{condition} \}$ (same thing with $\{\}$). When you have mulitple $:$ in same sentence i don't know how which are "statements" and which are "conditions". With this exmaple it is easy to determine which is "statement" and which is "condition" but there might exists some cases which this isnt so clear ?

Best Answer

I'd rather call the parts quantification and statement. Example: $$\underbrace{\exists x \in X}_{\text{quantification}} : \underbrace{P(x,y)}_{\text{statement}}$$

Note that the full formula above is also a statement and can be used with another quantification: $$\underbrace{\forall y \in Y}_{\text{quantification}} : \underbrace{\big( \underbrace{\exists x \in X}_{\text{quantification}} : \underbrace{P(x,y)}_{\text{statement}} \big)}_{\text{statement}}$$

There is no need for the extra pair of parentheses though so we just write $$\forall y \in Y : \exists x \in X : P(x,y)$$ since the interpretation of this as $\big( \forall y \in Y : \exists x \in X \big) : P(x,y)$ doesn't make sense.

Note that often the colon is not used and you might meet $\forall y \in Y \ \exists x \in X \ P(x,y)$. Others put parentheses around the quantifications and thus write $(\forall y \in Y) \ (\exists x \in X) \ P(x,y)$.

Related Question