Logo

MonoCalc

/

Divisors Calculator

Math
Any whole number from 1 up to 1,000,000,000,000.

Try:

Divisor-sum classification of 36

36 is an Abundant Number

Abundant NumberProper sum = 55

Total divisors

9

Proper divisors

8

Proper divisor sum

55

Factor pairs

5

Prime factorization

36 = 2² × 3²

All divisors (9)

1
2
3
4
6
9
12
18
36

Factor pairs

PairProduct
1 × 3636
2 × 1836
3 × 1236
4 × 936
6 × 636

About This Tool

Divisors Calculator – Find Every Factor of a Number

A divisor (also called a factor) of an integer n is any positive whole number that divides n with no remainder. This calculator lists every divisor of a number instantly, groups them into factor pairs, sums the proper divisors, and classifies the number as perfect, abundant, or deficient. It also finds the common divisors shared between two numbers, making it useful for students, teachers, and anyone exploring number theory.

All Divisors vs. Proper Divisors

The full divisor list of a number includes the number itself. For example, the divisors of 36 are 1, 2, 3, 4, 6, 9, 12, 18, 36 — nine divisors in total. The proper divisors exclude the number itself, leaving 1, 2, 3, 4, 6, 9, 12, 18. This distinction matters most when computing the sum used for the perfect/abundant/deficient classification below.

How Factor Pairs Work

Every divisor i of n has a matching cofactor n / i such that i × (n / i) = n. Grouping divisors this way produces factor pairs like (1, 36), (2, 18), (3, 12), (4, 9), (6, 6) for 36. Notice that when a number is a perfect square, the middle pair repeats the same value — 6 × 6 — since the square root divides evenly into itself.

Perfect, Abundant, and Deficient Numbers

Comparing a number to the sum of its proper divisors reveals a classic number-theory classification. If the sum equals the number, it is a perfect number 28 is perfect because 1 + 2 + 4 + 7 + 14 = 28. If the sum exceeds the number, it is abundant12 is abundant because its proper divisors add up to 16. If the sum falls short, the number is deficient — every prime number is deficient since its only proper divisor is 1.

Finding Common Divisors of Two Numbers

The common divisors shared by two integers are exactly the divisors of their Greatest Common Divisor (GCD). For 24 and 36, the GCD is 12, so the common divisors are the divisors of 12: 1, 2, 3, 4, 6, 12. This calculator computes the GCD with the Euclidean algorithm first, then lists every divisor of that result.

The Trial Division Algorithm

Finding divisors by checking every integer from 1 to n would be slow for large numbers. Instead, this tool only tests integers up to √n. Whenever a value i divides n evenly, both i and its cofactor n / i are recorded as divisors — cutting the work from O(n) to roughly O(√n) steps. The prime factorization shown alongside the results uses the same principle to break the number into its prime building blocks.

Why divisor counts vary so much
Highly composite numbers like 720 or 831,600 have far more divisors than nearby values because they pack in many small prime factors raised to higher powers. A prime number, by contrast, has exactly two divisors: 1 and itself.

Practical Uses

Beyond classroom number theory, divisor enumeration comes up when simplifying fractions, finding common denominators, scheduling repeating events, arranging items into equal rows and columns, and verifying divisor-related logic in programming assignments. The factor pairs are especially handy for factoring quadratic expressions and mental arithmetic.

Frequently Asked Questions

Is the Divisors Calculator free?

Yes, Divisors Calculator is totally free :)

Can I use the Divisors Calculator offline?

Yes, you can install the webapp as PWA.

Is it safe to use Divisors Calculator?

Yes, any data related to Divisors Calculator only stored in your browser (if storage required). You can simply clear browser cache to clear all the stored data. We do not store any data on server.

How does this Divisors Calculator work?

Enter a positive integer and the tool finds every number that divides it evenly using trial division up to its square root — whenever i divides n, both i and n/i are recorded as divisors. The results include the full divisor list, factor pairs, the sum of proper divisors, and a perfect/abundant/deficient classification.

What is the difference between a divisor and a proper divisor?

A divisor of n is any positive integer that divides n with no remainder, including n itself. A proper divisor is any divisor except n itself. For example, 12 has divisors 1, 2, 3, 4, 6, 12, but only 1, 2, 3, 4, 6 are proper divisors.

What do perfect, abundant, and deficient mean?

These classifications compare a number to the sum of its proper divisors. If the sum equals the number, it's perfect (e.g., 28 = 1+2+4+7+14). If the sum exceeds the number, it's abundant (e.g., 12). If the sum is less than the number, it's deficient (e.g., 8 or any prime).

How are common divisors of two numbers calculated?

Common divisors of two numbers are exactly the divisors of their Greatest Common Divisor (GCD). The tool first computes the GCD using the Euclidean algorithm, then lists every divisor of that GCD — these are the numbers that divide both original values evenly.

What is the largest number this calculator can handle?

Input is capped at 10^12 (one trillion) to keep trial division responsive in the browser. Values near that ceiling may take a brief moment to compute since the algorithm checks roughly up to the square root of the number, about a million steps.

Why might my number show more divisors than expected?

Highly composite numbers (like 720 or 831600) pack in far more divisors than nearby values because they're built from many small prime factors raised to higher powers. The prime factorization shown alongside the divisor list explains exactly why the count is what it is.