The post works through a neat number theory fact with a systems flavor. If you take two 32-bit unsigned integers and multiply them, the 64-bit result is exact, but only about 3.2 quintillion of the 18.4 quintillion possible 64-bit values ever appear. That is roughly 17%. The article also points to a deeper theorem: as the bit width grows, the fraction of 2n-bit integers that can be written as a product of two n-bit integers goes to zero.
What people added is that the surprise depends on how you measure loss. A few readers argued the headline sounds more dramatic than the information loss really is, because commutativity alone already cuts the maximum distinct outputs to about half of the input pair space, and 17% corresponds to about 2^61.44 reachable values out of 2^64, which is only a few bits of
entropy loss. Others pushed back that this misses the real mathematical point. The striking result is not merely "less than half" for 64-bit numbers. It is that the density keeps shrinking toward zero, just painfully slowly. Several comments grounded the missing 83% in factor structure rather than abstract counting. Numbers with any prime factor above 2^32 are immediately excluded, and rough back-of-the-envelope estimates suggest that class alone explains most of the gap. But smoothness is not enough. Some numbers have only small prime factors and still cannot be split into two factors that both fit in 32 bits because the prime powers cannot be packed into two bounded buckets. A side thread corrected a natural mistake here: this is related to
b-smooth numbers, but it is a stricter condition than b-smoothness.
The practical read is that multiplication is a many-to-one map with a lot more aliasing than intuition suggests. Composite-heavy factorization creates many repeated outputs, and the few unique cases are exceptional. That makes the result interesting less as a curiosity about 64-bit arithmetic and more as a reminder that equal input and output bit counts do not imply anything close to uniform coverage when the operation has strong algebraic structure.