Let's say I want to express this statement using quantifiers : "For every two odd numbers, the sum of them is even."
$\forall x,y \in \mathbb{Z}$ ( $(O(x)$ AND $O(y)$) $\rightarrow E(x+y) )$
where $O(x)$ means $x$ is odd, and $E(x)$ means $x$ is even.
My question is, is the expression correct ? I think there may be an error whenever either $O(x)$ or $O(y)$ is false, since it will make the whole implication correct. But I just don't know how to express it in another way.
Thank you.