I want to state the following:
$a>b \rightarrow x>y\\ a=b \rightarrow x=y\\ a<b \rightarrow x<y$
as short as possible. I don't like the redundancy in having 3 lines looking very equal, and thought it could be stated using a mathematical symbol (I cannot yet come up with) in a one-liner.
I have thought of something like this:
$sign(a-b) = sign(x-y)$ but it will cause some confusions for the 0-case.