What are the divisors of 3875?
1, 5, 25, 31, 125, 155, 775, 3875
- There is a total of 8 positive divisors.
- The sum of these divisors is 4992.
- The arithmetic mean is 624.
8 odd divisors
1, 5, 25, 31, 125, 155, 775, 3875
How to compute the divisors of 3875?
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 3875 by each of the numbers from 1 to 3875 to determine which ones have a remainder equal to 0.
(where is the integer part of the quotient)
- 3875 / 1 = 3875 (the remainder is 0, so 1 is a divisor of 3875)
- 3875 / 2 = 1937.5 (the remainder is 1, so 2 is not a divisor of 3875)
- 3875 / 3 = 1291.6666666667 (the remainder is 2, so 3 is not a divisor of 3875)
- ...
- 3875 / 3874 = 1.0002581311306 (the remainder is 1, so 3874 is not a divisor of 3875)
- 3875 / 3875 = 1 (the remainder is 0, so 3875 is a divisor of 3875)
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 3875 (i.e. 62.249497989944). 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 )
- 3875 / 1 = 3875 (the remainder is 0, so 1 and 3875 are divisors of 3875)
- 3875 / 2 = 1937.5 (the remainder is 1, so 2 is not a divisor of 3875)
- 3875 / 3 = 1291.6666666667 (the remainder is 2, so 3 is not a divisor of 3875)
- ...
- 3875 / 61 = 63.524590163934 (the remainder is 32, so 61 is not a divisor of 3875)
- 3875 / 62 = 62.5 (the remainder is 31, so 62 is not a divisor of 3875)