I need to symbolize this statement
"Any natural number $n$ can be written either in the form of $2k$ or in the form of $2k+1$ for some natural number $k$".
I tried with
$\forall n \in \Bbb N,\exists k \in \Bbb N: (n = 2k) \veebar (n = 2k+1)$
But I'm not sure this symbolization is correct
It's not quite accurate because it fails to rule out the possibility that one natural number can be used as a witness for "evenness" and a different integer can be used as a witness for "oddness." To be completely pedantic about it, I'd write:
$\forall n \in \Bbb N [(\exists k \in \Bbb N ~ (n = 2k)) \iff (\forall j \in \Bbb N ~ (n \neq 2j+1))]$.
This says that a number can be expressed as some multiple of $2$ if and only if it can't ever be expressed as $1$ more than a multiple of $2$. Conversely, if $n$ can be expressed as $1$ more than a multiple of $2$ (so that the right-hand side is false), then the left-hand side must also be false so $n$ can't be expressed as a multiple of $2$.