This document defines and provides an example of multiplicative hashing. Multiplicative hashing sets the hash index as the fractional part of multiplying the key by a large random number. The formula takes the key, multiplies it by a constant between 0 and 1, takes the fractional part of the result, and multiplies that by the size of the hash table to obtain the hash value. Mid-square hashing is also discussed, which generates unique keys by taking the square of a seed value and extracting digits from the middle as the new seed.