Modular arithmetic

From TCS Wiki
Jump to navigation Jump to search
File:Clock group.svg
Time-keeping on a clock gives an example of modular arithmetic.

Modular arithmetic, sometimes also called clock arithmetic, is a way of doing arithmetic with integers. Much like hours on a clock, which repeat every twelve hours, once the numbers reach a certain value, called the modulus, they go back to zero.

People talked about modular arithmetic in many ancient cultures. For instance, the Chinese remainder theorem is many centuries old. The modern notation and exact definition of modular arithmetic were first described by Carl Friedrich Gauss.[1]

Congruence

Modular arithmetic can be used to show the idea of congruence. Two integers, a and b, are congruent modulo n if they have the same remainder when both are divided by the positive integer n. Congruence can be written this way:

[math]\displaystyle{ a \equiv b \pmod n\, }[/math]

The number n is called the modulus. Another definition of congruence, that means the same thing but is sometimes more useful, is that the two integers are congruent modulo n if the difference (a - b) is an integer multiple of n. That is, if n is a factor of (a - b), then a and b are congruent mod n.

For example:

[math]\displaystyle{ 32 \equiv 11 \pmod 7,\, }[/math]

The remainder when 32 is divided by 7 is 4, and the remainder when 11 is divided by 7 is also 4. This tell us they're congruent, mod 7.

We can use this example it with the other definition too. The difference, (a - b), is 32 - 11 = 21. This shows the two numbers are congruent because 21 = 3 * 7, and 7 is a factor of 21.

Uses

Modular arithmetic is useful in many fields, such as cryptography, computer science, and music. It is often used in calculating checksums and check digits.

References

Template:Reflist Template:Math-stub