fbpx
Wikipedia

Modular arithmetic

In mathematics, modular arithmetic is a system of arithmetic for integers, where numbers "wrap around" when reaching a certain value, called the modulus. The modern approach to modular arithmetic was developed by Carl Friedrich Gauss in his book Disquisitiones Arithmeticae, published in 1801.

Time-keeping on this clock uses arithmetic modulo 12. Adding 4 hours to 9 o'clock gives 1 o'clock, since 13 is congruent to 1 modulo 12.

A familiar use of modular arithmetic is in the 12-hour clock, in which the day is divided into two 12-hour periods. If the time is 7:00 now, then 8 hours later it will be 3:00. Simple addition would result in 7 + 8 = 15, but 15:00 reads as 3:00 on the clock face because clocks "wrap around" every 12 hours and the hour number starts over at zero when it reaches 12. We say that 15 is congruent to 3 modulo 12, written 15 ≡ 3 (mod 12), so that 7 + 8 ≡ 3 (mod 12). Similarly, 8:00 represents a period of 8 hours, and twice this would give 16:00, which reads as 4:00 on the clock face, written as 2 × 8 ≡ 4 (mod 12).

Congruence edit

Given an integer m ≥ 1, called a modulus, two integers a and b are said to be congruent modulo m, if m is a divisor of their difference; that is, if there is an integer k such that

ab = k m.

Congruence modulo m is a congruence relation, meaning that it is an equivalence relation that is compatible with the operations of addition, subtraction, and multiplication. Congruence modulo m is denoted

ab (mod m).

The parentheses mean that (mod m) applies to the entire equation, not just to the right-hand side (here, b).

This notation is not to be confused with the notation b mod m (without parentheses), which refers to the modulo operation, the remainder of b when divided by m: that is, b mod m denotes the unique integer r such that 0 ≤ r < m and rb (mod m).

The congruence relation may be rewritten as

a = k m + b,

explicitly showing its relationship with Euclidean division. However, the b here need not be the remainder in the division of a by m. Rather, ab (mod m) asserts that a and b have the same remainder when divided by m. That is,

a = p m + r,
b = q m + r,

where 0 ≤ r < m is the common remainder. We recover the previous relation (ab = k m) by subtracting these two expressions and setting k = pq.

Because the congruence modulo m is defined by the divisibility by m and because -1 is a unit in the ring of integers, a number is divisible by -m exactly if it is divisible by m. This means that every non-zero integer m may be taken as modulus.

Examples edit

In modulus 12, one can assert that:

38 ≡ 14 (mod 12)

because the difference is 38 − 14 = 24 = 2 × 12, a multiple of 12. Equivalently, 38 and 14 have the same remainder 2 when divided by 12.

The definition of congruence also applies to negative values. For example:

 

Basic properties edit

The congruence relation satisfies all the conditions of an equivalence relation:

  • Reflexivity: aa (mod m)
  • Symmetry: ab (mod m) if ba (mod m).
  • Transitivity: If ab (mod m) and bc (mod m), then ac (mod m)

If a1b1 (mod m) and a2b2 (mod m), or if ab (mod m), then:[1]

  • a + kb + k (mod m) for any integer k (compatibility with translation)
  • k ak b (mod m) for any integer k (compatibility with scaling)
  • k ak b (mod k m) for any integer k
  • a1 + a2b1 + b2 (mod m) (compatibility with addition)
  • a1a2b1b2 (mod m) (compatibility with subtraction)
  • a1 a2b1 b2 (mod m) (compatibility with multiplication)
  • akbk (mod m) for any non-negative integer k (compatibility with exponentiation)
  • p(a) ≡ p(b) (mod m), for any polynomial p(x) with integer coefficients (compatibility with polynomial evaluation)

If ab (mod m), then it is generally false that kakb (mod m). However, the following is true:

For cancellation of common terms, we have the following rules:

  • If a + kb + k (mod m), where k is any integer, then ab (mod m).
  • If k ak b (mod m) and k is coprime with m, then ab (mod m).
  • If k ak b (mod k m) and k ≠ 0, then ab (mod m).

The last rule can be used to move modular arithmetic into division. If b divides a, then (a/b) mod m = (a mod b m) / b.

The modular multiplicative inverse is defined by the following rules:

  • Existence: There exists an integer denoted a−1 such that aa−1 ≡ 1 (mod m) if and only if a is coprime with m. This integer a−1 is called a modular multiplicative inverse of a modulo m.
  • If ab (mod m) and a−1 exists, then a−1b−1 (mod m) (compatibility with multiplicative inverse, and, if a = b, uniqueness modulo m).
  • If axb (mod m) and a is coprime to m, then the solution to this linear congruence is given by xa−1b (mod m).

The multiplicative inverse xa−1 (mod m) may be efficiently computed by solving Bézout's equation a x + m y = 1 for x, y, by using the Extended Euclidean algorithm.

