What are the divisors of 2510?
1, 2, 5, 10, 251, 502, 1255, 2510
- There is a total of 8 positive divisors.
- The sum of these divisors is 4536.
- The arithmetic mean is 567.
4 even divisors
2, 10, 502, 2510
4 odd divisors
1, 5, 251, 1255
How to compute the divisors of 2510?
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 2510 by each of the numbers from 1 to 2510 to determine which ones have a remainder equal to 0.
(where is the integer part of the quotient)
- 2510 / 1 = 2510 (the remainder is 0, so 1 is a divisor of 2510)
- 2510 / 2 = 1255 (the remainder is 0, so 2 is a divisor of 2510)
- 2510 / 3 = 836.66666666667 (the remainder is 2, so 3 is not a divisor of 2510)
- ...
- 2510 / 2509 = 1.0003985651654 (the remainder is 1, so 2509 is not a divisor of 2510)
- 2510 / 2510 = 1 (the remainder is 0, so 2510 is a divisor of 2510)
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 2510 (i.e. 50.099900199501). 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 )
- 2510 / 1 = 2510 (the remainder is 0, so 1 and 2510 are divisors of 2510)
- 2510 / 2 = 1255 (the remainder is 0, so 2 and 1255 are divisors of 2510)
- 2510 / 3 = 836.66666666667 (the remainder is 2, so 3 is not a divisor of 2510)
- ...
- 2510 / 49 = 51.224489795918 (the remainder is 11, so 49 is not a divisor of 2510)
- 2510 / 50 = 50.2 (the remainder is 10, so 50 is not a divisor of 2510)