Take a relation $R$. In Structure $A$, $R$ is interpreted as the 'less than' relation (for natural numbers). In $B$, $R$ is interpreted as a relation (for natural numbers) where $R(a,b)$ holds if and only if either $a$ is less than $b$ and $a,b$ are both odd or both even, or $a$ is even and $b$ is odd. Find a sentence that is true under interpretation $A$ and false under $B$. Besides the relation symbol $R$, the language only has quantifiers, connectives, and $=$.
Intuitively, I understand the difference between the two interpretations. In $A$, $R(1,2)$ holds. In $B$, it does not, since $1$ and $2$ are not both odd/even and $1$ is not even/$2$ not odd. But when it comes to writing a sentence in a language without constant symbols or a successor function, I'm stumped. It looks like a lot of the properties of interpretation $A$ hold for interpretation $B$. For instances, $$R(x,y) \rightarrow \neg R(y,x)$$ $$R(x,y) \wedge R(y,z) \rightarrow R(x,z)$$ $$\neg R(x,y) \rightarrow R(y,x) \vee (x=y)$$ I'm out of ideas on the types of sentences that could work.
The basic idea is that $B$, has two elements without a direct predecessor, namely $0$ and $1$, while $A$ has only one, namely $0$.
Note that given $x$, the sentence $$ \def\pr{\mathsf{prec}}\pr(x) := \exists y \, \forall z: z R x \to (z = y \lor z R y) $$ denote the statement that $x$ has a direct predecessor. Hence $$ \forall x,x': \pr(x) \land \pr(x') \to x= x' $$ is true in $A$, but not in $B$.