What are the divisors of 3609?
1, 3, 9, 401, 1203, 3609
- There is a total of 6 positive divisors.
- The sum of these divisors is 5226.
- The arithmetic mean is 871.
6 odd divisors
1, 3, 9, 401, 1203, 3609
How to compute the divisors of 3609?
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 3609 by each of the numbers from 1 to 3609 to determine which ones have a remainder equal to 0.
(where is the integer part of the quotient)
- 3609 / 1 = 3609 (the remainder is 0, so 1 is a divisor of 3609)
- 3609 / 2 = 1804.5 (the remainder is 1, so 2 is not a divisor of 3609)
- 3609 / 3 = 1203 (the remainder is 0, so 3 is a divisor of 3609)
- ...
- 3609 / 3608 = 1.0002771618625 (the remainder is 1, so 3608 is not a divisor of 3609)
- 3609 / 3609 = 1 (the remainder is 0, so 3609 is a divisor of 3609)
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 3609 (i.e. 60.074953183502). 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 )
- 3609 / 1 = 3609 (the remainder is 0, so 1 and 3609 are divisors of 3609)
- 3609 / 2 = 1804.5 (the remainder is 1, so 2 is not a divisor of 3609)
- 3609 / 3 = 1203 (the remainder is 0, so 3 and 1203 are divisors of 3609)
- ...
- 3609 / 59 = 61.169491525424 (the remainder is 10, so 59 is not a divisor of 3609)
- 3609 / 60 = 60.15 (the remainder is 9, so 60 is not a divisor of 3609)