Is it possible to have a scenario where any number n is divisible by and number a and is also divisible by a number b, but is not divisible by a*b
The origin of this question was my way of thinking about the classical FizzBuzz coding problem.
Is it possible to have a scenario where any number n is divisible by and number a and is also divisible by a number b, but is not divisible by a*b
The origin of this question was my way of thinking about the classical FizzBuzz coding problem.
Take $n=18$, $a=9$, $b=6$ then $ab = 54$
$54$ does not divide $18$.
For it to be true $a$ and $b$ should be coprime.