Divisibility and Primes
Entry conditions
You should be familiar with natural numbers, addition, and multiplication.
Definitions
An integer divides an integer (written ) if there exists an integer such that .
A prime is an integer whose only positive divisors are and itself. An integer greater than that is not prime is composite.
The greatest common divisor is the largest positive integer dividing both and . The least common multiple is the smallest positive integer divisible by both.
Fundamental theorem of arithmetic: every integer greater than factors uniquely (up to order) as a product of primes. This makes the primes the “atoms” of multiplicative arithmetic.
Vocabulary (plain language)
- Divides: goes into evenly.
- Prime: a number with no nontrivial factors.
- GCD: the largest shared factor.
Symbols used
- : divides .
- : greatest common divisor.
- : least common multiple.
Intuition
Divisibility imposes a partial order on the positive integers. In this order, primes are the atoms — they sit just above and cannot be broken down further. The fundamental theorem says every number is built from primes in exactly one way.
The Euclidean algorithm computes efficiently by repeated division: , terminating when the remainder is zero.
Worked example
To find : , then , then . So .
The prime factorizations are and . The GCD takes the minimum exponent of each prime: .
Common mistakes
- Calling a prime. By convention, is neither prime nor composite.
- Forgetting that the fundamental theorem requires uniqueness up to order of factors.