Tuesday, 13 October 2015
HOW MANY DIVISORS DOES A NUMBER HAVE?


--------------------------------------------------------------------------------------------------------------------------
READ MORE:
http://www.javascripter.net/math/calculators/primefactorscalculator.htm
http://mathschallenge.net/problems/pdfs/mathschallenge_1_star.pdf
https://en.wikipedia.org/wiki/Euler%27s_totient_function#Divisor_sum
https://en.wikipedia.org/wiki/Prime_number_theorem#Proof_sketch
https://www.youtube.com/watch?v=5VW1gEnZGdY
http://www.wikihow.com/Determine-the-Number-of-Divisors-of-an-Integer
http://mathcentral.uregina.ca/QQ/database/QQ.02.06/joe1.html
http://mathforum.org/library/drmath/view/55843.html
http://primes.utm.edu/glossary/xpage/tau.html--------------------------------------------------------------------------------------------------------------------------
How many divisors does a number have?
Suppose you wish to find the number of divisors of 48. Starting with 1 we can work through the set of natural numbers and test divisibility in each case, noting that divisors can be listed in factor pairs.
48 = 1×48 = 2×24 = 3×16 = 4×12 = 6×8
Hence we can see that 48 has exactly ten divisors. It should also be clear that, using this method, we only ever need to work from 1 up to the square root of the number.
Although this method is quick and easy with small numbers, it is tedious and impractical for larger numbers. Fortunately there is a quick and accurate method using the divisor, or Tau, function.
Let d(n) be the number of divisors for the natural number, n.
We begin by writing the number as a product of prime factors: n = paqbrc...
then the number of divisors, d(n) = (a+1)(b+1)(c+1)...
then the number of divisors, d(n) = (a+1)(b+1)(c+1)...
To prove this, we first consider numbers of the form, n = pa. The divisors are 1, p, p2, ..., pa; that is, d(pa)=a+1.
Now consider n = paqb. The divisors would be:
1 | p | p2 | ... | pa |
q | pq | p2q | ... | paq |
q2 | pq2 | p2q2 | ... | paq2 |
... | ... | ... | ... | ... |
qb | pqb | p2qb | ... | paqb |
Hence we prove that the function, d(n), is multiplicative, and in this particular case, d(paqb)=(a+1)(b+1). It should be clear how this can be extended for any natural number which is written as a product of prime factors.
The number of divisor function can be quickly demonstrated with the example we considered earlier: 48 = 24×31, therefore d(48)=5×2=10.
How to Determine the Number of Divisors of an Integer
One Methods:Why This Works
1, 2, 3, 4, 6, 8, 12, 24 are all divisors (or factors) of 24. You can divide 24 by any of them and you will arrive at a whole number. So there are 8 divisors of the number 24. This article tells you how to calculate this number quickly.
Ad
Steps
-
1As an example, we calculate the number of divisors of 24. First we factor the number. 24 = 23*3
-
2Note the exponents. These are 3 and 1. When a number doesn’t have an exponent its exponent equals 1.
-
3Add one to each of the exponents and multiply. (3+1)*(1+1) = 4*2 = 8. The number of divisors is 8.
Why This Works
- This is not a rigorous proof, it’s an explanation.
- A number d is a divisor of 24 when d is a positive integer, and the result of the division, n, is an integer. This means that any d must be of the form 2p*3q, where p and q are integers. Furthermore p<=3, q<=1, otherwise n would still not be an integer. p and q are nonnegative, otherwise d is not an integer.
- Remember that any nonzero number raised to the zeroth power equals 1. So p and q can also be 0. So p can be 0, 1, 2, or 3 which gives for 4 possibilities for p. q can be 0 and 1, which gives 2 possibilities for q. The number of possibilities is just one larger than the corresponding exponent.
- Because these possibilities are independent we can multiply them in order to arrive at the total number of divisors.
Some examples
- 17 = 171 --> 2
- 25 = 52 --> 3
- 60 = 22*3*5 --> 12
- 100 = 22*52 --> 9
- 45360 = 24*34*5*7 --> 100
|
The Number of Divisors of an IntegerDate: 04/02/98 at 15:40:24 From: Simon Lloyd Subject: Finding the total number of divisors, d(N), of any integer, N Twenty-four has 8 divisors, namely 1,2,3,4,6,8,12 and 24. I have to find a relationship between the integer, N, and the total number of its divisors, d(N). I have found that every prime number will have 2 divisors, every integer which is the square of a prime will have 3 divisors, every integer which is a cube of a prime number will have 4 divisors, etc. Building on this, I've also found that every number can be expressed uniquely as the product of primes and that there is a relationship between the exponents of the primes and d(N). For example, 24 = 2^(3)*3^(1) therefore, d(24) = (3 + 1)(1 + 1) = 8. However, I need to be able to prove this mathematically and explain why it is so, and this is where I'm having problems. I really hope you can help! Date: 04/03/98 at 06:51:14 From: Doctor Anthony Subject: Re: Finding the total number of divisors, d(N), of any integer, N The reasoning you give is correct. You just need to show how it works in general. If a number is a perfect square, it will have an odd number of factors (e.g., 4 has factors 1, 2, 4), whereas all other numbers have an even number of factors. To show that square numbers always have an odd number of factors, consider a square, such as 36. This can be put into prime factors as 2^2*3^2. Note that all its prime factors will be raised to EVEN powers since it is a perfect square. Now, the factor 2 can be chosen in 3 ways, i.e., not at all, once, or twice. And the factor 3 can also be chosen in 3 ways, i.e., not at all, once, or twice. (If neither is chosen, we get the factor 2^0*3^0 = 1.) All together, there will be 3*3 = 9 factors of 36. These are: 1, 2, 3, 4, 6, 9, 12, 18, 36 Now, the important point was made earlier that the prime factors of a perfect square are always raised to some even power, so we could have a^2*b^4*c^2, where a, b, c are primes. In this example: a could be chosen in 3 ways: 0, 1, 2 times b could be chosen in 5 ways: 0, 1, 2, 3, 4 times c could be chosen in 3 ways: 0, 1, 2 times So, all together, the complete number will have 3*5*3 = 45 factors; and note that we are always multiplying odd numbers to get an odd number, 45 in this case. For any number that is not a perfect square, there will ALWAYS be an even number of factors: a^3*b^2*c will have 4*3*2 factors = 24 factors If it is not a perfect square, at least one of its prime factors will be raised to an ODD power, and that means the factor can be chosen in an EVEN number of ways, ensuring that overall there will be an even number of factors. The general rule for the number of factors is to increase the powers of the factors by 1 and multiply these together. So: a^n*b^m*c^p will have (n + 1)(m + 1)(p + 1) factors. 2^3*5^4*7^2 will have 4*5*3 = 60 factors -Doctor Anthony, The Math Forum Check out our web site! http://mathforum.org/dr.math/ |
Related movie you might like to see :

