What's the difference between the two statements
$$ \forall x \exists y:P(x, y) $$
and
$$ \forall x: P(x, y) $$
My understanding the first means $ y $ does not have to be the same for every $ x $, while the second means one $ y $ satisfies $ P $ for every $ x $.
For example, can we write $ \forall n \in Z \exists x \in R : n = x $ as follows
$$ \forall n \in Z (x \in R \, and \, n = x) $$
Thanks
The first says: "For whatever x you give me, I can always find a y such that the statement is true."
The second says: "For whatever x you give me, the statement is true." In this case, the predicate doesn't depend on y. So you don't need P(x,y); just P(x) is ok.