Divisibility
Divisibility
One relation underneath every later notion
Primes, the gcd, factorization, and the Euclidean algorithm are all stated in terms of a single relation: “$a$ divides $b$.” Before any of them can be built, this relation and its arithmetic must be fixed rigorously, because every later proof spends one of the properties below. This note establishes the relation and the small set of facts used throughout the unit.
Dependency map
graph TD
Z["Integers Z:<br/>closed under +, -, *"]
Z --> DEF["The divides relation:<br/>a | b iff b = ak"]
DEF --> BASIC["Basic properties:<br/>reflexive, transitive,<br/>antisymmetric on positives"]
DEF --> SIZE["Divisor size bound:<br/>a | b, b != 0 implies |a| <= |b|"]
DEF --> LIN["Linearity:<br/>d | x, d | y implies d | (mx + ny)"]
BASIC --> ORD["Divides is a partial order<br/>on the positive integers"]
LIN --> USE["Feeds: FTA, Euclidean algorithm,<br/>gcd properties"]The divides relation
Concrete first. $3 \mid 12$ because $12 = 3 \cdot 4$, so the multiplier $k = 4$ exists. $5 \nmid 12$ because no integer $k$ gives $12 = 5k$.
Type: $a, b, k \in \mathbb{Z}$.
Why-this-form: the definition uses only multiplication of integers, with no reference to fractions. “Divides evenly” is exactly the existence of a whole-number multiplier $k$.
Convention: these three cases are stated separately on concrete values so no general rule silently mishandles them.
Basic properties
Proof.
Definition:(i) holds since $a = a \cdot 1$.Algebra:(ii) from $b = ak$ and $c = b\ell$ gives $c = a(k\ell)$ with $k\ell \in \mathbb{Z}$, so $a \mid c$. Concrete: $2 \mid 6$ and $6 \mid 30$, and indeed $2 \mid 30$.Theorem:(iii) from $b = ak$ and $a = b\ell$ gives $a = a k \ell$, so $k\ell = 1$ by cancellation; with $a, b > 0$ the multipliers are positive, so $k = \ell = 1$ and $a = b$.
The divisor size bound
Concrete first. $4 \mid 12$ and $|4| \le |12|$. A positive divisor cannot exceed the number it divides, unless the number is $0$.
Proof.
Algebra:$b = ak$ with $b \neq 0$ forces $k \neq 0$, so $|k| \ge 1$; then $|b| = |a|,|k| \ge |a|$.
Type: this bound is what makes the set of positive divisors of a nonzero integer finite, which is why $\gcd(a,b)$ (a largest divisor) exists at all.
Linearity
This is the property used most often in the unit, so it is stated on its own and anchored on numbers.
Concrete first. $3 \mid 12$ and $3 \mid 6$, so $3 \mid (12 - 6) = 6$ and $3 \mid (12 + 6) = 18$. A common divisor of two numbers divides their sum and their difference.
Proof.
Algebra:from $x = ds$ and $y = dt$, $mx + ny = d(ms + nt)$ with $ms + nt \in \mathbb{Z}$, so $d \mid (mx + ny)$.
Type: the special cases $m = n = 1$ (the sum) and $m = 1, n = -1$ (the difference) are the ones spent in the remainder-swap lemma of The Euclidean Algorithm and the GCD and in the uniqueness proof of Fundamental Theorem of Arithmetic.
Divisibility as a partial order
POV: on the positive integers, the divides relation is a partial order, because it is reflexive, antisymmetric, and transitive by the properties above. The number $1$ sits at the bottom, dividing everything. The primes sit directly above $1$, because a prime’s only positive divisors are $1$ and itself, so nothing lies strictly between $1$ and a prime. This ordering is the structural picture behind prime factorization: every positive integer is reached from the atoms just above $1$.
Summary
For: divisibility is the one relation every later topic is written in; this note fixes its definition and the handful of properties that later proofs spend.
Assumes: only the integers and their closure under addition, subtraction, and multiplication. No well-ordering is needed here; it enters later, in The Division Algorithm.
Produces: the definition $a \mid b \iff b = ak$; the edge cases for $0$ and $1$; reflexivity, transitivity, antisymmetry; the divisor size bound (which makes the gcd exist); and linearity, the workhorse of the unit.
Pattern-match: reach for linearity whenever two quantities share a common divisor and a third is built from them by addition or subtraction; reach for the size bound whenever a largest divisor must be shown to exist; and read the divides relation as a partial order whenever the structure of factorization is in view.