In computing, the modulo operation finds the remainder of division of one number by another.
Given two numbers, (the dividend) and (the divisor), a modulo n (abbreviated as a mod n) is the remainder, on division of a by n. For instance, the expression "7 mod 3" would evaluate to 1, while "9 mod 3" would evaluate to 0. Although typically performed with a and n both being integers, many computing systems allow other types of numeric operands.
See modular arithmetic for an older and related convention applied in number theory.
| Language | Operator | Result has the same sign as |
|---|---|---|
| ActionScript | % | Dividend |
| Ada | mod | Divisor |
| rem | Dividend | |
| ASP | Mod | Not defined |
| C (ISO 1990) | % | Not defined |
| C (ISO 1999) | % | Dividend |
| C++ | % | Not defined |
| C# | % | Dividend |
| ColdFusion | MOD | Dividend |
| Common Lisp | mod | Divisor |
| rem | Dividend | |
| Eiffel | Dividend | |
| Microsoft Excel | =MOD() | Divisor |
| Euphoria | remainder | Dividend |
| FileMaker | Mod | Divisor |
| Fortran | mod | Dividend |
| modulo | Divisor | |
| GML (Game Maker) | mod | Dividend |
| Haskell | mod | Divisor |
| rem | Dividend | |
| J | |~ | Divisor |
| Java | % | Dividend |
| JavaScript | % | Dividend |
| Lua | % | Divisor |
| MathCad | mod(x,y) | Divisor |
| Mathematica | Mod | Divisor |
| MATLAB | mod | Divisor |
| rem | Dividend | |
| MySQL | MOD % | Dividend |
| Objective Caml | mod | Not defined |
| Occam | Dividend | |
| Pascal (Delphi) | mod | Dividend |
| Perl | % | Divisor |
| PHP | % | Dividend |
| PL/I | mod | Divisor (ANSI PL/I) |
| Prolog (ISO 1995) | mod | Divisor |
| rem | Dividend | |
| Python | % | Divisor |
| QBasic | MOD | Dividend |
| R | %% | Divisor |
| RPG | %REM | Dividend |
| Ruby | % | Divisor |
| Scheme | modulo | Divisor |
| SenseTalk | modulo | Divisor |
| rem | Dividend | |
| Smalltalk | Divisor | |
| Tcl | % | Divisor |
| Verilog (2001) | % | Dividend |
| VHDL | mod | Divisor |
| rem | Dividend | |
| Visual Basic | Mod | Dividend |
In nearly all computing systems, the quotient and the remainder satisfy
Pascal and Algol68 do not satisfy these for negative divisors. Some programming languages, such as C89, don't even define a result if either of n or a is negative. See the table for details. a modulo 0 is undefined in the majority of systems, although some do define it to be a.
Many implementations use truncated division where the quotient is defined by truncation q = trunc(a/n) and the remainder by r=a-n q. With this definition the quotient is rounded towards zero and the remainder has the same sign as the dividend.
Knuth described floored division where the quotient is defined by the floor function q=floor(a/n) and the remainder r is
Raymond T. Boute introduces the Euclidean definition which is consistent with the division algorithm. Let q be the integer quotient of a and n, then:
Two corollaries are that
As described by Leijen,
Common Lisp also defines round- and ceiling-division where the quotient is given by , . IEEE 754 defines a remainder function where the quotient is rounded according to the round to nearest convention.
Some calculators have a mod() function button, and many programming languages have a mod() function or similar, expressed as mod(a, n), for example. Some also support expressions that use "%", "mod", or "Mod" as a modulo or remainder operator, such as
a % nor
a mod n.Modulo operations might be implemented such that division with remainder is calculated each time. For special cases, there are faster alternatives on some hardware. For example, the modulo of powers of 2 can alternatively be expressed as a bitwise AND operation:
x % 2n == x & (2n - 1).Examples (assuming x is an integer):
x % 2 == x & 1x % 4 == x & 3x % 8 == x & 7.In devices and software that implement bitwise operations more efficiently than modulo, these alternative forms can result in faster calculations.
In the C programming language, compiling with heavy speed optimizations will typically (depending on compiler and hardware) automatically convert modulo operations to bitwise AND in the assembly file.
In some compilers, the modulo operation is implemented as mod(a, n) = a - n * floor(a / n). When performing both modulo and division on the same numbers, one can get the same result somewhat more efficiently by avoiding the actual modulo operator, and using the formula above on the result, avoiding an additional division operation.