CSci 271 Lecture Notes

Week Five, Monday: The Integers and Division

Introduction

Number theory is concerned with integers and their properties. Primes are numerical nuggets that have no divisors (except for one and themselves, of course).

The Fundamental Theorem of Arithmetic: every positive integer can be represented as a product of primes.

Integer division produces a quotient and a remainder. For example, three divided by seven equals zero with a remainder of three. Ten divided by seven is one with a remainder of three. Seventeen divided by seven is two with a remainder of three. In modular arithmetic, it's the remainders that are important.

Division

Definition 1: a divides b if the remainder is zero. That is, there is an integer c such that b = ac. a is a factor of b and b is a multiple of a.

The notation "a | b" means "a divides b."

Theorem 1: If a divides b and a divides c then a divides b + c. If a divides b then a divides bc for all integers c. If a divides b and b divides c, the a divides c.

Definition 2: prime numbers.

Theorem 2: Fundamental theorem of arithmetic: positive integers can be (uniquely) represented as products of primes.

We normally represent integers as polynomials. If one could find a way to implement Theorem 2 in a computer database, factoring large composites of large primes would be a snap. However, it is fairly easy to prove that this approach is infeasible.

Theorem 3: Any composite has a prime divisor <= the number's square root. (Suppose it didn't. Then any pair of the factors multiplied together would be greater than the number.)

The Division Algorithm

Theorem 4: The Division Algorithm: There is a remainder less than the divisor so that the dividend (what gets divided) is equal to the divisor times the quotient plus the remainder.

Theorem 4 is not really an algorithm, but a formulation of integer division.

Example 7.

Greatest Common Divisors and Least Common Multiples

Definition 4. gcd(a, b): largest integer d such that it divides a and b.

Definition 5. Relative primes.

Definition 6. Pairwise relative primes.

Definition 7. Least common multiple.

Theorem 5: ab = gcd(a, b) * lcm(a, b).

Modular Arithmetic

Definition 8.

Definition 9.

Theorem 6.

Theorem 7.

Applications of Congruences

Example 18: Hashing functions.

Example 19: Pseudorandom numbers.

Cryptology

Cryptology is a fascinating topic concerned with keeping things secret (and, conversely, finding out secrets). Caesar's cipher, among others, uses modular arithmetic. Caution: the encryption schemes described in the text are very weak and can be broken easily without even using electronic computers.

Example 20.

Example 21.


This page established October 2, 1998; last updated October 2, 1998.