Proving n Has Odd # Divisors If Perfect Square

  • Thread starter Thread starter cragar
  • Start date Start date
  • Tags Tags
    Proof
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
7 replies · 11K views
cragar
Messages
2,546
Reaction score
3

Homework Statement


Let n be a positive integer. Prove that n has an odd number of divisors if and only if n is a perfect square.

The Attempt at a Solution


Let's factor n into its prime factorization
[itex]n= {P_1}^{x_1}{P_2}^{x_2}...{P_j}^{x_r}[/itex]
where P's are prime numbers and x's are natural numbers.
Now in order to get all the divisors from the prime factors we need to take all the possible combinations of the prime factors, from 0 up to [itex]x_r[/itex]
So the number of divisors will be [itex]D=(x_1+1)(x_2+1)...(x_r+1)[/itex]
But if n is a perfect square then the number of divisors would be
[itex]D=(2x_1+1)(2x_2+1)...(2x_r+1)[/itex] and an odd number times an odd number is an odd number therefore if n is a perfect square then it will have an odd number of divisors.
And this is the only way to guarantee that it will have an odd number of divisors.
 
Physics news on Phys.org
cragar said:

Homework Statement


Let n be a positive integer. Prove that n has an odd number of divisors if and only if n is a perfect square.

The Attempt at a Solution


Let's factor n into its prime factorization
[itex]n= {P_1}^{x_1}{P_2}^{x_2}...{P_j}^{x_r}[/itex]
where P's are prime numbers and x's are natural numbers.
Now in order to get all the divisors from the prime factors we need to take all the possible combinations of the prime factors, from 0 up to [itex]x_r[/itex]
So the number of divisors will be [itex]D=(x_1+1)(x_2+1)...(x_r+1)[/itex]
But if n is a perfect square then the number of divisors would be
[itex]D=(2x_1+1)(2x_2+1)...(2x_r+1)[/itex] and an odd number times an odd number is an odd number therefore if n is a perfect square then it will have an odd number of divisors.
And this is the only way to guarantee that it will have an odd number of divisors.

You can do it that way, but you can also do it without using prime factorization. Group divisors into pairs where you pair p and q into {p,q} when pq=n. Do you see how that would work?
 
Im not sure exactly what you mean. when you say n=pq
for n to be a perfect square p=q, then [itex]n=p^2[/itex]
Are you saying because its a perfect square I could group all the divisors together because it will have 2 of each.
 
cragar said:
Im not sure exactly what you mean. when you say n=pq
for n to be a perfect square p=q, then [itex]n=p^2[/itex]
Are you saying because its a perfect square I could group all the divisors together because it will have 2 of each.

I'm saying the divisors occur in groups of two. Unless it's a perfect square. Then you have one group of one.
 
so because it is a perfect square, the divisors are doubled up, so were just repeating instead of having 2 distinct groups. because n=q*q
 
cragar said:
so because it is a perfect square, the divisors are doubled up, so were just repeating instead of having 2 distinct groups. because n=q*q

Actually the divisors are doubled up when the number is not a square. Take 12. The groups are {1,12}, {2,6} and {3,4}. Since the divisors are all in groups of 2, the number of divisors is even. Now take 64, a perfect square. The groups are {1,64}, {2,32}, {4,16} and {8}. 8*8=64 so 8 is in a group all by itself. Hence the number of divisors is odd.
 
Let d be any divisor or n (prime or composite) such that [itex]1 \leq d \leq n[/itex] (that covers all divisors). It's as trivial as observing that if [itex]d|n[/itex], then [itex]\frac{n}{d}|n[/itex]. Hence the divisors can be listed in pairs [itex](d,\frac{n}{d})[/itex] giving an even number of divisors (if one listed them all without being concerned about repeats). Where n is a perfect square, there will be exactly one divisor s such that [itex]s^2 = n[/itex] so [itex]\frac{n}{s} = s[/itex]. There will therefore be exactly one "repeated" pair [itex](s,s)[/itex]. If only unique divisors are now listed, s will occur only once, whereas there will be an even number of the other divisors. Hence the total number of divisors will be odd iff n is a square.
 
Ok thanks for your posts everyone, I think I understand now.