Intuition The one core idea
Every whole number is built by multiplying smaller whole numbers together, and the HCF asks: what is the biggest single number hiding inside BOTH of two numbers at once? Everything on the parent page — prime factors, the "min exponent" rule, Euclid's swapping trick — is just two different ways to hunt down that shared building block.
This page assumes you have seen nothing . We will define every symbol the parent note throws at you, anchor each to a picture, and say why the topic can't live without it . Read top to bottom — each idea leans on the one above it.
Definition Natural numbers and integers
A natural number is a counting number: 1 , 2 , 3 , 4 , … — think of pebbles in a row.
An integer adds zero and the negatives: … , − 2 , − 1 , 0 , 1 , 2 , … — a number line stretching both ways.
We write n for "some number we haven't fixed yet" — a placeholder, like a labelled box you can drop any number into.
Look at the figure: the row of dots IS the number. When we later say "12 ", picture twelve dots. This matters because HCF is about splitting rows of dots into equal groups — you can only understand "divides evenly" if you can see the dots.
⋅
a ⋅ b means "a groups, each holding b things" — the same as a × b . We use the raised dot ⋅ so it never gets confused with the letter x .
Picture: a rectangle of dots, a rows and b columns. Its area (total dots) is the product.
The rectangle picture is the secret hero of this whole chapter. A number that can be drawn as a non-trivial rectangle (more than one row AND more than one column) is made of smaller pieces . That is exactly what "divides" will mean next.
d divides n , written d ∣ n
It means you can lay n dots into complete rows of d with none left over . Formally: n = d ⋅ k for some whole number k (the number of rows).
The vertical bar ∣ is read "divides". Do not confuse it with a fraction line — 6 ∣ 12 is a true/false statement , while 12 6 is a number .
Intuition Why the topic needs "divides"
HCF is defined as the biggest number that divides both . If you can't picture "d fits into n perfectly, remainder zero", you can't picture HCF at all. In the figure, 4 ∣ 12 is true (three tidy rows), but 5 ∣ 12 is false — there's a leftover dot, and that leftover is the remainder .
Definition Division with remainder
When d does not divide n cleanly, we still fill as many complete rows as possible:
n = d ⋅ q + r , 0 ≤ r < d .
Here q (the quotient ) is how many full rows fit, and r (the remainder ) is the leftover dots — always smaller than d , because if it were ≥ d you could make one more row.
17 = 5 ⋅ 3 + 2
Fill rows of 5 : you get 3 full rows (q = 3 ) using 15 dots, and 2 dots left over (r = 2 ). Check: 5 ⋅ 3 + 2 = 17 . ✅
"d ∣ n " is just the special case where r = 0 .
Why the topic needs this: Euclid's whole algorithm is built on the line a = b q + r . Every step of the parent's table is one use of this equation.
A prime is a natural number bigger than 1 whose only rectangle is the boring 1 × n strip — it cannot be drawn as a fatter rectangle. Examples: 2 , 3 , 5 , 7 , 11 , …
A composite number (like 12 ) can be drawn as a fatter rectangle, so it splits into smaller factors.
Intuition Why primes are the "atoms"
Every whole number is a product of primes and nothing smaller — primes are the un-splittable building blocks. This is the promise of the Fundamental Theorem of Arithmetic : the factorization is unique . Method 1 of the parent note lines up these atoms and keeps only the shared ones. See Prime Numbers & Factorization for the hunting techniques.
Definition Exponent notation
p α means "multiply p by itself α times": 2 3 = 2 ⋅ 2 ⋅ 2 = 8 .
Here p is the base (which prime) and α (Greek letter alpha , just a name for a number) is the exponent (how many copies).
Picture: a tower of that prime, α blocks tall.
p 0 = 1
Zero copies of a prime multiplied together is defined to be 1 . Picture: an empty tower contributes nothing, and multiplying by 1 changes nothing.
Why the topic needs this: the parent writes 360 = 2 3 ⋅ 3 2 ⋅ 5 1 . Without exponents you'd write 2 ⋅ 2 ⋅ 2 ⋅ 3 ⋅ 3 ⋅ 5 — clumsy. And p 0 lets us pretend both numbers use the same list of primes (a missing prime just gets exponent 0 ), which is what makes the "line up the primes" step work.
∏ i — "multiply them all together"
The big Greek ∏ (capital pi ) is a loop that multiplies . ∏ i p i α i means: take prime number 1 to its power, times prime number 2 to its power, and so on for every prime in the list.
The little i is a counter — "for each prime, indexed by i ". Think of ∏ as the multiplication cousin of a shopping-list total.
∏ in plain words
∏ i p i α i with primes 2 , 3 , 5 and exponents 3 , 2 , 1 just means 2 3 ⋅ 3 2 ⋅ 5 1 = 8 ⋅ 9 ⋅ 5 = 360 .
Why the topic needs it: it's the compact way to write "the product of shared primes to their minimum exponents". Nothing scary — it's a for-each-prime, multiply instruction.
min and max
min ( α , β ) = the smaller of the two numbers. max ( α , β ) = the larger .
(β is beta , another Greek name-for-a-number.) Picture: two towers side by side — min points at the shorter one, max at the taller.
min
A shared building block can only be as tall as the shorter of the two prime-towers — because it must fit inside both numbers. Take one block more and it no longer divides the shorter one. So HCF grabs the shortest tower of every shared prime: min . Its mirror twin, LCM — Least Common Multiple , grabs the tallest: max .
g cd( a , b ) and its aliases
g cd( a , b ) = Greatest Common Divisor of a and b = the biggest number dividing both. HCF (Highest Common Factor) is the exact same thing — two names, one idea.
Convention: g cd( a , 0 ) = a , because everything divides 0 (you need zero rows, remainder 0 ), so the biggest divisor of a still wins.
If g cd( a , b ) = 1 the numbers share no prime atoms — they are called coprime (or relatively prime). Picture: two towers with no floor in common.
These feed directly into Reducing Fractions to Lowest Terms (divide top and bottom by their g cd ) and Modular Arithmetic & RSA (which needs coprime numbers).
■
A small filled square at the end of an argument means "done — proven ". It's punctuation, not maths. When you see it in the parent note, the reasoning above it is complete.
Whole numbers as dot rows
Divides d mid n, remainder 0
Multiplication as rectangles
Remainder r and quotient q
HCF by prime factorization
Euclidean algorithm a = bq + r
Read it as: dots and rectangles let you define "divides"; "divides" plus leftovers gives remainder — the fuel for Euclid. Rectangles also give primes; primes plus exponents plus min give Method 1. Both roads arrive at g cd .
Test yourself — cover the right side and answer before revealing.
What does d ∣ n mean, in dots? n dots split into complete rows of d with zero left over; i.e. n = d ⋅ k .
In n = d q + r , what are q and r , and what range must r live in? q = full rows that fit, r = leftover dots, with 0 ≤ r < d .
What makes a number prime , as a rectangle? Its only rectangle is the 1 × n strip — it can't be drawn fatter.
What does 2 3 mean and equal? 2 ⋅ 2 ⋅ 2 = 8 — three copies of the prime 2 multiplied.
What is p 0 and why? 1 — zero copies multiplied leaves the product unchanged.
What does ∏ i p i α i instruct you to do? For each prime in the list, raise it to its exponent, then multiply them all together.
Does HCF use min or max of the exponents, and why? min — a shared block can be no taller than the shorter tower, so it must fit both.
What does g cd( a , 0 ) equal and why? a — everything divides 0 , so a 's biggest divisor still wins.
Two numbers with g cd= 1 are called? Coprime (relatively prime) — no shared prime atoms.