13 Calculator Shortcut for Modular Arithmetic

Modular arithmetic

If you think back to doing division with whole numbers, you may remember finding the whole number result and the remainder after division.

Modulus

The modulus[1] is another name for the remainder after division.

For example, 17 mod 5 = 2, since if we divide 17 by 5, we get 3 with remainder 2.

Modular arithmetic is sometimes called clock arithmetic, since analog clocks wrap around times past 12, meaning they work on a modulus of 12. If the hour hand of a clock currently points to 8, then in 5 hours it will point to 1. While 8 + 5 = 13, the clock wraps around after 12, so all times can be thought of as modulus 12. Mathematically, 13 mod 12 = 1.

Example 1

Compute the following:

  1. 10 mod 3
  2. 15 mod 5
  3. 27 mod 5

Answers

  1. Since 10 divided by 3 is 3 with remainder 1, 10 mod 3 = 1
  2. Since 15 divided by 5 is 3 with no remainder, 15 mod 5 = 0
  3. 27 = 128. 128 divide by 5 is 25 with remainder 3, so 27 mod 5 = 3

Try it Now

Compute the following:

  1. 23 mod 7
  2. 15 mod 7
  3. 2034 mod 7

Recall that when we divide 17 by 5, we could represent the result as 3 remainder 2, as the mixed number [latex]\displaystyle3\frac{2}{5}\\[/latex], or as the decimal 3.4. Notice that the modulus, 2, is the same as the numerator of the fractional part of the mixed number, and that the decimal part 0.4 is equivalent to the fraction [latex]\displaystyle\frac{2}{5}\\[/latex]. We can use these conversions to calculate the modulus of not-too-huge numbers on a standard calculator.

Modulus on a Standard Calculator

To calculate a mod n on a standard calculator

  1. Divide a by n
  2. Subtract the whole part of the resulting quantity
  3. Multiply by n to obtain the modulus

Example 2

Calculate 31345 mod 419.

Answer

[latex]31345\div{419}=74.8090692[/latex] Now subtract 74 to get just the decimal remainder
[latex]74.8090692-74=0.8090692[/latex] Multiply this by 419 to get the modulus
[latex]0.8090692\times{419}=339[/latex] This tells us 0.8090692 was equivalent to [latex]\frac{339}{419}[/latex]

In the text above, only a portion of the decimal value was written down. In practice, you should try to avoid writing down the intermediary steps, and instead allow your calculator to retain as many decimal values as it can.


  1. Sometimes, instead of seeing 17 mod 5 = 2, you’ll see 17 ≡ 2 (mod 5). The ≡ symbol means “congruent to” and means that 17 and 2 are equivalent, after you consider the modulus 5.

License

Icon for the Creative Commons Attribution 4.0 International License

Introduction to College Mathematics Copyright © by Lumen Learning is licensed under a Creative Commons Attribution 4.0 International License, except where otherwise noted.

Share This Book