What are the divisors of 8033?
1, 29, 277, 8033
- There is a total of 4 positive divisors.
- The sum of these divisors is 8340.
- The arithmetic mean is 2085.
4 odd divisors
1, 29, 277, 8033
How to compute the divisors of 8033?
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 8033 by each of the numbers from 1 to 8033 to determine which ones have a remainder equal to 0.
(where is the integer part of the quotient)
- 8033 / 1 = 8033 (the remainder is 0, so 1 is a divisor of 8033)
- 8033 / 2 = 4016.5 (the remainder is 1, so 2 is not a divisor of 8033)
- 8033 / 3 = 2677.6666666667 (the remainder is 2, so 3 is not a divisor of 8033)
- ...
- 8033 / 8032 = 1.000124501992 (the remainder is 1, so 8032 is not a divisor of 8033)
- 8033 / 8033 = 1 (the remainder is 0, so 8033 is a divisor of 8033)
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 8033 (i.e. 89.627004859027). 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 )
- 8033 / 1 = 8033 (the remainder is 0, so 1 and 8033 are divisors of 8033)
- 8033 / 2 = 4016.5 (the remainder is 1, so 2 is not a divisor of 8033)
- 8033 / 3 = 2677.6666666667 (the remainder is 2, so 3 is not a divisor of 8033)
- ...
- 8033 / 88 = 91.284090909091 (the remainder is 25, so 88 is not a divisor of 8033)
- 8033 / 89 = 90.258426966292 (the remainder is 23, so 89 is not a divisor of 8033)