Consider the following limit:
$$\large\lim_{x\to 0^+}\frac{\lfloor x\rfloor}{\lfloor x\rfloor}$$
The domain of the function $f(x) = \frac{\lfloor x\rfloor}{\lfloor x\rfloor}$ is $\mathbb{R}-[0, 1)$. This shows that the limit of this function as $x$ approaches zero from right, does not exist because to calculate this limit, the function needs to be defined on an open interval such as $(0, 1)$, which, according to the domain of the function, is not the case.
Everything looks well and logical, but if you calculate this limit in Wolfram Mathematica, you will see:

Why is this?! And, of course, in WolframAlpha.com, you will also see the same result.
You can also see this at HERE.
Why is this?
I realized that Mathematica and WolframAlpha incorrectly simplified $\frac{\lfloor x\rfloor}{\lfloor x\rfloor}$ to 1; why?? (While we know that this is incorrect because it is like saying that the two functions $f(x) = \frac{\lfloor x\rfloor}{\lfloor x\rfloor}$ and $g(x)=1$ are equal, which is not the case)

In[12]:= a/a Out[12]= 1– Greg Hurst Jan 08 '24 at 17:10Floor[x]/Floor[x]to1before even the Limit gets a chance to look at it. It is as if you wroteLimit[1, x -> 0, Direction -> "FromAbove"]which ofcourse is1– Nasser Jan 08 '24 at 17:12Limit[ConditionalExpression[1, Floor[x] != 0], x -> 0, Direction -> "FromAbove"]. I'm not sure how to get that to happen, though. At least not in an easy way. (Redefine division or power to include a domain condition is a potential approach. But redefining system functions messes up internal algorithms, so not "easy" imo.) – Goofy Jan 08 '24 at 17:53