I have a relatively simple logic problem. Basically, I want to state that there is an assignment of values $x,y,u,v,z$ that makes the statement $P(x,y,u,v,z)$ false.
Should I write $\exists x, y, u, v, z. \neg P(x,y,u,v,z)$ or $\exists x. \exists y. \exists u. \exists v. \exists z. \neg P(x,y,u,v,z)$, or something else?
More generally:
So what you have written are both conventionally understood as equivalent, and the former is easier to read. For an example of why it is preferable consider the following theorem: $ \def\nn{\mathbb{N}} \def\zz{\mathbb{Z}} $
It would be way harder to read if it was written out in full.
In logic you might also frequently encounter further abbreviation such as "$\forall x_1,\dots,x_n$" denoting "$\forall x_1 \cdots \forall x_n$", when $n$ is a given natural number. Again, this is just for readability.