My text says:
Let Evens be the set of even integers greater than 2, and let Primes be the set of primes. Then we can write Goldbach’s Conjecture in logic notation as follows:
$ \forall n \in Evens. \exists p,q \in Primes. n = p + q $
Then later it reports:
Swapping quantifiers in Goldbach’s Conjecture creates a patently false state- ment; namely that every even number 2 is the sum of the same two primes:
$ \exists p,q \in Primes. \forall n \in Evens. n = p+q $
What exactly is the difference between these two notations? They look the same to me, with the same quantifiers -- just written in a different order
The outer quantifier[s] set the context for the inner quantifiers. In the first case, given different even integers, we are allowed to take different prime numbers. So for $n=10$ we may take $p=3,q=7$ and for $n=24$ we may take $p=7,q=17$.
In the second case we claim that there are two concrete prime numbers $p,q$, that every even integer is their sum. So we have that $p+q=2=4=6=8=10=\ldots$
So while the first claim is plausible, the second claim is clearly false.