Proving Prime Divisor of Composite Integer ≤ √n

Click For Summary
SUMMARY

A composite integer n greater than 1 has a prime divisor p such that p is less than or equal to the square root of n. To prove this, one must demonstrate that n has a divisor d that is less than the square root of n. The proof involves two cases: if d is less than the square root of n, the statement holds; if d is greater, then the existence of a prime divisor p still follows. This principle allows for efficient primality testing by checking divisors up to the square root of n.

PREREQUISITES
  • Understanding of composite and prime numbers
  • Basic knowledge of square roots and inequalities
  • Familiarity with divisor concepts in number theory
  • Experience with mathematical proof techniques
NEXT STEPS
  • Study the properties of prime numbers and their divisors
  • Learn about the Sieve of Eratosthenes for finding prime numbers
  • Explore mathematical proof strategies, particularly in number theory
  • Investigate algorithms for primality testing, such as the Miller-Rabin test
USEFUL FOR

Mathematicians, students studying number theory, and anyone interested in understanding the properties of prime and composite integers.

Fairy111
Messages
72
Reaction score
0

Homework Statement



I need to prove that a composite integer n>1 has a prime divisor p with p<=sqrt(n).

Homework Equations





The Attempt at a Solution



Im not sure how to do this, any help getting started would be great thanks.
 
Physics news on Phys.org
Since you haven't showed us what you have done, i will simply give you an outline of the proof.

You probably do realize that in order to show that a composite integer n>1, has a prime divisor p less than sqrt{n}, it suffices to show that n has a divisor, d, less than sqrt{n}.

It is clear that, since n is a composite, then it must have a divisor, call it d', different from 1 and n itself. Hence 2<=d'<n.

Now you will need to consider two cases:

1. If d'<sqrt{n}, then what? and

2. If d'>sqrt{n}, then what?

After you have tried this, come back with more specific questions?

Edit: This is actually a very neat result and it works both ways, namely: A positive integer n greater than 1 is composite iff n has a divisor d satisfying 2<=d<sqrt{n}.

This tells us that whenever we want to check whether an integer n is composite or a prime, all we have to do is check whether it has a divisor up to sqrt{n}. Of course, if n is too large it is not that convenient, but for small n it works.

Ex: let n=65. Then, we have a rough idea of what sqrt{65} equals, namely >8. So all we need to do is see whether 2, 3,..., 8 divide 65.
 

Similar threads

  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 30 ·
2
Replies
30
Views
4K
Replies
5
Views
2K
  • · Replies 18 ·
Replies
18
Views
3K
  • · Replies 13 ·
Replies
13
Views
1K
Replies
5
Views
2K
Replies
18
Views
2K
Replies
5
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
Replies
9
Views
3K