Chapter 3 looked inside numbers for factors and ended with a master key, the prime fingerprint. Factors set the stage, divisibility tests gave quick eyes, primes were atoms, and GCD, LCM, and divisor counts all followed.
Key idea Factors and multiples are the same relationship stated two ways. A factor of n n is a side of a rectangle of area n n , so factors come in pairs that multiply to n n , d d with its partner n ÷ d n ÷ d . Read it the other way and the small number is a factor while the large one is a multiple. Several facts follow. A number has finitely many factors but infinitely many multiples, 1 1 divides everything, every number is both a factor and a multiple of itself, and 0 0 is a multiple of every number. A number has an odd factor count exactly when it is a perfect square, the one case where a factor pairs with itself.
Key idea Closure and chaining. Add or subtract two multiples of n n and the result is a multiple of n n again, since the shared n n factors out, so adding a non-multiple to a multiple never gives a multiple. That is closure . If a a is a factor of b b , then every multiple of b b is also a multiple of a a , since that multiple has b b as a factor and b b has a a as a factor. That is chaining , and it works only toward the smaller factor. Every divisibility test in this chapter uses these two ideas.
With that structure in hand, the next question was practical. Must you divide a big number out the long way to know whether some small number goes into it, or can you glance at the digits and simply know? Place value gave the answer.
Key idea Divisibility tests come from place value. Split a number so that one part is a multiple of the divisor, drop that part by closure, and test the small part left behind. The last digit determines 2 2 , 5 5 , 10 10 , since every higher place is a multiple of ten. The last two digits determine 4 4 and the last three determine 8 8 , since 100 = 4 × 25 100 = 4 × 25 and 1000 = 8 × 125 1000 = 8 × 125 . The digit sum determines 9 9 and 3 3 , since every power of ten is one above a run of nines. The alternating digit sum determines 11 11 , since each power of ten is one below or one above a multiple of 11. Run any test backward and the same split recovers a missing digit.
Key idea Combine tests only along coprime factors. Split a composite divisor into coprime parts and test each. A split like 12 = 2 × 6 12 = 2 × 6 fails because 2 and 6 share the factor 2, so passing both tests guarantees only one factor of 2, not the two that 12 needs.
Testing for small factors leads to the numbers that have no smaller factors at all, the primes.
Key idea A prime has exactly two divisors. A composite has more, 1 is neither, and 2 is the only even prime. To test primality, divide by the primes up to
n n and stop there. Any factor above
n n has a smaller partner you already checked.
Key idea Every number has exactly one prime factorization (Fundamental Theorem of Arithmetic). Written with exponents like 360 = 2 3 × 3 2 × 5 360 = 2 3 × 3 2 × 5 , it gives perfect square ↔ all exponents even, perfect cube ↔ all multiples of 3, trailing zeros = count of 2-and-5 pairs. Primes never run out.
Once one number is broken into primes, two numbers can be compared prime by prime.
Key idea Read the GCD and LCM off the two factorizations. GCD takes each shared prime to its lower power. LCM takes every prime to its higher power. They satisfy gcd × lcm = a × b g cd× lcm = a × b . Numbers sharing no prime are coprime, and common multiples of a pair are multiples of their lcm.
Key idea The factorization gives the divisor count. For n = p a q b ⋯ n = p a q b ⋯ , it is ( a + 1 ) ( b + 1 ) ⋯ ( a + 1 ) ( b + 1 ) ⋯ . Only exponents matter, not size, so a smaller number can have more divisors than a larger one. The count is odd exactly for perfect squares.
Prime factorization settled divisibility, perfect powers, GCD, LCM, and divisor counts in this chapter. Chapter 4 turns to fractions, where GCD reduces a fraction and LCM gives a common denominator.
Learn it by doing it Reading is a start. In the course you solve each problem yourself, with instant feedback, layered hints, and Milo right beside you when you get stuck.
Open this lesson in the course →