askvity

How Do You Find What a Big Number Is Divisible By?

Published in Divisibility Rules 4 mins read

Finding the divisors of a large number can be simplified using various divisibility rules. These rules provide shortcuts to determine if a number is divisible by another without performing long division. Here's a breakdown of common rules:

Common Divisibility Rules

These rules are most helpful with smaller divisors, but can be combined and repeated to analyze large numbers.

Divisor Rule Example
2 If the last digit is even (0, 2, 4, 6, or 8), the number is divisible by 2. 123456 is divisible by 2.
3 If the sum of the digits is divisible by 3, the number is divisible by 3. 123 (1+2+3=6, which is divisible by 3) is divisible by 3.
4 If the number formed by the last two digits is divisible by 4, the number is divisible by 4. 1232 is divisible by 4 because 32 is divisible by 4.
5 If the last digit is 0 or 5, the number is divisible by 5. 98765 and 10100 are divisible by 5.
6 If the number is divisible by both 2 and 3 (fulfills both rules), it's divisible by 6. 1236 is divisible by 2 (ends in 6) and 3 (1+2+3+6=12, which is divisible by 3), so it's divisible by 6.
7 Alternately add and subtract digits in groups of three from right to left. If the result is divisible by 7, then the original number is divisible by 7. For example, consider 256242. You would perform 256 - 242 = 14. Since 14 is divisible by 7, then 256242 is also divisible by 7.
8 If the number formed by the last three digits is divisible by 8, the number is divisible by 8. 123128 is divisible by 8 because 128 is divisible by 8.
9 If the sum of the digits is divisible by 9, the number is divisible by 9. 729 (7+2+9=18, which is divisible by 9) is divisible by 9.
10 If the last digit is 0, the number is divisible by 10. 123450 is divisible by 10.
11 Find the sum of the digits in odd positions and the sum of the digits in even positions. If the difference between the two sums is divisible by 11, the number is divisible by 11. Consider the number 918082. (9+8+8) - (1+0+2) = 25 - 3 = 22. Since 22 is divisible by 11, then 918082 is divisible by 11.
12 If the number is divisible by both 3 and 4, it's divisible by 12. 132 is divisible by 3 (1+3+2 = 6) and 4 (32 is divisible by 4), therefore it is divisible by 12.

Dealing with Truly Massive Numbers

For exceptionally large numbers that exceed the practicality of manual divisibility rule application, utilize computational tools:

  • Calculators: Many calculators handle large numbers and can perform division to check for divisibility.
  • Computer Programs: Programming languages like Python have built-in functions for integer division and modulo operations, allowing you to easily check for divisibility. The modulo operator (%) returns the remainder of a division. If number % divisor == 0, then number is divisible by divisor.
  • Online Divisibility Calculators: Several websites offer tools to check the divisibility of large numbers.

Prime Factorization

A more comprehensive approach is to find the prime factorization of the number. This involves breaking down the number into a product of its prime factors. While computationally intensive for very large numbers, it reveals all possible divisors.

For instance, the prime factorization of 24 is 2 x 2 x 2 x 3, or 23 x 3. Therefore, the divisors of 24 are 1, 2, 3, 4, 6, 8, 12, and 24.

Combining Rules and Prime Factorization

Start by testing the divisibility of a large number using simpler rules (2, 3, 5, 10). If it's divisible, divide the number by that factor and repeat the process. If it's not divisible by these smaller primes, you might move to 7, 11, and so on. For extremely large numbers, computer-assisted factorization becomes essential.

In summary, you can determine what a big number is divisible by by systematically applying divisibility rules, utilizing computational tools, and, for a full understanding, performing prime factorization.

Related Articles