For large quotients, integer division (//
) doesn't seem to be necessarily equal to the floor of regular division (math.floor(a/b)
).
According to Python docs (https://docs.python.org/3/reference/expressions.html - 6.7),
floor division of integers results in an integer; the result is that of mathematical division with the ‘floor’ function applied to the result.
However,
math.floor(648705536316023400 / 7) = 92672219473717632
648705536316023400 // 7 = 92672219473717628
'{0:.10f}'.format(648705536316023400 / 7)
yields '92672219473717632.0000000000', but the last two digits of the decimal part should be 28 and not 32.
Your problem is that, despite the fact that "/" is sometimes called the "true division operator" and its method name is
__truediv__
, its behavior on integers is not "true mathematical division". Instead it produces a floating point result which inevitably has limited precision.For sufficiently large numbers even the integral part of a number can suffer from floating point rounding errors. When 648705536316023400 is converted to a Python float (IEEE double) it gets rounded to 6487055363160234241.
I can't seem to find authoritative documentation on the exact behavior of the operators on the built-in types in current Python. The original PEP that introduced the feature states that "/" is equivalent to converting the integers to floating point and then performing floating point division. However a quick test in Python 3.5 shows that not to be the case. If it was then the following code would produce no output.
But at least for me it does produce output.
Instead it seems to me that Python is performing the division on the numbers as presented and rounding the result to fit in a floating point number. Taking an example from that programs output.
The Python standard library does provide a Fraction type and the division operator for a Fraction divided by an int does perform "true mathematical division".
However you should be aware of the potentially severe performance and memory implications of using the Fraction type. Remember fractions can increase in storage requirement without increasing in magnitude.
To further test my theory of "one rounding vs two" I did a test with the following code.
And the average error magnitude was substantially smaller for performing the division directly than for converting to float first, supporting the one rounding vs two theory.
1Note that printing a float directly does not show its exact value, instead it shows the shortest decimal number that will round to that value (allowing lossless round-trip conversion from float to string and back to float).
The reason the quotients in your test case are not equal is that in the
math.floor(a/b)
case, the result is calculated with floating point arithmetic (IEEE-754 64-bit), which means there is a maximum precision. The quotient you have there is larger than the 253 limit above which floating point is no longer accurate up to the unit.With the integer division however, Python uses its unlimited integer range, and so that result is correct.
See also "Semantics of True Division" in PEP 238:
You may be dealing with integral values that are too large to express exactly as floats. Your number is significantly larger than 2^53, which is where the gaps between adjacent floating point doubles start to get bigger than 1. So you lose some precision when doing the floating point division.
The integer division, on the other hand, is computed exactly.
By "mathematical division", the Python docs mean the exact division on the real numbers.
Now, back to your question about integer division (a.k.a. Euclidean division) vs the floor of a floating-point division (better term than "regular division"), I studied this problem in 2005. What I proved is that for rounding to nearest in radix 2, if x−y is exactly representable, then the floor of the floating-point division x/y, i.e.
math.floor(x/y)
, is equal to the integer division. You can get the paper on my web site or on HAL.