Examples of priority issues are as follows:
- $\lnot P\wedge Q$ is $(\lnot P)\wedge Q$ or $\lnot (P\wedge Q)$?
- $P \wedge Q\rightarrow R$ is $(P \wedge Q)\rightarrow R$ or $P \wedge (Q\rightarrow R)$ ?
- $\forall x \in A, P\rightarrow Q$ is $(\forall x \in A, P)\rightarrow Q$ or $\forall x \in A, (P\rightarrow Q)$ ?
The usual precedence convention is:
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.
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.