Visual Tools
Calculators
Tables
Mathematical Keyboard
Converters
Other Tools


Factors and Multiples






The Two Sides of Divisibility

Every divisibility relationship involves two numbers playing opposite roles. When 3123 \mid 12, the number 33 is a factor — it divides in. The number 1212 is a multiple — it is divided into. Factors look downward, toward the smaller numbers that build a given integer. Multiples look upward, toward the infinite sequence of numbers that a given integer builds. Together they form the structural vocabulary of divisibility.



Factors (Divisors)

A factor of nn is any integer aa such that ana \mid n — meaning n=akn = a \cdot k for some integer kk. The terms "factor" and "divisor" are interchangeable.

Every positive integer has at least two factors: 11 and itself. The number 11 divides everything, and every number divides itself. Most numbers have additional factors between these two extremes.

The factors of 2424 are 1,2,3,4,6,8,12,241, 2, 3, 4, 6, 8, 12, 24 — eight in total. The factors of 1313 are just 11 and 1313 — making it prime.

Unlike multiples, which extend infinitely, the factor set of any positive integer is finite. No factor of nn can exceed nn itself (in absolute value), so the search space is bounded from the start.

Finding All Factors

A systematic search tests each integer from 11 up to n\sqrt{n}. If aa divides nn, both aa and na\frac{n}{a} are factors — a pair produced from a single test. Stopping at n\sqrt{n} is sufficient because if a>na > \sqrt{n}, then na<n\frac{n}{a} < \sqrt{n}, and that smaller partner would already have been found.

For n=36n = 36, test integers from 11 to 66 (since 36=6\sqrt{36} = 6):

1361 \mid 36: pair (1,36)(1, 36). 2362 \mid 36: pair (2,18)(2, 18). 3363 \mid 36: pair (3,12)(3, 12). 4364 \mid 36: pair (4,9)(4, 9). 5365 \nmid 36: skip. 6366 \mid 36: pair (6,6)(6, 6).

The complete factor set is {1,2,3,4,6,9,12,18,36}\{1, 2, 3, 4, 6, 9, 12, 18, 36\} — nine factors, all discovered by testing only six candidates.

For large numbers, divisibility rules speed up the testing. Checking whether 22, 33, or 55 divide nn takes a glance at the digits, not a full division.

Factor Pairs

Every factor aa of nn has a partner: na\frac{n}{a}. Together they satisfy ana=na \cdot \frac{n}{a} = n, and listing factor pairs ensures no divisor is overlooked.

For n=24n = 24, the pairs are: (1,24)(1, 24), (2,12)(2, 12), (3,8)(3, 8), (4,6)(4, 6). Each pair multiplies to 2424, and together they account for all eight factors.

For perfect squares, one pair collapses into a repeated value. The number 3636 has the pair (6,6)(6, 6) — the square root paired with itself. This is why perfect squares have an odd number of factors: every other factor appears in a pair of two distinct values, but the square root stands alone.

Organizing factors into pairs is more reliable than listing them individually. Starting from (1,n)(1, n) and working inward, each successful division test produces two factors at once — halving the work and providing a built-in completeness check.

Proper Divisors

The proper divisors of nn are all of its factors except nn itself. They are the numbers that divide nn without being equal to it.

The proper divisors of 1212 are {1,2,3,4,6}\{1, 2, 3, 4, 6\}. The number 1212 itself is excluded.

Proper divisors define three classical categories. A number is perfect if the sum of its proper divisors equals the number: 6=1+2+36 = 1 + 2 + 3, so 66 is perfect. A number is abundant if the sum exceeds it: the proper divisors of 1212 sum to 1+2+3+4+6=16>121 + 2 + 3 + 4 + 6 = 16 > 12. A number is deficient if the sum falls short: the proper divisors of 1010 sum to 1+2+5=8<101 + 2 + 5 = 8 < 10.

Perfect numbers are rare. The first four are 6,28,4966, 28, 496, and 8,1288{,}128. Every known perfect number is even, and whether an odd perfect number exists remains one of the oldest unsolved problems in mathematics.

Multiples

A multiple of aa is any number bb such that aba \mid b — meaning b=akb = a \cdot k for some positive integer kk. Where factors divide into a number, multiples are produced by multiplying out from it.

The multiples of 77 are 7,14,21,28,35,42,7, 14, 21, 28, 35, 42, \ldots — an infinite sequence with no largest member. Every positive integer generates infinitely many multiples.

Zero is a multiple of every number, since 0=a00 = a \cdot 0 for any aa. It sits at the start of every multiple sequence, though it is often omitted when listing "the multiples of aa" in contexts where only positive values are relevant.

The modulo operation identifies which multiple of nn is closest to a given number aa without exceeding it: a=nq+ra = n \cdot q + r, where nqn \cdot q is that nearest multiple and rr is the gap between it and aa.

Factors vs Multiples

The two concepts are inverses of each other, and mixing them up is one of the most common errors in elementary number theory.

Factors go downward. The factors of 2424 are 1,2,3,4,6,8,12,241, 2, 3, 4, 6, 8, 12, 24 — all less than or equal to 2424. There are finitely many of them.

Multiples go upward. The multiples of 2424 are 24,48,72,96,24, 48, 72, 96, \ldots — all greater than or equal to 2424 (excluding zero). There are infinitely many.

The relationship is symmetric: aa is a factor of bb if and only if bb is a multiple of aa. The number 33 is a factor of 1212, and 1212 is a multiple of 33. Same fact, opposite viewpoints.

A useful mnemonic: factors fit into a number (they are smaller), multiples multiply out from a number (they are larger). The factor set is contained; the multiple set is unbounded.

Common Factors

