I like the solution - it’s helpful. [x] = -1.
Take the scenarios,
+ve values
x=1, then
f[x]= 1
x=2.5,
f[x] = 2. The largest integer less than or equal to 2.5 is 2.
x=0, then
f[x] = 0
if x=.5,then
f[x] = 0 again. The largest integer less than or equal to .5 is 0. So x cant be greater than 0.
-ve values:
x=(-.5), then
f[x]= -1. The largest integer less than or equal to -0.5 is -1. Possible for x to exist.
Lets check the extremes now.
if x=(-1), then
f[x]= -1. Possible for x to exist.
x=-1.5, then
f[x]= -2 The largest integer less than or equal to -1.5 is -2.
Now this number is not possible. because as per the given info f[x] = -1.
So x can be -1 or less than 0. The range becomes 1≤ x < 0
−