In modulo arithmetic, modulo division is different from regular numeric division. Strictly speaking, there is no separate operation called “modulo division”, because the modulo operation already returns only the remainder of a division. In practice, one uses “modulo division” to mean multiplying by a modular inverse when it exists, i.e., when . Modulo division of by modulo is equivalent to computing the modular multiplication . The result of modulo division is different from that of numeric division because modulo division always gives an integer (a residue modulo ) (as it multiplies two integers modulo ), whereas numeric division gives a real number. The inverse of an integer modulo can be computed using the extended Euclidean algorithm (YouTube tutorial).