I am having a problem a finding a suitable formula for deciding whether a number falls inside of modular interval. Example:
Let's use $mod$ $100$ and the interval $\langle 90, 10\rangle$. How would you compute if the number $95$ or $0$ falls into the interval or not? In other words is there an expression that would be true for all the numbers in the interval?
Check whether the number modulo $100$ falls in this interval.
– Guy Apr 07 '14 at 15:35