floordmin
Floordmin is a mathematical operator described as a simple combination of the floor function and the minimum operator. For two real numbers x and y, floordmin(x, y) is defined as floor(min(x, y)). Because the floor function is monotone, floordmin(x, y) is also equal to min(floor(x), floor(y)).
Generalization to more operands is straightforward. For real numbers a1, a2, ..., an, floordmin(a1, a2, ..., an) is
Key properties include its dependence on both floor and min, yielding an integer result. It is commutative
Examples illustrate the idea. If x = 5.7 and y = 3.2, floordmin(x, y) = floor(min(5.7, 3.2)) = floor(3.2) = 3.
Applications of floordmin appear in discretization methods within optimization, scheduling, and resource allocation, where a nonnegative