A common factor of two numbers mm and nn is a number that divides both. Finding common factors means intersecting the two factor sets.

The factors of 1212 are {1,2,3,4,6,12}\{1, 2, 3, 4, 6, 12\}. The factors of 1818 are {1,2,3,6,9,18}\{1, 2, 3, 6, 9, 18\}. The common factors — numbers appearing in both sets — are {1,2,3,6}\{1, 2, 3, 6\}.

Every pair of positive integers shares at least one common factor: 11 divides both, always. The question is whether they share anything larger.

The greatest common factor is the largest member of the common factor set. For 1212 and 1818, it is 66. This value — the GCD — plays a central role in simplifying fractions, solving equations, and determining whether two numbers are coprime.

Common Multiples

A common multiple of two numbers mm and nn is a number divisible by both. Where common factors are drawn from finite sets, common multiples form an infinite sequence.

The multiples of 44 are 4,8,12,16,20,24,28,32,36,4, 8, 12, 16, 20, 24, 28, 32, 36, \ldots The multiples of 66 are 6,12,18,24,30,36,6, 12, 18, 24, 30, 36, \ldots The common multiples are 12,24,36,48,12, 24, 36, 48, \ldots — every value that appears in both lists.

The smallest positive common multiple is the LCM. For 44 and 66, it is 1212. Every other common multiple is a multiple of the LCM: 24=21224 = 2 \cdot 12, 36=31236 = 3 \cdot 12, and so on.

Common multiples arise naturally in problems involving synchronization. If one event repeats every 44 days and another every 66 days, they coincide every 1212 days — the LCM of their periods.

Counting Factors

For small numbers, counting factors by listing them is practical. For larger numbers, prime factorization provides a formula.

If n=p1a1p2a2pkakn = p_1^{a_1} \cdot p_2^{a_2} \cdots p_k^{a_k}, the number of positive divisors of nn is:

(a1+1)(a2+1)(ak+1)(a_1 + 1)(a_2 + 1) \cdots (a_k + 1)


Each prime factor pip_i can appear in a divisor 0,1,2,,ai0, 1, 2, \ldots, a_i times — that is ai+1a_i + 1 independent choices. The total number of divisors is the product of all these choices.

The number 72=233272 = 2^3 \cdot 3^2 has (3+1)(2+1)=12(3+1)(2+1) = 12 factors. Listing them confirms: 1,2,3,4,6,8,9,12,18,24,36,721, 2, 3, 4, 6, 8, 9, 12, 18, 24, 36, 72 — exactly twelve.

The number 100=2252100 = 2^2 \cdot 5^2 has (2+1)(2+1)=9(2+1)(2+1) = 9 factors.

The formula reveals structure that raw listing obscures. A number with many small prime factors has more divisors than a number of similar size with fewer, larger prime factors. The number 60=223560 = 2^2 \cdot 3 \cdot 5 has 1212 factors, while 64=2664 = 2^6 has only 77.

Sum of Factors

The sum of all positive divisors of nn is denoted σ(n)\sigma(n). Like the divisor count, it can be computed directly from the prime factorization.

For n=12n = 12: the divisors are 1,2,3,4,6,121, 2, 3, 4, 6, 12, and σ(12)=1+2+3+4+6+12=28\sigma(12) = 1 + 2 + 3 + 4 + 6 + 12 = 28.

For n=6n = 6: the divisors are 1,2,3,61, 2, 3, 6, and σ(6)=1+2+3+6=12\sigma(6) = 1 + 2 + 3 + 6 = 12. The sum of all divisors is twice the number — but more revealing is that the sum of the proper divisors is 1+2+3=61 + 2 + 3 = 6, equal to nn itself. This makes 66 a perfect number.

The relationship between σ(n)\sigma(n) and nn classifies every positive integer. When σ(n)n=n\sigma(n) - n = n, the number is perfect. When σ(n)n>n\sigma(n) - n > n, it is abundant. When σ(n)n<n\sigma(n) - n < n, it is deficient. Most numbers are deficient; abundance and perfection are the exceptions.

Worked Examples

Find all factors of 4848. Test from 11 to 486.9\sqrt{48} \approx 6.9: 1481 \mid 48 (pair 1,481, 48), 2482 \mid 48 (pair 2,242, 24), 3483 \mid 48 (pair 3,163, 16), 4484 \mid 48 (pair 4,124, 12), 5485 \nmid 48, 6486 \mid 48 (pair 6,86, 8). Factors: {1,2,3,4,6,8,12,16,24,48}\{1, 2, 3, 4, 6, 8, 12, 16, 24, 48\} — ten in total.

List the first 88 multiples of 99: 9,18,27,36,45,54,63,729, 18, 27, 36, 45, 54, 63, 72.

Find the common factors of 3030 and 4545. Factors of 3030: {1,2,3,5,6,10,15,30}\{1, 2, 3, 5, 6, 10, 15, 30\}. Factors of 4545: {1,3,5,9,15,45}\{1, 3, 5, 9, 15, 45\}. Common: {1,3,5,15}\{1, 3, 5, 15\}. The GCD is 1515.

Count the factors of 180=22325180 = 2^2 \cdot 3^2 \cdot 5. Formula: (2+1)(2+1)(1+1)=18(2+1)(2+1)(1+1) = 18 factors.

Is 2828 perfect? Proper divisors: 1,2,4,7,141, 2, 4, 7, 14. Sum: 1+2+4+7+14=281 + 2 + 4 + 7 + 14 = 28. Yes — 2828 is the second perfect number.

Is 2020 abundant or deficient? Proper divisors: 1,2,4,5,101, 2, 4, 5, 10. Sum: 22>2022 > 20. Abundant.