ConceptComplete

Divisibility and Primes - Core Definitions

Number theory begins with the fundamental concept of divisibility, which describes how integers relate to one another through multiplication. Understanding these relationships forms the foundation for all subsequent developments in the theory of numbers.

DefinitionDivisibility

Let a,bZa, b \in \mathbb{Z} with a0a \neq 0. We say that aa divides bb, written aba \mid b, if there exists an integer kk such that b=akb = ak. In this case, we call aa a divisor of bb, and bb a multiple of aa. If aa does not divide bb, we write aba \nmid b.

The divisibility relation has several important properties that make it particularly well-behaved. It is reflexive (every integer divides itself), antisymmetric in a certain sense, and transitive. These properties allow us to reason systematically about divisibility.

Remark

Key properties of divisibility:

  • If aba \mid b and bcb \mid c, then aca \mid c (transitivity)
  • If aba \mid b and aca \mid c, then a(bx+cy)a \mid (bx + cy) for any integers x,yx, y (linearity)
  • If aba \mid b and b0b \neq 0, then ab|a| \leq |b|
  • 11 divides every integer, and every integer divides 00
DefinitionPrime Numbers

An integer p>1p > 1 is called prime if its only positive divisors are 11 and pp itself. An integer n>1n > 1 that is not prime is called composite. The integer 11 is considered neither prime nor composite.

Prime numbers are the multiplicative building blocks of all integers, analogous to how atoms form molecules in chemistry. Their seemingly random distribution has fascinated mathematicians for millennia.

ExampleFirst Prime Numbers

The first ten prime numbers are: 2,3,5,7,11,13,17,19,23,292, 3, 5, 7, 11, 13, 17, 19, 23, 29.

Note that 22 is the only even prime number. Every other even number n>2n > 2 is divisible by 22, hence composite. The prime 22 is therefore unique in its parity.

DefinitionGreatest Common Divisor

Let a,bZa, b \in \mathbb{Z}, not both zero. The greatest common divisor of aa and bb, denoted gcd(a,b)\gcd(a, b) or (a,b)(a, b), is the largest positive integer that divides both aa and bb.

Two integers aa and bb are called relatively prime or coprime if gcd(a,b)=1\gcd(a, b) = 1.

The Euclidean algorithm provides an efficient method for computing the greatest common divisor, reducing the problem to successively smaller pairs of integers through repeated division with remainder.