Michael K. answered 04/28/19
PhD professional for Math, Physics, and CS Tutoring and Martial Arts
Divisibility is another means to say no remainder (i.e quotient only).
Modulus is a way to extract only the remainder part.
For example 10/5 = 2 without remainder --> 10 mod 5 = 0 whereas 9/5 = 1.8 or 9 mod 5 = 4
So if a is not divisible by c then a mod c > 0 --> call this reminder A
Also if b is not divisible by c then b mod c > 0 --> call this reminder B
Now we come to the question at hand and we are interested in a*b which neither has a fully integer representation of c embedded within it...
ab mod c = ( a mod c * b mod c ) mod c --> ( A*B ) mod c > 0 for any A ≠ 0 or B ≠ 0 as per the initial conditions provided by a's divisibility and b's divisibility with c.