FILE SAVE AS WITH JAVA SCRIPT METHO...

FILE SAVE AS WITH JAVA SCRIPT METH...

HTML CSS JAVA COMPRESSOR CODE

HTML CSS JAVA COMPRESSOR

ONLINE CSS UNMINIFIER CODE

ONLINE CSS UNMINIFIER

CSSO (CSS Optimizer)

SCRIPT TUTORIALS CSSO CSS COMPOSER ...

WHITE SPACE REMOVER CODE

White Space Remover

COMMENTS REMOVER CODE

COMMENTS REMOVER
?
+
X
Recommended for you
Loading..
Related Post for HOW MANY DIVISORS DOES A NUMBER HAVE?
COMPARE FRACTIONS CALCULATOR .CalcTable { padding: 4px 6px; border: solid #ddd 1px; border-collapse: collapse } .CalcTitleCell { background-color: transparent; color: #1d487e; font-family: Verdana,…
MULTIPLYING FRACTIONS CALCULATOR .CalcTable { padding: 4px 6px; border: solid #ddd 1px; border-collapse: collapse } .CalcTitleCell { background-color: transparent; color: #1d487e; font-family: Verdana, Ar…
SLOPE CALCULATOR WITH GRAPH CODE ---------------------------------------------------------------------------------------------------------------- COPY AND PASTE BELOW CODE IN POST HTML SECTION ---------------…
MEAN MEDIAN MODE RANGE CALCULATOR .CalcTable { padding: 4px 6px; border: solid #ddd 1px; border-collapse: collapse } .CalcTitleCell { background-color: transparent; color: #1d487e; font-family: Verdana, Ar…
LONG DIVISION CALCULATOR .CalcTable { padding: 4px 6px; border: solid #ddd 1px; border-collapse: collapse } .CalcTitleCell { background-color: transparent; color: #1d487e; font-family: Verdana, …
ADDING SUBTRACTING MIXED NUMBERS CALCULATOR .CalcTable { padding: 4px 6px; border: solid #ddd 1px; border-collapse: collapse } .CalcTitleCell { background-color: transparent; color: #1d487e; font-family: Verdana…
RIGHT ANGLE TRIANGLES CALCULATOR CODE ----------------------------------------------------------------------------------------------------------------- COPY AND PASTE BELOW CODE IN POST HTML SECTION -------------…
PRIME NUMBER CHECKER .CalcTable { padding: 4px 6px; border: solid #ddd 1px; border-collapse: collapse } .CalcTitleCell { background-color: transparent; color: #1d487e; font-family: Verdana, A…
LCM CALCULATOR .CalcTable { padding: 4px 6px; border: solid #ddd 1px; border-collapse: collapse } .CalcTitleCell { background-color: transparent; color: #1d487e; font-family: Verdana, …
PRIME NUMBER CHECKER CODE ----------------------------------------------------------------------------------------------------------------- COPY AND PASTE BELOW CODE IN POST HTML SECTION --------------…
MEAN MEDIAN MODE RANGE CALCULATOR CODE ----------------------------------------------------------------------------------------------------------------- COPY AND PASTE BELOW CODE IN POST HTML SECTION --------------…
PRIME FACTORING CALCULATOR .CalcTable { padding: 4px 6px; border: solid #ddd 1px; border-collapse: collapse } .CalcTitleCell { background-color: transparent; color: #1d487e; font-family: Verdana, …
DIVIDING FRACTIONS CALCULATOR CODE ----------------------------------------------------------------------------------------------------------------- COPY AND PASTE BELOW CODE IN POST HTML SECTION ---------------…
FACTORING CALCULATOR .CalcTable { padding: 4px 6px; border: solid #ddd 1px; border-collapse: collapse } .CalcTitleCell { background-color: transparent; color: #1d487e; font-family: Verdana, …
PRIME NUMBER GENERATOR .CalcTable { padding: 4px 6px; border: solid #ddd 1px; border-collapse: collapse } .CalcTitleCell { background-color: transparent; color: #1d487e; font-family: Verdana, …
FIND AND REPLACE TEXT /* general */ * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } ::-moz-selection { background: #000; text-shadow: none; color: #ff…
FIND AND REPLACE TEXT CODE ----------------------------------------------------------------------------------------------------------------- COPY AND PASTE BELOW CODE IN POST HTML SECTION -------------…
FACTORING CALCULATOR CODE ----------------------------------------------------------------------------------------------------------------- COPY AND PASTE BELOW CODE IN POST HTML SECTION ---------------…
LCM CALCULATOR CODE ----------------------------------------------------------------------------------------------------------------- COPY AND PASTE BELOW CODE IN POST HTML SECTION -----------…
ADDING SUBTRACTING FRACTION CALCULATOR CODE ----------------------------------------------------------------------------------------------------------------- COPY AND PASTE BELOW CODE IN POST HTML SECTION --------------…
RIGHT ANGLE TRIANGLES CALCULATOR body { font-family:arial; padding:1em } form { background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhIQ880_LgZX9_9VHMxBpmHB5STwjyeqBAd5QOCvHm0Ztkg0mL…
ADDING SUBTRACTING 3 FRACTION CALCULATOR .CalcTable { padding: 4px 6px; border: solid #ddd 1px; border-collapse: collapse } .CalcTitleCell { background-color: transparent; color: #1d487e; font-family: Verdana, A…
LONG DIVISION CALCULATOR CODE ----------------------------------------------------------------------------------------------------------------- COPY AND PASTE BELOW CODE IN POST HTML SECTION ---------------…
SEQUENCE SOLVER CALCULATOR Sequence solver body { font-family:arial; padding:1em } textarea { background:url(data:image/gif;base64,R0lGODlhsQBfALMAAO+9jPe9iP+9e/+9hOLBnOnBnMbGwdbGs63G3rXG1r3GzrnG2…
MULTIPLYING FRACTIONS CALCULATOR CODE ----------------------------------------------------------------------------------------------------------------- COPY AND PASTE BELOW CODE IN POST HTML SECTION --------------…
SLOPE CALCULATOR WITH GRAPH .CalcTable { padding: 4px 6px; border: solid #ddd 1px; border-collapse: collapse } .CalcTitleCell { background-color: transparent; color: #1d487e; font-family: Verdana, A…
LINEAR CALCULATOR CODE ----------------------------------------------------------------------------------------------------------------- COPY AND PASTE BELOW CODE IN POST HTML SECTION --------------…
MATH FRACTION REDUCER CALCULATOR .CalcTable { padding: 4px 6px; border: solid #ddd 1px; border-collapse: collapse } .CalcTitleCell { background-color: transparent; color: #1d487e; font-family: Verdana, A…
CIRCLE CALCULATOR CODE ----------------------------------------------------------------------------------------------------------------- COPY AND PASTE BELOW CODE IN POST HTML SECTION -------------…
DIVIDING FRACTIONS CALCULATOR .CalcTable { padding: 4px 6px; border: solid #ddd 1px; border-collapse: collapse } .CalcTitleCell { background-color: transparent; color: #1d487e; font-family: Verdana,…
SEQUENCE SOLVER CALCULATOR CODE ----------------------------------------------------------------------------------------------------------------- COPY AND PASTE BELOW CODE IN POST HTML SECTION ----------------…
CIRCLE CALCULATOR .CalcTable { padding: 4px 6px; border: solid #ddd 1px; border-collapse: collapse } .CalcTitleCell { background-color: transparent; color: #1d487e; font-family: Verdana, A…
EXPONENT CALCULATOR .CalcTable { padding: 4px 6px; border: solid #ddd 1px; border-collapse: collapse } .CalcTitleCell { background-color: transparent; color: #1d487e; font-family: Verdana, A…
ADDING SUBTRACTING 3 FRACTION CALCULATOR CODE ----------------------------------------------------------------------------------------------------------------- COPY AND PASTE BELOW CODE IN POST HTML SECTION ---------------…
LINEAR EQUATION SOLVER .CalcTable { padding: 4px 6px; border: solid #ddd 1px; border-collapse: collapse } .CalcTitleCell { background-color: transparent; color: #1d487e; font-family: Verdana, A…
SCIENTIFIC NOTATION CALCULATOR .CalcTable { padding: 4px 6px; border: solid #ddd 1px; border-collapse: collapse } .CalcTitleCell { background-color: transparent; color: #1d487e; font-family: Verdana,…
ADDING SUBTRACTING MIXED NUMBERS CALCULATOR CODE ----------------------------------------------------------------------------------------------------------------- COPY AND PASTE BELOW CODE IN POST HTML SECTION ---------------…
ADDING SUBTRACTING FRACTION CALCULATOR .CalcTable { padding: 4px 6px; border: solid #ddd 1px; border-collapse: collapse } .CalcTitleCell { background-color: transparent; color: #1d487e; font-family: Verdana, …
GREATEST COMMON FACTOR CALCULATOR .CalcTable { padding: 4px 6px; border: solid #ddd 1px; border-collapse: collapse } .CalcTitleCell { background-color: transparent; color: #1d487e; font-family: Verdana, …
COMPARE FRACTIONS CALCULATOR CODE ----------------------------------------------------------------------------------------------------------------- COPY AND PASTE BELOW CODE IN POST HTML SECTION --------------…
EXPONENT CALCULATOR CODE ----------------------------------------------------------------------------------------------------------------- COPY AND PASTE BELOW CODE IN POST HTML SECTION --------------…
PRIME FACTORING CALCULATOR CODE ----------------------------------------------------------------------------------------------------------------- COPY AND PASTE BELOW CODE IN POST HTML SECTION --------------…
PRIME NUMBER GENERATOR CODE ----------------------------------------------------------------------------------------------------------------- COPY AND PASTE BELOW CODE IN POST HTML SECTION --------------…
SCIENTIFIC NOTATION CALCULATOR CODE ----------------------------------------------------------------------------------------------------------------- COPY AND PASTE BELOW CODE IN POST HTML SECTION ---------------…
MATH FRACTION REDUCER CALCULATOR CODE ---------------------------------------------------------------------------------------------------------------- COPY AND PASTE BELOW CODE IN POST HTML SECTION ---------------…
Labels:
TEXT TOOLS
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment
Click to see the code!
To insert emoticon you must added at least one space before the code.