Is $\forall x \forall y$ equivalent to $\forall (x, y)$?
For example, here is the statement of a Symmetric Relation in both ways:
$\forall x \forall y[xRy \rightarrow yRx]$
$\forall (x,y)[xRy \rightarrow yRx]$
Do these have the same meaning. If so, is one preferred or more common? What about when you have 3 or more variables, it seems like repeating the $\forall$ would get unwieldy. So want to make sure there's a rule for applying universal quantifier on multiple variables.
$\forall (x,y)[xRy \rightarrow yRx]$
or
$\forall x,y \ [xRy \rightarrow yRx]$
is really just short-hand for:
$\forall x \forall y[xRy \rightarrow yRx]$
That is, you really are dealing with two universal quantifiers. There is no such thing as one quantifier for multiple variables.
This is because a statement like:
$\forall y[aRy \rightarrow yRa]$
is a logical consequence, and therefore should be derivable. If you treat $\forall x,y \ [xRy \rightarrow yRx]$ as having only one quantifier, then you couldn't really do this ... or at least you would need to make the quantifier elimination rules more complicated. Any formal semantics defined over the syntax would need to become more complicated as well.