I'm looking for a word to describe a function where every output is guaranteed to have come from exactly one contiguous range of input values.
For example, a monotonic function has this property, but that is too strong: the relative ordering is unimportant.
However, this is a looser guarantee than that the function be invertible. It's not necessary that it be possible to deduce exactly what the input was for a given output.
For example, a function which produced these results might qualify:
x y
------
0 0
1 0
2 0
3 2
4 2
5 2
6 1
7 1
But a function that produced these results would not:
x y
------
0 0
1 0
2 0
3 2
4 3
5 2
6 1
7 1
because 2 no longer only occurs within a single range of input values.
Another option could be “preconnected” function; if you use your definition in the real numbers, the intervals are connected, and the pre-image of each point must be a connected subset.
– Pedro Sánchez Terraf Feb 12 '16 at 20:29