


Welcome back to Breaking Numbers Into Primes! This is our third lesson out of four, which means we are well past the halfway mark. So far, we have built a solid foundation: in lesson one, we learned what prime factorisation means and why every number greater than has a unique prime "fingerprint"; in lesson two, we put that knowledge to work by constructing factor trees that visually split numbers into primes, branch by branch. Today, we pick up a second technique — repeated division — that reaches the same set of primes through a more streamlined, column-based approach. By the end of this lesson, we will also develop some intuition for when each method shines brightest.
Factor trees are wonderful for seeing how a number breaks apart, but as numbers grow larger, those branches can sprawl across the page and become difficult to track. Repeated division offers a tidier alternative: instead of branching outward, we work straight down a single column, dividing by one small prime at a time until nothing is left to divide. Think of it like peeling layers off an onion — each division strips away one prime factor, and when the onion is fully peeled (the quotient reaches ), every layer is sitting in a neat stack beside it.
The result is always the same unique set of prime factors we would find with a factor tree — the Fundamental Theorem of Arithmetic guarantees that. The difference is only in how we get there.
The method follows a simple loop. We start with the number we want to factorise, divide it by the smallest prime that goes into it evenly, and write down the quotient. Then we take that quotient and do it all again. We keep going until the quotient reaches , which tells us every prime factor has been extracted.
The primes we used as divisors, read from first to last, give the complete prime factorisation. Because we always begin with the smallest applicable prime, the factors come out in ascending order automatically — no sorting needed at the end.

Let's factorise using repeated division. Since is even, the smallest prime that divides it is , so that is where we begin.
| Prime | Division | Quotient |
|---|---|---|
We divide by three times, bringing us from to to to . Once the quotient is odd, no longer works, so we move to the next prime, . Dividing by gives , and dividing that by gives . We stop here and read the primes from the left column:
Quick check: and , so ✓.
Now let's try , a number that would produce quite a wide factor tree. With repeated division, the layout stays compact.
| Prime | Division | Quotient |
|---|---|---|
After two divisions by , the quotient is odd, so we move to . After two divisions by , the quotient is not divisible by , so we advance to the next prime, . One final division brings us to .
Check: ✓. Five clean rows, no branches to track, and the factors appeared in ascending order without any extra effort.
A few practical points will help keep repeated divisions accurate and efficient. The divisibility rules from the previous course (Divisibility Shortcuts) are especially handy here — for instance, checking whether the last digit is even to test for , or summing the digits to test for .
With two methods in our toolkit, a natural question arises: which one should we pick? Both always work and both produce the same answer, but each has situations where it feels more natural.
| Repeated Division | Factor Trees | |
|---|---|---|
| Works best when | The number has many small prime factors (s, s, s) | We can spot a useful factor pair right away |
| Layout | Compact, single column | Visual, branching diagram |
| Starting point | Always begin with the smallest prime | Any factor pair we like |
| Strength | Removes guesswork; very systematic | Flexible; shows structure at a glance |
Consider a number like : it is loaded with small prime factors (), so repeated division lets us peel them off quickly in a tidy column. Now consider : at first glance it has no obvious small factor, but if you happen to notice that , a factor tree finishes in a single split. In practice, many problem-solvers blend both approaches — for example, spotting that , noting the prime , and then switching to repeated division to finish off . The best method is simply whichever one helps you work accurately and with confidence.
In this lesson, we added repeated division to our prime factorisation toolkit. The process is beautifully systematic: divide by the smallest applicable prime, record the quotient, and continue until the quotient is . We also compared the method side by side with factor trees, so we can now make an informed choice about which approach suits a given number best.
Time to put these skills into action! In the practice exercises that follow, you will complete a partially filled division layout, factorise numbers on your own using repeated division, tackle a larger challenge with more prime factors, and sharpen your judgement about when to reach for each method. Let's see how quickly those primes line up!