What are the divisors of 1235?
1, 5, 13, 19, 65, 95, 247, 1235
- There is a total of 8 positive divisors.
- The sum of these divisors is 1680.
- The arithmetic mean is 210.
8 odd divisors
1, 5, 13, 19, 65, 95, 247, 1235
How to compute the divisors of 1235?
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 1235 by each of the numbers from 1 to 1235 to determine which ones have a remainder equal to 0.
(where is the integer part of the quotient)
- 1235 / 1 = 1235 (the remainder is 0, so 1 is a divisor of 1235)
- 1235 / 2 = 617.5 (the remainder is 1, so 2 is not a divisor of 1235)
- 1235 / 3 = 411.66666666667 (the remainder is 2, so 3 is not a divisor of 1235)
- ...
- 1235 / 1234 = 1.0008103727715 (the remainder is 1, so 1234 is not a divisor of 1235)
- 1235 / 1235 = 1 (the remainder is 0, so 1235 is a divisor of 1235)
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 1235 (i.e. 35.142566781611). 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 )
- 1235 / 1 = 1235 (the remainder is 0, so 1 and 1235 are divisors of 1235)
- 1235 / 2 = 617.5 (the remainder is 1, so 2 is not a divisor of 1235)
- 1235 / 3 = 411.66666666667 (the remainder is 2, so 3 is not a divisor of 1235)
- ...
- 1235 / 34 = 36.323529411765 (the remainder is 11, so 34 is not a divisor of 1235)
- 1235 / 35 = 35.285714285714 (the remainder is 10, so 35 is not a divisor of 1235)