In particular, if p is a prime number, then a is coprime with p for every a such that 0 < a < p; thus a multiplicative inverse exists for all a that is not congruent to zero modulo p.

Advanced properties edit

Some of the more advanced properties of congruence relations are the following:

  • Fermat's little theorem: If p is prime and does not divide a, then ap−1 ≡ 1 (mod p).
  • Euler's theorem: If a and m are coprime, then aφ(m) ≡ 1 (mod m), where φ is Euler's totient function.
  • A simple consequence of Fermat's little theorem is that if p is prime, then a−1ap−2 (mod p) is the multiplicative inverse of 0 < a < p. More generally, from Euler's theorem, if a and m are coprime, then a−1aφ(m)−1 (mod m).
  • Another simple consequence is that if ab (mod φ(m)), where φ is Euler's totient function, then kakb (mod m) provided k is coprime with m.
  • Wilson's theorem: p is prime if and only if (p − 1)! ≡ −1 (mod p).
  • Chinese remainder theorem: For any a, b and coprime m, n, there exists a unique x (mod m n) such that xa (mod m) and xb (mod n). In fact, xb mn−1 m + a nm−1 n (mod mn) where mn−1 is the inverse of m modulo n and nm−1 is the inverse of n modulo m.
  • Lagrange's theorem: The congruence f (x) ≡ 0 (mod p), where p is prime, and f (x) = a0 xm + ... + am is a polynomial with integer coefficients such that a0 ≠ 0 (mod p), has at most m roots.
  • Primitive root modulo m: A number g is a primitive root modulo m if, for every integer a coprime to m, there is an integer k such that gka (mod m). A primitive root modulo m exists if and only if m is equal to 2, 4, pk or 2pk, where p is an odd prime number and k is a positive integer. If a primitive root modulo m exists, then there are exactly φ(φ(m)) such primitive roots, where φ is the Euler's totient function.
  • Quadratic residue: An integer a is a quadratic residue modulo m, if there exists an integer x such that x2a (mod m). Euler's criterion asserts that, if p is an odd prime, and a is not a multiple of p, then a is a quadratic residue modulo p if and only if
    a(p−1)/2 ≡ 1 (mod p).

Congruence classes edit

The congruence relation is an equivalence relation. The equivalence class modulo m of an integer a is the set of all integers of the form a + k m, where k is any integer. It is called the congruence class or residue class of a modulo m, and may be denoted as (a mod m), or as a or [a] when the modulus m is known from the context.

Each residue class modulo m contains exactly one integer in the range  . Thus, these   integers are representatives of their respective residue classes.

It is generally easier to work with integers than sets of integers; that is, the representatives most often considered, rather than their residue classes.

Consequently, (a mod m) denotes generally the unique integer k such that 0 ≤ k < m and ka (mod m); it is called the residue of a modulo m.

In particular, (a mod m) = (b mod m) is equivalent to ab (mod m), and this explains why "=" is often used instead of "" in this context.

Residue systems edit

Each residue class modulo m may be represented by any one of its members, although we usually represent each residue class by the smallest nonnegative integer which belongs to that class[2] (since this is the proper remainder which results from division). Any two members of different residue classes modulo m are incongruent modulo m. Furthermore, every integer belongs to one and only one residue class modulo m.[3]

The set of integers {0, 1, 2, ..., m − 1} is called the least residue system modulo m. Any set of m integers, no two of which are congruent modulo m, is called a complete residue system modulo m.

The least residue system is a complete residue system, and a complete residue system is simply a set containing precisely one representative of each residue class modulo m.[4] For example, the least residue system modulo 4 is {0, 1, 2, 3}. Some other complete residue systems modulo 4 include:

  • {1, 2, 3, 4}
  • {13, 14, 15, 16}
  • {−2, −1, 0, 1}
  • {−13, 4, 17, 18}
  • {−5, 0, 6, 21}
  • {27, 32, 37, 42}

Some sets that are not complete residue systems modulo 4 are:

  • {−5, 0, 6, 22}, since 6 is congruent to 22 modulo 4.
  • {5, 15}, since a complete residue system modulo 4 must have exactly 4 incongruent residue classes.

Reduced residue systems edit

Given the Euler's totient function φ(m), any set of φ(m) integers that are relatively prime to m and mutually incongruent under modulus m is called a reduced residue system modulo m.[5] The set {5, 15} from above, for example, is an instance of a reduced residue system modulo 4.

Covering systems edit

Covering systems represent yet another type of residue system that may contain residues with varying moduli.

Integers modulo m edit

Remark: In the context of this paragraph, the modulus m is almost always taken as positive.

The set of all congruence classes modulo m is called the ring of integers modulo m,[6] and is denoted  ,  , or  .[7] The notation   is, however, not recommended because it can be confused with the set of m-adic integers. The ring   is fundamental to various branches of mathematics (see § Applications below).

For m > 0 one has

 

