What are the divisors of 27?
1, 3, 9, 27
- There is a total of 4 positive divisors.
- The sum of these divisors is 40.
- The arithmetic mean is 10.
4 odd divisors
1, 3, 9, 27
How to compute the divisors of 27?
A number N is said to be divisible by a number M (with M non-zero) if, when we divide N by M, the remainder of the division is zero.
Brute force algorithm
We could start by using a brute-force method which would involve dividing 27 by each of the numbers from 1 to 27 to determine which ones have a remainder equal to 0.
(where is the integer part of the quotient)
- 27 / 1 = 27 (the remainder is 0, so 1 is a divisor of 27)
- 27 / 2 = 13.5 (the remainder is 1, so 2 is not a divisor of 27)
- 27 / 3 = 9 (the remainder is 0, so 3 is a divisor of 27)
- ...
- 27 / 26 = 1.0384615384615 (the remainder is 1, so 26 is not a divisor of 27)
- 27 / 27 = 1 (the remainder is 0, so 27 is a divisor of 27)
Improved algorithm using square-root
However, there is another slightly better approach that reduces the number of iterations by testing only integers less than or equal to the square root of 27 (i.e. 5.1961524227066). Indeed, if a number N has a divisor D greater than its square root, then there is necessarily a smaller divisor d such that:
(thus, if , then )
- 27 / 1 = 27 (the remainder is 0, so 1 and 27 are divisors of 27)
- 27 / 2 = 13.5 (the remainder is 1, so 2 is not a divisor of 27)
- 27 / 3 = 9 (the remainder is 0, so 3 and 9 are divisors of 27)
- ...
- 27 / 4 = 6.75 (the remainder is 3, so 4 is not a divisor of 27)
- 27 / 5 = 5.4 (the remainder is 2, so 5 is not a divisor of 27)