What are the divisors of 3607?
1, 3607
- There is a total of 2 positive divisors.
- The sum of these divisors is 3608.
- The arithmetic mean is 1804.
2 odd divisors
1, 3607
How to compute the divisors of 3607?
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 3607 by each of the numbers from 1 to 3607 to determine which ones have a remainder equal to 0.
(where is the integer part of the quotient)
- 3607 / 1 = 3607 (the remainder is 0, so 1 is a divisor of 3607)
- 3607 / 2 = 1803.5 (the remainder is 1, so 2 is not a divisor of 3607)
- 3607 / 3 = 1202.3333333333 (the remainder is 1, so 3 is not a divisor of 3607)
- ...
- 3607 / 3606 = 1.0002773155851 (the remainder is 1, so 3606 is not a divisor of 3607)
- 3607 / 3607 = 1 (the remainder is 0, so 3607 is a divisor of 3607)
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 3607 (i.e. 60.058305004387). 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 )
- 3607 / 1 = 3607 (the remainder is 0, so 1 and 3607 are divisors of 3607)
- 3607 / 2 = 1803.5 (the remainder is 1, so 2 is not a divisor of 3607)
- 3607 / 3 = 1202.3333333333 (the remainder is 1, so 3 is not a divisor of 3607)
- ...
- 3607 / 59 = 61.135593220339 (the remainder is 8, so 59 is not a divisor of 3607)
- 3607 / 60 = 60.116666666667 (the remainder is 7, so 60 is not a divisor of 3607)