1.1.10 · D1Arithmetic & Number Systems

Foundations — HCF (GCD) — prime factorization method, Euclidean algorithm

1,846 words8 min readBack to topic

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.


1. What is a whole number, as a picture?

Figure — HCF (GCD) — prime factorization method, Euclidean algorithm

Look at the figure: the row of dots IS the number. When we later say "", 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.


2. The multiplication dot and the "times" idea

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.


3. "Divides" — the symbol

Figure — HCF (GCD) — prime factorization method, Euclidean algorithm

4. Remainder and quotient

Why the topic needs this: Euclid's whole algorithm is built on the line . Every step of the parent's table is one use of this equation.


5. Prime numbers — the atoms

Figure — HCF (GCD) — prime factorization method, Euclidean algorithm

6. Exponents — shorthand for repeated primes

Why the topic needs this: the parent writes . Without exponents you'd write — clumsy. And lets us pretend both numbers use the same list of primes (a missing prime just gets exponent ), which is what makes the "line up the primes" step work.


7. The product symbol

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.


8. and — smaller-of, larger-of


9. The symbol itself

These feed directly into Reducing Fractions to Lowest Terms (divide top and bottom by their ) and Modular Arithmetic & RSA (which needs coprime numbers).


10. The end-of-proof mark


How these foundations feed the topic

Whole numbers as dot rows

Divides d mid n, remainder 0

Multiplication as rectangles

Prime numbers, the atoms

Remainder r and quotient q

Exponents p to the alpha

Product symbol prod

min and max of exponents

HCF by prime factorization

Euclidean algorithm a = bq + r

gcd a,b the answer

Coprime, gcd = 1

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 .


Equipment checklist

Test yourself — cover the right side and answer before revealing.

What does mean, in dots?
dots split into complete rows of with zero left over; i.e. .
In , what are and , and what range must live in?
= full rows that fit, = leftover dots, with .
What makes a number prime, as a rectangle?
Its only rectangle is the strip — it can't be drawn fatter.
What does mean and equal?
— three copies of the prime multiplied.
What is and why?
— zero copies multiplied leaves the product unchanged.
What does instruct you to do?
For each prime in the list, raise it to its exponent, then multiply them all together.
Does HCF use or of the exponents, and why?
— a shared block can be no taller than the shorter tower, so it must fit both.
What does equal and why?
— everything divides , so 's biggest divisor still wins.
Two numbers with are called?
Coprime (relatively prime) — no shared prime atoms.

Connections