Proving Prime Divisor of Composite Integer ≤ √n

In summary, the conversation discusses the task of proving that a composite integer n>1 has a prime divisor p with p<=sqrt(n). The suggested approach is to show that n has a divisor, d, less than sqrt{n}, and consider two cases: if d'<sqrt{n}, or if d'>sqrt{n}. This is a useful result as it allows for quickly determining whether an integer is composite or prime by checking for a divisor up to sqrt{n}.
  • #1
Fairy111
73
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
  • #2
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.
 

FAQ: Proving Prime Divisor of Composite Integer ≤ √n

What is the purpose of proving the prime divisor of a composite integer ≤ √n?

The purpose is to determine if a given composite integer has a prime divisor that is less than or equal to the square root of the integer. This information is useful in various mathematical and scientific applications, such as in prime factorization and determining the complexity of algorithms.

How can I prove the prime divisor of a composite integer ≤ √n?

There are various methods for proving the prime divisor of a composite integer ≤ √n. One common method is to use trial division, where you divide the composite integer by each prime number less than or equal to its square root until you find a prime divisor. Another method is to use the Sieve of Eratosthenes, which involves systematically eliminating composite numbers from a list of integers until only prime numbers remain.

Is it always possible to prove the prime divisor of a composite integer ≤ √n?

No, it is not always possible to prove the prime divisor of a composite integer ≤ √n. This is because there are some composite numbers that do not have a prime divisor less than or equal to their square root. One example is 91, which is a composite number with no prime divisor less than or equal to √91 ≈ 9.54.

Can I use a computer program to prove the prime divisor of a composite integer ≤ √n?

Yes, you can use a computer program to prove the prime divisor of a composite integer ≤ √n. In fact, many mathematical software programs and programming languages have built-in functions for determining prime divisors of integers. However, it is important to note that these programs may not always be 100% accurate and may require further verification.

Are there any real-world applications for proving the prime divisor of a composite integer ≤ √n?

Yes, there are many real-world applications for proving the prime divisor of a composite integer ≤ √n. One example is in cryptography, where the security of certain encryption algorithms relies on the difficulty of factoring large numbers into their prime divisors. Another application is in optimizing computer algorithms, as knowing the prime divisor of a composite number can help determine the efficiency of the algorithm.

Back
Top