$$(\exists y{\in}\mathbb Z)\,(\forall x{\in}\mathbb Z)\,(y > x)$$
Your proposition means $\Big(\exists y\;\big(\forall x \; y > x\big)\Big);$ here we want to find an integer, $y,$ that is greater than every integer including $y$ itself.
In contrast, in the proposition $\Big(\forall x \;\big(\exists y \; y > x\big)\Big),$ for each integer, $x,$ we want to pick an integer that is greater than $x.$
I am wondering whether the analogy of picking a variable value according to the order in which their quantifiers appear in the statement is correct
No: observe that in the second proposition above, we are iteratively checking that $y>x,$ going back and forth between—rather than chronologically handling—the variables $x$ and $y.$
- We can pick an integer which is greater than any integer we could pick.
- We can pick an integer which is greater than every integer we could pick.
Both suggestions are clear and good. Or how about ‘we can pick an integer that is greater than any/every integer we could pick’? Use ‘that’ for a restrictive clause, which adds specification or narrows down a class of objects; use ‘which’ for a nonrestrictive clause, which adds supplementary, non-essential information. Though this distinction isn't universally observed, precision never hurts when translating between formal logic and English.
Is ‘every’ or ‘any’ better here for the universal quantifier?
In this case, ‘every’ and ‘any’ interchangeably correspond to universal quantification. However, sometimes, the word ‘any’ corresponds to ‘∃’ instead of ‘∀’, so it should be used judiciously! To wit:
The phrase ‘if any’ frequently means ‘if some’:
$\color\red{\textbf{If any}}$ intruder enters, the alarm will go off.
$(\color\red{\boldsymbol{\exists}} x\, Ex)\color\red{\boldsymbol{\implies}} A$
$\color\red{\textbf{If any}}$ command is understood by the dog, then it is a genius.
$(\color\red{\boldsymbol{\forall}} x\, Ux)\color\red{\boldsymbol{\implies }}G$
The phrase ‘...not...any...’ actually means ‘...not...some...’:
She has $\color\red{\textbf{no}}$ disease.
She does $\color\red{\textbf{not}}$ have $\color\red{\textbf{any}}$ disease.
$\color\red{\boldsymbol{\lnot \exists}} x\, Hx$
She does not have every disease.
$\lnot \forall x\, Hx$
$\exists y \in \mathbb Z, ; ;(y > 1) \wedge (\forall x \in \mathbb Z,;(y > x)).$
There exist a number $y$ such that "$y$ is greater than 1, and for any number $x$, said $y$ is greater than $x$". You cannot refer to $x$ in the first sub-sentence, ie $y>1$ because it is not yet quantified. It is a free variable.
– user3257842 May 17 '23 at 09:39