Is there a name for a mathematical space with a distance and ordering defined, and a subtraction operation defined, but no addition operation or scalar multiplication? Essentially this is like the real number line with no notion of an origin.
The concrete example I'm thinking of is datetimes; given two datetimes, we can subtract them to find an interval. We can add/subtract an interval to/from a datetime, or multiply an interval by a scalar, but we can't add two datetimes or multiply a datetime by a scalar.
So if d1 and d2 are datetimes, then d1 + (d1 - d2) has a well-defined meaning, but (d1 + d1) - d2 does not.
I'm also just realizing - the result of subtraction is not an element in the same space, so I guess this is a family of two sets $A$ and $B$, where
- $a_i - a_j \in B$
- $a_i \pm b_j \in A$
- $b_i \pm b_j \in B$
- $k \cdot b_i \in B$