What is the mathematical term and symbol for division without remainders?
Take for example 322 / 100.
I know 322 / 100 is division and the result is 3.22.
I know 322 % 100 is a modulo and the result is 22.
But what is the proper term and symbol for division with no remainder?
Eg, 322 SYMBOL 100 would give 3.
%is not commonly used in mathematics as an operator to denote modulus division. In programming, it is used in many languages which have inherited (or borrowed) it from C, but there are many exceptions (not just in languages older than C). See https://en.wikipedia.org/wiki/Modulo_operation#In_programming_languages – PM 2Ring Mar 02 '21 at 11:33//. See https://docs.python.org/3/reference/expressions.html#binary-arithmetic-operations & https://docs.python.org/3/library/stdtypes.html#numeric-types-int-float-complex – PM 2Ring Mar 04 '21 at 06:14