When m = 1,   is the zero ring; when m = 0,   is not an empty set; rather, it is isomorphic to  , since a0 = {a}.

Addition, subtraction, and multiplication are defined on   by the following rules:

  •  
  •  
  •  

The properties given before imply that, with these operations,   is a commutative ring. For example, in the ring  , one has

 

as in the arithmetic for the 24-hour clock.

The notation   is used because this ring is the quotient ring of   by the ideal  , the set formed by all k m with  

Considered as a group under addition,   is a cyclic group, and all cyclic groups are isomorphic with   for some m.[8]

The ring of integers modulo m is a field if and only if m is prime (this ensures that every nonzero element has a multiplicative inverse). If m = pk is a prime power with k > 1, there exists a unique (up to isomorphism) finite field   with m elements, which is not isomorphic to  , which fails to be a field because it has zero-divisors.

If m > 1,   denotes the multiplicative group of the integers modulo m that are invertible. It consists of the congruence classes am, where a is coprime to m; these are precisely the classes possessing a multiplicative inverse. They form an abelian group under multiplication; its order is φ(m), where φ is Euler's totient function

Extension to real numbers edit

Applications edit

In pure mathematics, modular arithmetic is one of the foundations of number theory, touching on almost every aspect of its study, and it is also used extensively in group theory, ring theory, knot theory, and abstract algebra. In applied mathematics, it is used in computer algebra, cryptography, computer science, chemistry and the visual and musical arts.

A very practical application is to calculate checksums within serial number identifiers. For example, International Standard Book Number (ISBN) uses modulo 11 (for 10-digit ISBN) or modulo 10 (for 13-digit ISBN) arithmetic for error detection. Likewise, International Bank Account Numbers (IBANs), for example, make use of modulo 97 arithmetic to spot user input errors in bank account numbers. In chemistry, the last digit of the CAS registry number (a unique identifying number for each chemical compound) is a check digit, which is calculated by taking the last digit of the first two parts of the CAS registry number times 1, the previous digit times 2, the previous digit times 3 etc., adding all these up and computing the sum modulo 10.

In cryptography, modular arithmetic directly underpins public key systems such as RSA and Diffie–Hellman, and provides finite fields which underlie elliptic curves, and is used in a variety of symmetric key algorithms including Advanced Encryption Standard (AES), International Data Encryption Algorithm (IDEA), and RC4. RSA and Diffie–Hellman use modular exponentiation.

In computer algebra, modular arithmetic is commonly used to limit the size of integer coefficients in intermediate calculations and data. It is used in polynomial factorization, a problem for which all known efficient algorithms use modular arithmetic. It is used by the most efficient implementations of polynomial greatest common divisor, exact linear algebra and Gröbner basis algorithms over the integers and the rational numbers. As posted on Fidonet in the 1980s and archived at Rosetta Code, modular arithmetic was used to disprove Euler's sum of powers conjecture on a Sinclair QL microcomputer using just one-fourth of the integer precision used by a CDC 6600 supercomputer to disprove it two decades earlier via a brute force search.[9]

In computer science, modular arithmetic is often applied in bitwise operations and other operations involving fixed-width, cyclic data structures. The modulo operation, as implemented in many programming languages and calculators, is an application of modular arithmetic that is often used in this context. The logical operator XOR sums 2 bits, modulo 2.

The use of long division to turn a fraction into a repeating decimal in any base b is equivalent to modular multiplication of b modulo the denominator. For example, for decimal, b = 10.

In music, arithmetic modulo 12 is used in the consideration of the system of twelve-tone equal temperament, where octave and enharmonic equivalency occurs (that is, pitches in a 1:2 or 2:1 ratio are equivalent, and C-sharp is considered the same as D-flat).

The method of casting out nines offers a quick check of decimal arithmetic computations performed by hand. It is based on modular arithmetic modulo 9, and specifically on the crucial property that 10 ≡ 1 (mod 9).

Arithmetic modulo 7 is used in algorithms that determine the day of the week for a given date. In particular, Zeller's congruence and the Doomsday algorithm make heavy use of modulo-7 arithmetic.

More generally, modular arithmetic also has application in disciplines such as law (e.g., apportionment), economics (e.g., game theory) and other areas of the social sciences, where proportional division and allocation of resources plays a central part of the analysis.

Computational complexity edit

Since modular arithmetic has such a wide range of applications, it is important to know how hard it is to solve a system of congruences. A linear system of congruences can be solved in polynomial time with a form of Gaussian elimination, for details see linear congruence theorem. Algorithms, such as Montgomery reduction, also exist to allow simple arithmetic operations, such as multiplication and exponentiation modulo m, to be performed efficiently on large numbers.

Some operations, like finding a discrete logarithm or a quadratic congruence appear to be as hard as integer factorization and thus are a starting point for cryptographic algorithms and encryption. These problems might be NP-intermediate.

