Hello, could you help me with my question? I have this function and I know that the range is a union of several intervals. Is there any way for Mathematica to give me the general formula of the range of this function?
(Abs[x] - Floor[x])/(Sqrt[2 - Floor[x]])
I found the ranges by defining an interval for x, following the example of what you wrote.
Reduce[FunctionRange[{(Abs[x] - Floor[x])/Sqrt[2 - Floor[x]], -50 <=
x < 0}, x, y]]
This is the plot:
Plot[(Abs[x] - Floor[x])/(Sqrt[2 - Floor[x]]), {x, -20, 3}]