(a) For every odd natural number, there is a different natural number such that their sum is even.
$$(\forall x): (\neg \text{Even}(x) \rightarrow (\forall y): (y \neq x \rightarrow \text{Even}(x+y)).$$
Alternate Solution: $\forall x (\neg \text{Even}(x) \rightarrow \exists y (y \neq x \land \text{Even}(x+y))$
(b) The sum of any two prime number except the prime number 2 is even.
1. $(\forall x, y):((x \neq 2 \land y \neq 2) \rightarrow ([\text{Prime}(x) \land \text{Prime}(y)) \rightarrow \text{Even}(x+y))).$
2. $(\forall x, y):((\text{Prime}(x) \land \text{Prime}(y) \land \text{Even}(x+y)) \rightarrow (x \neq 2 \land y \neq 2)).$
I am not sure which one of the logical statements is correct for (b), I think it's 2. because the first statement will be vacuously true even if $x$ and $y$ are primes not equal to $2$.
Is my reasoning correct? Please correct me if I am wrong. Thank you!
For a) consider for example x = 3. Is it true that for all natural y, x+y is even?
For b2) consider x, y = 2. Would then statement be true?
For b1) what happens if x = 7 and y = 2?
UPD: However, all of these maybe just a minute of dumbness from me.