Solving a system of non-linear modular arithmetic equations is NP-complete.[10]

Example implementations edit

Below are three reasonably fast C functions, two for performing modular multiplication and one for modular exponentiation on unsigned integers not larger than 63 bits, without overflow of the transient operations.

An algorithm to compute ab (mod m):[11]

uint64_t mul_mod(uint64_t a, uint64_t b, uint64_t m) {  if (!((a | b) & (0xFFFFFFFFULL << 32))) return a * b % m;  uint64_t d = 0, mp2 = m >> 1;  int i;  if (a >= m) a %= m;  if (b >= m) b %= m;  for (i = 0; i < 64; ++i) {  d = (d > mp2) ? (d << 1) - m : d << 1;  if (a & 0x8000000000000000ULL) d += b;  if (d >= m) d -= m;  a <<= 1;  }  return d; } 

On computer architectures where an extended precision format with at least 64 bits of mantissa is available (such as the long double type of most x86 C compilers), the following routine is faster than a solution using a loop, by employing the trick that, by hardware, floating-point multiplication results in the most significant bits of the product kept, while integer multiplication results in the least significant bits kept:[citation needed]

uint64_t mul_mod(uint64_t a, uint64_t b, uint64_t m) {  long double x;  uint64_t c;  int64_t r;  if (a >= m) a %= m;  if (b >= m) b %= m;  x = a;  c = x * b / m;  r = (int64_t)(a * b - c * m) % (int64_t)m;  return r < 0 ? r + m : r; } 

Below is a C function for performing modular exponentiation, that uses the mul_mod function implemented above.

An algorithmic way to compute ab (mod m):

uint64_t pow_mod(uint64_t a, uint64_t b, uint64_t m) {  uint64_t r = m == 1 ? 0 : 1;  while (b > 0) {  if (b & 1) r = mul_mod(r, a, m);  b = b >> 1;  a = mul_mod(a, a, m);  }  return r; } 

However, for all above routines to work, m must not exceed 63 bits.

See also edit

Notes edit

  1. ^ Sandor Lehoczky; Richard Rusczky (2006). David Patrick (ed.). the Art of Problem Solving. Vol. 1 (7 ed.). AoPS Incorporated. p. 44. ISBN 0977304566.
  2. ^ Weisstein, Eric W. "Modular Arithmetic". Wolfram MathWorld. from the original on 2023-07-14. Retrieved 2020-08-12.
  3. ^ Pettofrezzo & Byrkit (1970, p. 90)
  4. ^ Long (1972, p. 78)
  5. ^ Long (1972, p. 85)
  6. ^ It is a ring, as shown below.
  7. ^ "2.3: Integers Modulo n". Mathematics LibreTexts. 2013-11-16. from the original on 2021-04-19. Retrieved 2020-08-12.
  8. ^ Sengadir T., Discrete Mathematics and Combinatorics, p. 293, at Google Books
  9. ^ "Euler's sum of powers conjecture". rosettacode.org. from the original on 2023-03-26. Retrieved 2020-11-11.
  10. ^ Garey, M. R.; Johnson, D. S. (1979). Computers and Intractability, a Guide to the Theory of NP-Completeness. W. H. Freeman. ISBN 0716710447.
  11. ^ This code uses the C literal notation for unsigned long long hexadecimal numbers, which end with ULL. See also section 6.4.4 of the language specification n1570 2018-03-29 at the Wayback Machine.

References edit

External links edit

  • "Congruence", Encyclopedia of Mathematics, EMS Press, 2001 [1994]
  • In this article, one can learn more about applications of modular arithmetic in art.
  • An on modular arithmetic on the GIMPS wiki
  • Modular Arithmetic and patterns in addition and multiplication tables

