What are the divisors of 4475?
1, 5, 25, 179, 895, 4475
- There is a total of 6 positive divisors.
- The sum of these divisors is 5580.
- The arithmetic mean is 930.
6 odd divisors
1, 5, 25, 179, 895, 4475
How to compute the divisors of 4475?
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 4475 by each of the numbers from 1 to 4475 to determine which ones have a remainder equal to 0.
(where is the integer part of the quotient)
- 4475 / 1 = 4475 (the remainder is 0, so 1 is a divisor of 4475)
- 4475 / 2 = 2237.5 (the remainder is 1, so 2 is not a divisor of 4475)
- 4475 / 3 = 1491.6666666667 (the remainder is 2, so 3 is not a divisor of 4475)
- ...
- 4475 / 4474 = 1.0002235136343 (the remainder is 1, so 4474 is not a divisor of 4475)
- 4475 / 4475 = 1 (the remainder is 0, so 4475 is a divisor of 4475)
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 4475 (i.e. 66.895440801298). 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 )
- 4475 / 1 = 4475 (the remainder is 0, so 1 and 4475 are divisors of 4475)
- 4475 / 2 = 2237.5 (the remainder is 1, so 2 is not a divisor of 4475)
- 4475 / 3 = 1491.6666666667 (the remainder is 2, so 3 is not a divisor of 4475)
- ...
- 4475 / 65 = 68.846153846154 (the remainder is 55, so 65 is not a divisor of 4475)
- 4475 / 66 = 67.80303030303 (the remainder is 53, so 66 is not a divisor of 4475)