Goldbach's conjecture in English reads:
“Every even integer greater than 2 is the sum of two primes.”
Which can be written in terms of quantifiers as:
$$\forall n \in \text{Even}. \exists p \in \text{Primes} \exists q \in \text{Primes}. n= p +q. $$
Where Even = {set of all even numbers greater than or equal 2} and Primes = {the set of all primes numbers}.
I was told that changing the order of the quantifiers a little bit changes the meaning of the statement, but I don't understand why it does that:
$$ \exists p \in \text{Primes} \exists q \in \text{Primes}. \forall n \in \text{Even}. n=p +q. $$
How is the second one different? I was told that it means in English that:
Every even number $\geq 2$ is the sum of the same two primes.
However, I cannot convince myself that, that is correct. Also, how come that the second interpretation is false?