The usual precedence convention is:
- quantification
- negation
- conjunction, disjunction
- conditional, biconditional
Among ∧
and ∨
, or among →
, or among →
and ↔
, always use parentheses.
And if the reader (or software) may not be familiar with the above precedence convention—or is suspected to be using a different one—then using parentheses helps; however, too many parentheses does decrease human-readability.
The former.
The former.
$\forall x \in A, P\rightarrow Q$
is $(\forall x \in A, P)\rightarrow Q$ or $\forall x \in A, (P\rightarrow Q)$ ?
Ambiguous: it's unclear whether the comma is being used as a delimiter, in which case $$\forall x{\in} A\;(P\rightarrow Q)$$ is the intended meaning, or whether the comma is being logically superfluous (i.e., doesn't alter meaning and can be ignored), in which case $$(\forall x{\in} A\;P)\rightarrow Q$$ is the intended meaning.