modular, arithmetic, this, article, about, notation, binary, operation, modulo, mathematics, modular, arithmetic, system, arithmetic, integers, where, numbers, wrap, around, when, reaching, certain, value, called, modulus, modern, approach, modular, arithmetic. This article is about the mod m notation For the binary operation mod a m see modulo In mathematics modular arithmetic is a system of arithmetic for integers where numbers wrap around when reaching a certain value called the modulus The modern approach to modular arithmetic was developed by Carl Friedrich Gauss in his book Disquisitiones Arithmeticae published in 1801 Time keeping on this clock uses arithmetic modulo 12 Adding 4 hours to 9 o clock gives 1 o clock since 13 is congruent to 1 modulo 12 A familiar use of modular arithmetic is in the 12 hour clock in which the day is divided into two 12 hour periods If the time is 7 00 now then 8 hours later it will be 3 00 Simple addition would result in 7 8 15 but 15 00 reads as 3 00 on the clock face because clocks wrap around every 12 hours and the hour number starts over at zero when it reaches 12 We say that 15 is congruent to 3 modulo 12 written 15 3 mod 12 so that 7 8 3 mod 12 Similarly 8 00 represents a period of 8 hours and twice this would give 16 00 which reads as 4 00 on the clock face written as 2 8 4 mod 12 Contents 1 Congruence 1 1 Examples 2 Basic properties 3 Advanced properties 4 Congruence classes 5 Residue systems 5 1 Reduced residue systems 5 2 Covering systems 6 Integers modulo m 7 Extension to real numbers 8 Applications 9 Computational complexity 10 Example implementations 11 See also 12 Notes 13 References 14 External linksCongruence editGiven an integer m 1 called a modulus two integers a and b are said to be congruent modulo m if m is a divisor of their difference that is if there is an integer k such that a b k m Congruence modulo m is a congruence relation meaning that it is an equivalence relation that is compatible with the operations of addition subtraction and multiplication Congruence modulo m is denoted a b mod m The parentheses mean that mod m applies to the entire equation not just to the right hand side here b This notation is not to be confused with the notation b mod m without parentheses which refers to the modulo operation the remainder of b when divided by m that is b mod m denotes the unique integer r such that 0 r lt m and r b mod m The congruence relation may be rewritten as a k m b explicitly showing its relationship with Euclidean division However the b here need not be the remainder in the division of a by m Rather a b mod m asserts that a and b have the same remainder when divided by m That is a p m r b q m r where 0 r lt m is the common remainder We recover the previous relation a b k m by subtracting these two expressions and setting k p q Because the congruence modulo m is defined by the divisibility by m and because 1 is a unit in the ring of integers a number is divisible by m exactly if it is divisible by m This means that every non zero integer m may be taken as modulus Examples edit In modulus 12 one can assert that 38 14 mod 12 because the difference is 38 14 24 2 12 a multiple of 12 Equivalently 38 and 14 have the same remainder 2 when divided by 12 The definition of congruence also applies to negative values For example 2 3 mod 5 8 7 mod 5 3 8 mod 5 displaystyle begin aligned 2 amp equiv 3 pmod 5 8 amp equiv 7 pmod 5 3 amp equiv 8 pmod 5 end aligned nbsp Basic properties editThe congruence relation satisfies all the conditions of an equivalence relation Reflexivity a a mod m Symmetry a b mod m if b a mod m Transitivity If a b mod m and b c mod m then a c mod m If a1 b1 mod m and a2 b2 mod m or if a b mod m then 1 a k b k mod m for any integer k compatibility with translation k a k b mod m for any integer k compatibility with scaling k a k b mod k m for any integer k a1 a2 b1 b2 mod m compatibility with addition a1 a2 b1 b2 mod m compatibility with subtraction a1 a2 b1 b2 mod m compatibility with multiplication ak bk mod m for any non negative integer k compatibility with exponentiation p a p b mod m for any polynomial p x with integer coefficients compatibility with polynomial evaluation If a b mod m then it is generally false that ka kb mod m However the following is true If c d mod f m where f is Euler s totient function then ac ad mod m provided that a is coprime with m For cancellation of common terms we have the following rules If a k b k mod m where k is any integer then a b mod m If k a k b mod m and k is coprime with m then a b mod m If k a k b mod k m and k 0 then a b mod m The last rule can be used to move modular arithmetic into division If b divides a then a b mod m a mod b m b The modular multiplicative inverse is defined by the following rules Existence There exists an integer denoted a 1 such that aa 1 1 mod m if and only if a is coprime with m This integer a 1 is called a modular multiplicative inverse of a modulo m If a b mod m and a 1 exists then a 1 b 1 mod m compatibility with multiplicative inverse and if a b uniqueness modulo m If ax b mod m and a is coprime to m then the solution to this linear congruence is given by x a 1b mod m The multiplicative inverse x a 1 mod m may be efficiently computed by solving Bezout s equation a x m y 1 for x y by using the Extended Euclidean algorithm In particular if p is a prime number then a is coprime with p for every a such that 0 lt a lt p thus a multiplicative inverse exists for all a that is not congruent to zero modulo p Advanced properties editSome of the more advanced properties of congruence relations are the following Fermat s little theorem If p is prime and does not divide a then ap 1 1 mod p Euler s theorem If a and m are coprime then af m 1 mod m where f is Euler s totient function A simple consequence of Fermat s little theorem is that if p is prime then a 1 ap 2 mod p is the multiplicative inverse of 0 lt a lt p More generally from Euler s theorem if a and m are coprime then a 1 af m 1 mod m Another simple consequence is that if a b mod f m where f is Euler s totient function then ka kb mod m provided k is coprime with m Wilson s theorem p is prime if and only if p 1 1 mod p Chinese remainder theorem For any a b and coprime m n there exists a unique x mod m n such that x a mod m and x b mod n In fact x b mn 1 m a nm 1 n mod mn where mn 1 is the inverse of m modulo n and nm 1 is the inverse of n modulo m Lagrange s theorem The congruence f x 0 mod p where p is prime and f x a0 xm am is a polynomial with integer coefficients such that a0 0 mod p has at most m roots Primitive root modulo m A number g is a primitive root modulo m if for every integer a coprime to m there is an integer k such that gk a mod m A primitive root modulo m exists if and only if m is equal to 2 4 pk or 2pk where p is an odd prime number and k is a positive integer If a primitive root modulo m exists then there are exactly f f m such primitive roots where f is the Euler s totient function Quadratic residue An integer a is a quadratic residue modulo m if there exists an integer x such that x2 a mod m Euler s criterion asserts that if p is an odd prime and a is not a multiple of p then a is a quadratic residue modulo p if and only if a p 1 2 1 mod p Congruence classes editThe congruence relation is an equivalence relation The equivalence class modulo m of an integer a is the set of all integers of the form a k m where k is any integer It is called the congruence class or residue class of a modulo m and may be denoted as a mod m or as a or a when the modulus m is known from the context Each residue class modulo m contains exactly one integer in the range 0 m 1 displaystyle 0 m 1 nbsp Thus these m displaystyle m nbsp integers are representatives of their respective residue classes It is generally easier to work with integers than sets of integers that is the representatives most often considered rather than their residue classes Consequently a mod m denotes generally the unique integer k such that 0 k lt m and k a mod m it is called the residue of a modulo m In particular a mod m b mod m is equivalent to a b mod m and this explains why is often used instead of in this context Residue systems editEach residue class modulo m may be represented by any one of its members although we usually represent each residue class by the smallest nonnegative integer which belongs to that class 2 since this is the proper remainder which results from division Any two members of different residue classes modulo m are incongruent modulo m Furthermore every integer belongs to one and only one residue class modulo m 3 The set of integers 0 1 2 m 1 is called the least residue system modulo m Any set of m integers no two of which are congruent modulo m is called a complete residue system modulo m The least residue system is a complete residue system and a complete residue system is simply a set containing precisely one representative of each residue class modulo m 4 For example the least residue system modulo 4 is 0 1 2 3 Some other complete residue systems modulo 4 include 1 2 3 4 13 14 15 16 2 1 0 1 13 4 17 18 5 0 6 21 27 32 37 42 Some sets that are not complete residue systems modulo 4 are 5 0 6 22 since 6 is congruent to 22 modulo 4 5 15 since a complete residue system modulo 4 must have exactly 4 incongruent residue classes Reduced residue systems edit Main article Reduced residue system Given the Euler s totient function f m any set of f m integers that are relatively prime to m and mutually incongruent under modulus m is called a reduced residue system modulo m 5 The set 5 15 from above for example is an instance of a reduced residue system modulo 4 Covering systems edit Main article Covering system Covering systems represent yet another type of residue system that may contain residues with varying moduli Integers modulo m editRemark In the context of this paragraph the modulus m is almost always taken as positive The set of all congruence classes modulo m is called the ring of integers modulo m 6 and is denoted Z m Z textstyle mathbb Z m mathbb Z nbsp Z m displaystyle mathbb Z m nbsp or Z m displaystyle mathbb Z m nbsp 7 The notation Z m displaystyle mathbb Z m nbsp is however not recommended because it can be confused with the set of m adic integers The ring Z m Z displaystyle mathbb Z m mathbb Z nbsp is fundamental to various branches of mathematics see Applications below For m gt 0 one has Z m Z a m a Z 0 m 1 m 2 m m 1 m displaystyle mathbb Z m mathbb Z left overline a m mid a in mathbb Z right left overline 0 m overline 1 m overline 2 m ldots overline m 1 m right nbsp When m 1 Z m Z displaystyle mathbb Z m mathbb Z nbsp is the zero ring when m 0 Z m Z displaystyle mathbb Z m mathbb Z nbsp is not an empty set rather it is isomorphic to Z displaystyle mathbb Z nbsp since a 0 a Addition subtraction and multiplication are defined on Z m Z displaystyle mathbb Z m mathbb Z nbsp by the following rules a m b m a b m displaystyle overline a m overline b m overline a b m nbsp a m b m a b m displaystyle overline a m overline b m overline a b m nbsp a m b m a b m displaystyle overline a m overline b m overline ab m nbsp The properties given before imply that with these operations Z m Z displaystyle mathbb Z m mathbb Z nbsp is a commutative ring For example in the ring Z 24 Z displaystyle mathbb Z 24 mathbb Z nbsp one has 12 24 21 24 33 24 9 24 displaystyle overline 12 24 overline 21 24 overline 33 24 overline 9 24 nbsp as in the arithmetic for the 24 hour clock The notation Z m Z displaystyle mathbb Z m mathbb Z nbsp is used because this ring is the quotient ring of Z displaystyle mathbb Z nbsp by the ideal m Z displaystyle m mathbb Z nbsp the set formed by all k m with k Z displaystyle k in mathbb Z nbsp Considered as a group under addition Z m Z displaystyle mathbb Z m mathbb Z nbsp is a cyclic group and all cyclic groups are isomorphic with Z m Z displaystyle mathbb Z m mathbb Z nbsp for some m 8 The ring of integers modulo m is a field if and only if m is prime this ensures that every nonzero element has a multiplicative inverse If m pk is a prime power with k gt 1 there exists a unique up to isomorphism finite field G F m F m displaystyle mathrm GF m mathbb F m nbsp with m elements which is not isomorphic to Z m Z displaystyle mathbb Z m mathbb Z nbsp which fails to be a field because it has zero divisors If m gt 1 Z m Z displaystyle mathbb Z m mathbb Z times nbsp denotes the multiplicative group of the integers modulo m that are invertible It consists of the congruence classes a m where a is coprime to m these are precisely the classes possessing a multiplicative inverse They form an abelian group under multiplication its order is f m where f is Euler s totient functionExtension to real numbers editSee also Modulo This section is empty You can help by adding to it July 2022 Applications editIn pure mathematics modular arithmetic is one of the foundations of number theory touching on almost every aspect of its study and it is also used extensively in group theory ring theory knot theory and abstract algebra In applied mathematics it is used in computer algebra cryptography computer science chemistry and the visual and musical arts A very practical application is to calculate checksums within serial number identifiers For example International Standard Book Number ISBN uses modulo 11 for 10 digit ISBN or modulo 10 for 13 digit ISBN arithmetic for error detection Likewise International Bank Account Numbers IBANs for example make use of modulo 97 arithmetic to spot user input errors in bank account numbers In chemistry the last digit of the CAS registry number a unique identifying number for each chemical compound is a check digit which is calculated by taking the last digit of the first two parts of the CAS registry number times 1 the previous digit times 2 the previous digit times 3 etc adding all these up and computing the sum modulo 10 In cryptography modular arithmetic directly underpins public key systems such as RSA and Diffie Hellman and provides finite fields which underlie elliptic curves and is used in a variety of symmetric key algorithms including Advanced Encryption Standard AES International Data Encryption Algorithm IDEA and RC4 RSA and Diffie Hellman use modular exponentiation In computer algebra modular arithmetic is commonly used to limit the size of integer coefficients in intermediate calculations and data It is used in polynomial factorization a problem for which all known efficient algorithms use modular arithmetic It is used by the most efficient implementations of polynomial greatest common divisor exact linear algebra and Grobner basis algorithms over the integers and the rational numbers As posted on Fidonet in the 1980s and archived at Rosetta Code modular arithmetic was used to disprove Euler s sum of powers conjecture on a Sinclair QL microcomputer using just one fourth of the integer precision used by a CDC 6600 supercomputer to disprove it two decades earlier via a brute force search 9 In computer science modular arithmetic is often applied in bitwise operations and other operations involving fixed width cyclic data structures The modulo operation as implemented in many programming languages and calculators is an application of modular arithmetic that is often used in this context The logical operator XOR sums 2 bits modulo 2 The use of long division to turn a fraction into a repeating decimal in any base b is equivalent to modular multiplication of b modulo the denominator For example for decimal b 10 In music arithmetic modulo 12 is used in the consideration of the system of twelve tone equal temperament where octave and enharmonic equivalency occurs that is pitches in a 1 2 or 2 1 ratio are equivalent and C sharp is considered the same as D flat The method of casting out nines offers a quick check of decimal arithmetic computations performed by hand It is based on modular arithmetic modulo 9 and specifically on the crucial property that 10 1 mod 9 Arithmetic modulo 7 is used in algorithms that determine the day of the week for a given date In particular Zeller s congruence and the Doomsday algorithm make heavy use of modulo 7 arithmetic More generally modular arithmetic also has application in disciplines such as law e g apportionment economics e g game theory and other areas of the social sciences where proportional division and allocation of resources plays a central part of the analysis Computational complexity editSince modular arithmetic has such a wide range of applications it is important to know how hard it is to solve a system of congruences A linear system of congruences can be solved in polynomial time with a form of Gaussian elimination for details see linear congruence theorem Algorithms such as Montgomery reduction also exist to allow simple arithmetic operations such as multiplication and exponentiation modulo m to be performed efficiently on large numbers Some operations like finding a discrete logarithm or a quadratic congruence appear to be as hard as integer factorization and thus are a starting point for cryptographic algorithms and encryption These problems might be NP intermediate Solving a system of non linear modular arithmetic equations is NP complete 10 Example implementations editThis section possibly contains original research Please improve it by verifying the claims made and adding inline citations Statements consisting only of original research should be removed May 2020 Learn how and when to remove this message Below are three reasonably fast C functions two for performing modular multiplication and one for modular exponentiation on unsigned integers not larger than 63 bits without overflow of the transient operations An algorithm to compute a b mod m 11 uint64 t mul mod uint64 t a uint64 t b uint64 t m if a b amp 0xFFFFFFFFULL lt lt 32 return a b m uint64 t d 0 mp2 m gt gt 1 int i if a gt m a m if b gt m b m for i 0 i lt 64 i d d gt mp2 d lt lt 1 m d lt lt 1 if a amp 0x8000000000000000ULL d b if d gt m d m a lt lt 1 return d On computer architectures where an extended precision format with at least 64 bits of mantissa is available such as the long double type of most x86 C compilers the following routine is faster than a solution using a loop by employing the trick that by hardware floating point multiplication results in the most significant bits of the product kept while integer multiplication results in the least significant bits kept citation needed uint64 t mul mod uint64 t a uint64 t b uint64 t m long double x uint64 t c int64 t r if a gt m a m if b gt m b m x a c x b m r int64 t a b c m int64 t m return r lt 0 r m r Below is a C function for performing modular exponentiation that uses the mul mod function implemented above An algorithmic way to compute ab mod m uint64 t pow mod uint64 t a uint64 t b uint64 t m uint64 t r m 1 0 1 while b gt 0 if b amp 1 r mul mod r a m b b gt gt 1 a mul mod a a m return r However for all above routines to work m must not exceed 63 bits See also editBoolean ring Circular buffer Division mathematics Finite field Legendre symbol Modular exponentiation Modulo mathematics Multiplicative group of integers modulo n Pisano period Fibonacci sequences modulo n Primitive root modulo n Quadratic reciprocity Quadratic residue Rational reconstruction mathematics Reduced residue system Serial number arithmetic a special case of modular arithmetic Two element Boolean algebra Topics relating to the group theory behind modular arithmetic Cyclic group Multiplicative group of integers modulo n Other important theorems relating to modular arithmetic Carmichael s theorem Chinese remainder theorem Euler s theorem Fermat s little theorem a special case of Euler s theorem Lagrange s theorem Thue s lemmaNotes edit Sandor Lehoczky Richard Rusczky 2006 David Patrick ed the Art of Problem Solving Vol 1 7 ed AoPS Incorporated p 44 ISBN 0977304566 Weisstein Eric W Modular Arithmetic Wolfram MathWorld Archived from the original on 2023 07 14 Retrieved 2020 08 12 Pettofrezzo amp Byrkit 1970 p 90 Long 1972 p 78 Long 1972 p 85 It is a ring as shown below 2 3 Integers Modulo n Mathematics LibreTexts 2013 11 16 Archived from the original on 2021 04 19 Retrieved 2020 08 12 Sengadir T Discrete Mathematics and Combinatorics p 293 at Google Books Euler s sum of powers conjecture rosettacode org Archived from the original on 2023 03 26 Retrieved 2020 11 11 Garey M R Johnson D S 1979 Computers and Intractability a Guide to the Theory of NP Completeness W H Freeman ISBN 0716710447 This code uses the C literal notation for unsigned long long hexadecimal numbers which end with ULL See also section 6 4 4 of the language specification n1570 Archived 2018 03 29 at the Wayback Machine References editJohn L Berggren modular arithmetic Encyclopaedia Britannica Apostol Tom M 1976 Introduction to analytic number theory Undergraduate Texts in Mathematics New York Heidelberg Springer Verlag ISBN 978 0 387 90163 3 MR 0434929 Zbl 0335 10001 See in particular chapters 5 and 6 for a review of basic modular arithmetic Maarten Bullynck Modular Arithmetic before C F Gauss Systematisations and discussions on remainder problems in 18th century Germany Thomas H Cormen Charles E Leiserson Ronald L Rivest and Clifford Stein Introduction to Algorithms Second Edition MIT Press and McGraw Hill 2001 ISBN 0 262 03293 7 Section 31 3 Modular arithmetic pp 862 868 Anthony Gioia Number Theory an Introduction Reprint 2001 Dover ISBN 0 486 41449 3 Long Calvin T 1972 Elementary Introduction to Number Theory 2nd ed Lexington D C Heath and Company LCCN 77171950 Pettofrezzo Anthony J Byrkit Donald R 1970 Elements of Number Theory Englewood Cliffs Prentice Hall ISBN 9780132683005 LCCN 71081766 Sengadir T 2009 Discrete Mathematics and Combinatorics Chennai India Pearson Education India ISBN 978 81 317 1405 8 OCLC 778356123 External links edit Congruence Encyclopedia of Mathematics EMS Press 2001 1994 In this modular art article one can learn more about applications of modular arithmetic in art An article on modular arithmetic on the GIMPS wiki Modular Arithmetic and patterns in addition and multiplication tables Retrieved from https en wikipedia org w index php title Modular arithmetic amp oldid 1224040388, wikipedia, wiki, book, books, library,

article

, read, download, free, free download, mp3, video, mp4, 3gp, jpg, jpeg, gif, png, picture, music, song, movie, book, game, games.