In computing, the modulo operation returns the remainder or signed remainder of a division, after one number is divided by another (called the modulus of the operation).
Given two positive numbers a and n, a modulo n (abbreviated as a mod n) is the remainder of the Euclidean division of a by n, where a is the dividend and n is the divisor.[1] The modulo operation is to be distinguished from the symbol mod, which refers to the modulus[2] (or divisor) one is operating from.
For example, the expression "5 mod 2" would evaluate to 1, because 5 divided by 2 has a quotient of 2 and a remainder of 1, while "9 mod 3" would evaluate to 0, because the division of 9 by 3 has a quotient of 3 and a remainder of 0; there is nothing to subtract from 9 after multiplying 3 times 3.
(Here, notice that doing division with a calculator will not show the result of the modulo operation, and that the quotient will be expressed as a decimal fraction if a non-zero remainder is involved.)
Although typically performed with a and n both being integers, many computing systems now allow other types of numeric operands. The range of numbers for an integer modulo of n is 0 to n − 1 inclusive (a mod 1 is always 0; a mod 0 is undefined, possibly resulting in a division by zero error in some programming languages). See modular arithmetic for an older and related convention applied in number theory.
When exactly one of a or n is negative, the naive definition breaks down, and programming languages differ in how these values are defined.
In mathematics, the result of the modulo operation is an equivalence class, and any member of the class may be chosen as representative; however, the usual representative is the least positive residue, the smallest non-negative integer that belongs to that class (i.e., the remainder of the Euclidean division).[3] However, other conventions are possible. Computers and calculators have various ways of storing and representing numbers; thus their definition of the modulo operation depends on the programming language or the underlying hardware.
In nearly all computing systems, the quotient q and the remainder r of a divided by n satisfy the following conditions:
|
(1) |
However, this still leaves a sign ambiguity if the remainder is nonzero: two possible choices for the remainder occur, one negative and the other positive, and two possible choices for the quotient occur. In number theory, the positive remainder is always chosen, but in computing, programming languages choose depending on the language and the signs of a or n.[a] Standard Pascal and ALGOL 68, for example, give a positive remainder (or 0) even for negative divisors, and some programming languages, such as C90, leave it to the implementation when either of n or a is negative (see the table under § In programming languages for details). a modulo 0 is undefined in most systems, although some do define it as a.
or equivalently
where sgn is the sign function, and thus
As described by Leijen,
Boute argues that Euclidean division is superior to the other ones in terms of regularity and useful mathematical properties, although floored division, promoted by Knuth, is also a good definition. Despite its widespread use, truncated division is shown to be inferior to the other definitions.
— Daan Leijen, Division and Modulus for Computer Scientists[6]
However, truncated division satisfies the identity .[7]
Some calculators have a mod() function button, and many programming languages have a similar function, 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 % n
or a mod n
.
For environments lacking a similar function, any of the three definitions above can be used.
When the result of a modulo operation has the sign of the dividend (truncating definition), it can lead to surprising mistakes.
For example, to test if an integer is odd, one might be inclined to test if the remainder by 2 is equal to 1:
bool is_odd(int n) {
return n % 2 == 1;
}
But in a language where modulo has the sign of the dividend, that is incorrect, because when n (the dividend) is negative and odd, n mod 2 returns −1, and the function returns false.
One correct alternative is to test that the remainder is not 0 (because remainder 0 is the same regardless of the signs):
bool is_odd(int n) {
return n % 2 != 0;
}
Another alternative is to use the fact that for any odd number, the remainder may be either 1 or −1:
bool is_odd(int n) {
return n % 2 == 1 || n % 2 == -1;
}
Modulo operations might be implemented such that a division with a remainder is calculated each time. For special cases, on some hardware, faster alternatives exist. For example, the modulo of powers of 2 can alternatively be expressed as a bitwise AND operation (assuming x is a positive integer, or using a non-truncating definition):
x % 2n == x & (2n - 1)
Examples:
x % 2 == x & 1
x % 4 == x & 3
x % 8 == x & 7
In devices and software that implement bitwise operations more efficiently than modulo, these alternative forms can result in faster calculations.[8]
Compiler optimizations may recognize expressions of the form expression % constant
where constant
is a power of two and automatically implement them as expression & (constant-1)
, allowing the programmer to write clearer code without compromising performance. This simple optimization is not possible for languages in which the result of the modulo operation has the sign of the dividend (including C), unless the dividend is of an unsigned integer type. This is because, if the dividend is negative, the modulo will be negative, whereas expression & (constant-1)
will always be positive. For these languages, the equivalence x % 2n == x < 0 ? x | ~(2n - 1) : x & (2n - 1)
has to be used instead, expressed using bitwise OR, NOT and AND operations.
Some modulo operations can be factored or expanded similarly to other mathematical operations. This may be useful in cryptography proofs, such as the Diffie–Hellman key exchange.
Language | Operator | Integer | Floating-point | Definition |
---|---|---|---|---|
ABAP | MOD
|
Yes | Yes | Euclidean |
ActionScript | %
|
Yes | No | Truncated |
Ada | mod
|
Yes | No | Floored |
rem
|
Yes | No | Truncated | |
ALGOL 68 | ÷× , mod
|
Yes | No | Euclidean |
AMPL | mod
|
Yes | No | Truncated |
APL | | [b] |
Yes | No | Floored |
AppleScript | mod
|
Yes | No | Truncated |
AutoLISP | (rem d n)
|
Yes | No | Truncated |
AWK | %
|
Yes | No | Truncated |
BASIC | Mod
|
Yes | No | Undefined |
bc | %
|
Yes | No | Truncated |
C C++ |
% , div
|
Yes | No | Truncated[c] |
fmod (C)std::fmod (C++)
|
No | Yes | Truncated[11] | |
remainder (C)std::remainder (C++)
|
No | Yes | Rounded | |
C# | %
|
Yes | Yes | Truncated |
Clarion | %
|
Yes | No | Truncated |
Clean | rem
|
Yes | No | Truncated |
Clojure | mod
|
Yes | No | Floored |
rem
|
Yes | No | Truncated | |
COBOL | FUNCTION MOD
|
Yes | No | Floored[d] |
CoffeeScript | %
|
Yes | No | Truncated |
%%
|
Yes | No | Floored[12] | |
ColdFusion | % , MOD
|
Yes | No | Truncated |
Common Lisp | mod
|
Yes | Yes | Floored |
rem
|
Yes | Yes | Truncated | |
Crystal | %
|
Yes | No | Truncated |
D | %
|
Yes | Yes | Truncated[13] |
Dart | %
|
Yes | Yes | Euclidean[14] |
remainder()
|
Yes | Yes | Truncated[15] | |
Eiffel | \\
|
Yes | No | Truncated |
Elixir | rem/2
|
Yes | No | Truncated[16] |
Integer.mod/2
|
Yes | No | Floored[17] | |
Elm | modBy
|
Yes | No | Floored |
remainderBy
|
Yes | No | Truncated | |
Erlang | rem
|
Yes | No | Truncated |
math:fmod/2
|
No | Yes | Truncated (same as C)[18] | |
Euphoria | mod
|
Yes | No | Floored |
remainder
|
Yes | No | Truncated | |
F# | %
|
Yes | Yes | Truncated |
Factor | mod
|
Yes | No | Truncated |
FileMaker | Mod
|
Yes | No | Floored |
Forth | mod
|
Yes | No | Implementation defined |
fm/mod
|
Yes | No | Floored | |
sm/rem
|
Yes | No | Truncated | |
Fortran | mod
|
Yes | Yes | Truncated |
modulo
|
Yes | Yes | Floored | |
Frink | mod
|
Yes | No | Floored |
GameMaker Studio (GML) | mod , %
|
Yes | No | Truncated |
GDScript (Godot) | %
|
Yes | No | Truncated |
fmod
|
No | Yes | Truncated | |
posmod
|
Yes | No | Floored | |
fposmod
|
No | Yes | Floored | |
Go | %
|
Yes | No | Truncated |
math.Mod
|
No | Yes | Truncated | |
Groovy | %
|
Yes | No | Truncated |
Haskell | mod
|
Yes | No | Floored |
rem
|
Yes | No | Truncated | |
Data.Fixed.mod' (GHC)
|
No | Yes | Floored | |
Haxe | %
|
Yes | No | Truncated |
J | | [b] |
Yes | No | Floored |
Java | %
|
Yes | Yes | Truncated |
Math.floorMod
|
Yes | No | Floored | |
JavaScript TypeScript |
%
|
Yes | Yes | Truncated |
Julia | mod
|
Yes | No | Floored |
% , rem
|
Yes | No | Truncated | |
Kotlin | % , rem
|
Yes | Yes | Truncated[19] |
mod
|
Yes | Yes | Floored[20] | |
ksh | %
|
Yes | No | Truncated (same as POSIX sh) |
fmod
|
No | Yes | Truncated | |
LabVIEW | mod
|
Yes | Yes | Truncated |
LibreOffice | =MOD()
|
Yes | No | Floored |
Logo | MODULO
|
Yes | No | Floored |
REMAINDER
|
Yes | No | Truncated | |
Lua 5 | %
|
Yes | No | Floored |
Lua 4 | mod(x,y)
|
Yes | No | Floored |
Liberty BASIC | MOD
|
Yes | No | Truncated |
Mathcad | mod(x,y)
|
Yes | No | Floored |
Maple | e mod m
|
Yes | No | Euclidean |
Mathematica | Mod[a, b]
|
Yes | No | Floored |
MATLAB | mod
|
Yes | No | Floored |
rem
|
Yes | No | Truncated | |
Maxima | mod
|
Yes | No | Floored |
remainder
|
Yes | No | Truncated | |
Maya Embedded Language | %
|
Yes | No | Truncated |
Microsoft Excel | =MOD()
|
Yes | Yes | Floored |
Minitab | MOD
|
Yes | No | Floored |
Modula-2 | MOD
|
Yes | No | Floored |
REM
|
Yes | No | Truncated | |
MUMPS | #
|
Yes | No | Floored |
Netwide Assembler (NASM, NASMX) | % , div (unsigned)
|
Yes | No | N/A |
%% (signed)
|
Yes | No | Implementation-defined[21] | |
Nim | mod
|
Yes | No | Truncated |
Oberon | MOD
|
Yes | No | Floored-like[e] |
Objective-C | %
|
Yes | No | Truncated (same as C99) |
Object Pascal, Delphi | mod
|
Yes | No | Truncated |
OCaml | mod
|
Yes | No | Truncated |
mod_float
|
No | Yes | Truncated | |
Occam | \
|
Yes | No | Truncated |
Pascal (ISO-7185 and -10206) | mod
|
Yes | No | Euclidean-like[f] |
Programming Code Advanced (PCA) | \
|
Yes | No | Undefined |
Perl | %
|
Yes | No | Floored[g] |
POSIX::fmod
|
No | Yes | Truncated | |
Phix | mod
|
Yes | No | Floored |
remainder
|
Yes | No | Truncated | |
PHP | %
|
Yes | No | Truncated |
fmod
|
No | Yes | Truncated | |
PIC BASIC Pro | \\
|
Yes | No | Truncated |
PL/I | mod
|
Yes | No | Floored (ANSI PL/I) |
PowerShell | %
|
Yes | No | Truncated |
Programming Code (PRC) | MATH.OP - 'MOD; (\)'
|
Yes | No | Undefined |
Progress | modulo
|
Yes | No | Truncated |
Prolog (ISO 1995) | mod
|
Yes | No | Floored |
rem
|
Yes | No | Truncated | |
PureBasic | % , Mod(x,y)
|
Yes | No | Truncated |
PureScript | `mod`
|
Yes | No | Floored |
Python | %
|
Yes | Yes | Floored |
math.fmod
|
No | Yes | Truncated | |
Q# | %
|
Yes | No | Truncated[23] |
R | %%
|
Yes | No | Floored |
Racket | modulo
|
Yes | No | Floored |
remainder
|
Yes | No | Truncated | |
Raku | %
|
No | Yes | Floored |
RealBasic | MOD
|
Yes | No | Truncated |
Reason | mod
|
Yes | No | Truncated |
Rexx | //
|
Yes | Yes | Truncated |
RPG | %REM
|
Yes | No | Truncated |
Ruby | % , modulo()
|
Yes | Yes | Floored |
remainder()
|
Yes | Yes | Truncated | |
Rust | %
|
Yes | Yes | Truncated |
rem_euclid()
|
Yes | Yes | Euclidean[24] | |
SAS | MOD
|
Yes | No | Truncated |
Scala | %
|
Yes | No | Truncated |
Scheme | modulo
|
Yes | No | Floored |
remainder
|
Yes | No | Truncated | |
Scheme R6RS | mod
|
Yes | No | Euclidean[25] |
mod0
|
Yes | No | Rounded[25] | |
flmod
|
No | Yes | Euclidean | |
flmod0
|
No | Yes | Rounded | |
Scratch | mod
|
Yes | No | Floored |
mod
|
No | Yes | Truncated | |
Seed7 | mod
|
Yes | Yes | Floored |
rem
|
Yes | Yes | Truncated | |
SenseTalk | modulo
|
Yes | No | Floored |
rem
|
Yes | No | Truncated | |
sh (POSIX) (includes bash, mksh, &c.)
|
%
|
Yes | No | Truncated (same as C)[26] |
Smalltalk | \\
|
Yes | No | Floored |
rem:
|
Yes | No | Truncated | |
Snap! | mod
|
Yes | No | Floored |
Spin | //
|
Yes | No | Floored |
Solidity | %
|
Yes | No | Floored |
SQL (SQL:1999) | mod(x,y)
|
Yes | No | Truncated |
SQL (SQL:2011) | %
|
Yes | No | Truncated |
Standard ML | mod
|
Yes | No | Floored |
Int.rem
|
Yes | No | Truncated | |
Real.rem
|
No | Yes | Truncated | |
Stata | mod(x,y)
|
Yes | No | Euclidean |
Swift | %
|
Yes | No | Truncated |
truncatingRemainder(dividingBy:)
|
No | Yes | Truncated | |
Tcl | %
|
Yes | No | Floored |
Torque | %
|
Yes | No | Truncated |
Turing | mod
|
Yes | No | Floored |
Verilog (2001) | %
|
Yes | No | Truncated |
VHDL | mod
|
Yes | No | Floored |
rem
|
Yes | No | Truncated | |
VimL | %
|
Yes | No | Truncated |
Visual Basic | Mod
|
Yes | No | Truncated |
WebAssembly | i32.rem_s , i64.rem_s
|
Yes | No | Truncated |
x86 assembly | IDIV
|
Yes | No | Truncated |
XBase++ | %
|
Yes | Yes | Truncated |
Mod()
|
Yes | Yes | Floored | |
Z3 theorem prover | div , mod
|
Yes | No | Euclidean |
In addition, many computer systems provide a divmod
functionality, which produces the quotient and the remainder at the same time. Examples include the x86 architecture's IDIV
instruction, the C programming language's div()
function, and Python's divmod()
function.
Sometimes it is useful for the result of a modulo n to lie not between 0 and n−1, but between some number d and d+n−1. In that case, d is called an offset. There does not seem to be a standard notation for this operation, so let us tentatively use a moddn. We thus have the following definition:[27]x = a moddn just in case d ≤ x ≤ d+n−1 and x mod n = a mod n. Clearly, the usual modulo operation corresponds to zero offset: a mod n = a mod0n. The operation of modulo with offset is related to the floor function as follows:
(This is easy to see. Let . We first show that x mod n = a mod n. It is in general true that (a+bn) mod n = a mod n for all integers b; thus, this is true also in the particular case when ; but that means that , which is what we wanted to prove. It remains to be shown that d ≤ x ≤ d+n−1. Let k and r be the integers such that a − d = kn + r with 0 ≤ r ≤ n−1 (see Euclidean division). Then , thus . Now take 0 ≤ r ≤ n−1 and add d to both sides, obtaining d ≤ d + r ≤ d+n−1. But we've seen that x = d + r, so we are done. □)
The modulo with offset a moddn is implemented in Mathematica as[27]Mod[a, n, d]
.
Despite the mathematic elegance of Knuth's floored division and Euclidean division, it is generally much more common to find a truncated division-based modulo in programming languages. Leijen provides the following algorithms for calculating the two divisions given a truncated integer division:[6]
/* Euclidean and Floored divmod, in the style of C's ldiv() */
typedef struct {
/* This structure is part of the C stdlib.h, but is reproduced here for clarity */
long int quot;
long int rem;
} ldiv_t;
/* Euclidean division */
inline ldiv_t ldivE(long numer, long denom) {
/* The C99 and C++11 languages define both of these as truncating. */
long q = numer / denom;
long r = numer % denom;
if (r < 0) {
if (denom > 0) {
q = q - 1;
r = r + denom;
} else {
q = q + 1;
r = r - denom;
}
}
return (ldiv_t){.quot = q, .rem = r};
}
/* Floored division */
inline ldiv_t ldivF(long numer, long denom) {
long q = numer / denom;
long r = numer % denom;
if ((r > 0 && denom < 0) || (r < 0 && denom > 0)) {
q = q - 1;
r = r + denom;
}
return (ldiv_t){.quot = q, .rem = r};
}
Note that for both cases, the remainder can be calculated independently of the quotient, but not vice versa. The operations are combined here to save screen space, as the logical branches are the same.
α|ω
computes , the remainder when dividing ω
by α
.
%
to be truncated.[9] The standards before then leave the behavior implementation-defined.[10]
div
and mod
do not obey the Division Identity of D = d · (D / d) + D % d, and are thus fundamentally broken.
|journal=
(help)
the binary % operator yields the remainder from the division of the first expression by the second. .... If both operands are nonnegative then the remainder is nonnegative; if not, the sign of the remainder is implementation-definedCite journal requires
|journal=
(help)
Thesyntaxhighlight stripmarker infmod
function returns the valuex - i * y
, for some integeri
such that, ify
is nonzero, the result as the same sign asx
and magnitude less than the magnitude ofy
.
|quote=
at position 5 (help); Cite journal requires |journal=
(help)
By: Wikipedia.org
Edited: 2021-06-18 15:15:46
Source: Wikipedia.org