1.1.9 · D5Arithmetic & Number Systems
Question bank — Prime factorization — factor trees, ladder method
Before we start, here is every word and symbol this page leans on. Each is spelled out in plain words and anchored to a picture, so nothing is used before it is earned.



True or false — justify
TF1. " is the smallest prime number."
False — a prime needs exactly two distinct divisors; has only one ( itself), so it is a unit (a number dividing everything), not a prime. The smallest prime is . See Fundamental Theorem of Arithmetic.
TF2. " is the only even prime."
True — any other even number has as a divisor besides and itself, giving it three-plus divisors, so it can't be prime. is even yet still has only .
TF3. "Every number greater than is either prime or a product of primes."
True — that's exactly the existence half of FTA. If it isn't prime it splits into smaller factors, and repeating drives everything down to prime atoms.
TF4. "Two different factor trees for can give genuinely different prime factorizations."
False — the shape of the tree differs, but the multiset of leaves is always . Uniqueness (FTA) forbids two different bags.
TF5. "If a number is odd, it has no factor of , so the ladder should skip straight to ."
True — odd means not divisible by , so trying (dividing out the smallest prime) wastes a step. But you must still test in order, not guess.
TF6. "A number and its prime factorization always have the same number of divisors."
True — they are the same number written two ways; a rewrite can't change , the count of its divisors. The factored form just makes the count easy: Number of Divisors.
TF7. " for a prime always has exactly divisors."
True — divisors are , i.e. choices of exponent from to . This holds for every prime, e.g. has divisors .
TF8. "Multiplying two primes always gives a number with exactly divisors."
True when the primes are distinct ( gives ). If they're equal you get with only divisors, so the word "distinct" matters.
TF9. "The factorization is wrong because it isn't written with exponents."
False — it's fully correct, just uncompressed. Exponent form is only preferred because divisor, HCF and LCM formulas read exponents directly.
Spot the error
SE1. " divides , so is a prime factorization."
Error: is a unit, not prime, so it can't be a factor in a prime factorization. Allowing it would destroy uniqueness ().
SE2. "Ladder for : I divided by then by — quick!"
Error: ladder rungs must be primes (you divide out the smallest prime that fits). and are composite, so you get composite pieces, not atoms. Splitting by is legal only in a tree, where you split the again.
SE3. " is odd, and I can't halve it, so must be prime."
Error: odd prime. Test the next primes — . Stopping at "can't divide by " is the classic stop-too-early trap.
SE4. " isn't even and isn't a multiple of or , so is prime."
Error: you stopped before testing . Since , keep going: . Only stop trialling once the prime squared exceeds the number.
SE5. " because and , … so exponents and ."
Error: the writer kept 's base but dropped its exponent. , so . Always carry both exponents from every branch.
SE6. ", and is a factor, so 's primes are and ."
Error: is not prime. Break it: , so . Never leave a composite on the leaf pile.
SE7. "For HCF (Highest Common Factor) I took the max exponent of each prime because it should be big."
Error: the HCF must divide both numbers, so it can't use more of a prime than the poorer number owns — that's the min exponent. Max exponents give the LCM (Lowest Common Multiple). See HCF and LCM.
SE8. " (the divisor count of ): since , divisors ."
Error: the formula adds to each exponent (a prime can appear up to times). So , matching .
Why questions
WY1. Why does dividing by the smallest prime each time (the ladder rule) still land on the correct factorization?
Because FTA guarantees the final bag of primes is fixed; the order you extract them can't change the multiset, so "smallest first" is just a safe, no-guess route.
WY2. Why do we stop trial-dividing once the trial prime's square exceeds the remaining number?
If the leftover had a prime factor with leftover, then leftover , but that smaller factor would itself have a prime you'd already tested. So the leftover must itself be prime. See the Sieve of Eratosthenes for the same logic.
WY3. Why must (a unit) be excluded from the primes for FTA's uniqueness to survive?
Because you could sprinkle any number of 's into a product without changing its value, giving infinitely many "factorizations." Excluding units pins the representation to exactly one.
WY4. Why does the divisor count multiply the terms instead of adding them?
Each prime's exponent is chosen independently from to . Independent choices multiply (like outfits from shirts × trousers), so the counts combine by product, not sum.
WY5. Why can HCF (Highest Common Factor) LCM (Lowest Common Multiple) equal the product of the two numbers?
For each prime, . Summing exponents corresponds to multiplying, so combining HCF and LCM rebuilds exactly . See HCF and LCM.
WY6. Why does a prime factorization instantly tell you if a fraction is already in lowest terms?
Lowest terms means numerator and denominator share no prime; if their bags of primes are disjoint, their HCF and nothing cancels. See Simplifying Fractions.
WY7. Why is the ladder method "safer under exam pressure" than the tree?
The ladder removes all choice — you always divide out the next smallest prime — so there's no risk of a lucky-but-wrong split or a lost branch. The tree's freedom is also its trap.
Edge cases
EC1. What is the prime factorization of a prime itself, say ?
Just — a prime is a product of one prime (itself). Its bag is ; the ladder ends immediately with dividing , then quotient .
EC2. Does have a prime factorization?
No — FTA only speaks about integers . is divisible by every prime, so no finite bag of primes multiplies to it; it's outside the theorem.
EC3. Does have a prime factorization?
Yes, the empty product — a bag with no primes, whose product is defined as . That's why (only divisor is itself) and is a unit, neither prime nor composite.
EC4. How many divisors does a prime have, and why is that the boundary case of the formula?
Exactly : gives , namely and . This is the smallest possible divisor count above — the very definition of prime.
EC5. If two numbers share no prime factors, what are their HCF and LCM?
Their HCF (Highest Common Factor) (empty overlap, min for every prime), and their LCM (Lowest Common Multiple) their product (take max, i.e. keep every prime from both). Such numbers are called coprime. See HCF and LCM.
EC6. Is ever "part" of a factorization?
Only implicitly — a prime absent from a number has exponent , and contributes nothing. We simply omit it, e.g. is why doesn't appear in .
EC7. Can a perfect square have an odd number of divisors, and what's special about it?
Yes — perfect squares are exactly the numbers with an odd , because every exponent is even, so each is odd and their product is odd. Non-squares always have divisors in pairs, hence even counts.
EC8. How do we prime-factorize a negative integer like ?
Pull out the unit first: . The unit carries the sign and is not a prime; the prime bag is identical to that of . FTA extends to integers "up to units," which is exactly the role play.
Recall One-line summary of the traps
Never let , , or a composite sneak into a prime bag; the unit only carries a sign, never a factor; stop the ladder only at quotient or once the trial prime squared passes the leftover; add to exponents for , take min for HCF and max for LCM. Every "different" factorization is the same multiset by FTA.