Before you can read a single line of the parent note, you need to own every symbol it throws at you. This page builds them one at a time, in an order where each new piece leans only on pieces already standing. Nothing is assumed — not even what a remainder is.
The picture: a straight line with evenly spaced dots, 0 in the middle, positives marching right, negatives marching left.
Why the topic needs it: modular arithmetic only talks about integers. When the parent writes a−b=kn, all of a, b, k, n are integers — points on this line. Fractions never appear (that is exactly why "division" is the dangerous operation later).
Everything in this topic rests on one everyday act: splitting a pile into equal groups and seeing what's left over.
The rule that this pair always exists and is unique is the Division Algorithm — the true foundation stone of the whole chapter.
The picture: lay a dots along the line, then chop the line into blocks of width n. The number of complete blocks is q; the short stub past the last complete block is r.
Why the topic needs it: the parent's second definition of congruence — "same remainder when divided by n" — is meaningless until you know that "the remainder" is a single, well-defined number. The Division Algorithm guarantees it.
The picture: on the number line, m lands exactly on one of the tick marks you'd hit by counting in steps of n.
Why the topic needs it: the first definition of congruence says a−b=kn — that is exactly "n divides a−b," or n∣(a−b). So "divides" and "same remainder" are two costumes on the same idea, which we now have the tools to prove.
the modulus — the wrap-around size, always a positive integer
a,b,c,d
the numbers we compare or combine
q
quotient — how many whole n's fit
r
remainder — the leftover, in {0,…,n−1}
k,k1,k2
any integer multiplier (as in "a−b is k copies of n")
Why the topic needs it: every rule in the parent ("a≡b", "a−b=kn") is stated with these letters so it holds for all integers simultaneously. Reading modular arithmetic is largely reading these letters correctly.
Notice the symbol is ≡ (three bars), not= (two bars). Two things being equal means identical numbers; being congruent means only "same clock position." 23 and 8 are not equal, but 23≡8(mod5) because both point at the 3 mark.
The picture: each mark on the circle is the mouth of a bucket; all integers funnelling into that mark live inside it.
Why the topic needs it: the parent's phrase "they're in the same bucket" and the claim that congruence is an equivalence relation (reflexive, symmetric, transitive) are exactly statements about these buckets. Reflexive = every number is in its own bucket; symmetric = bucket-sharing goes both ways; transitive = if a,b share a bucket and b,c share a bucket, then a,c do too.
The picture: list the tick-spacings that hit both numbers exactly; the biggest such spacing is the gcd. (See GCD and LCM for the full machinery.)
Why the topic needs it: the parent's "can't cancel 6 in 6x≡9(mod15)" fails precisely because gcd(6,15)=3=1. Division mod n is legal only when the divisor is coprime to n — the doorway into Modular Inverses and Linear Congruences.