To find whether N is a prime number we only need to look for all numbers less or equal to sqrt(N). Why is that? I am writing a C code so trying to understand a reason behind it.
|
|
N is prime if it is a positive integer which is divisible by exactly two positive integers, 1 and N. Since a number's divisors cannot be larger than that number, this gives rise to a simple primality test:
However, it would be nice to modify this test to make it faster. So let us investigate. Note that the divisors of N occur in pairs. If N is divisible by a number M, then it is also divisible by N/M. For instance, 12 is divisble by 6, and so also by 2. Furthermore, if This means that if no numbers less than or equal to sqrt(N) divide N, no numbers greater than sqrt(N) divide N either (excepting 1 and N themselves), otherwise a contradiction would arise. So we have a better test:
if you consider the reasoning above, you should see that a number which passes this test also passes the first test, and a number which fails this test also fails the first test. The tests are therefore equivalent. |
|||
|
|
|
A composite number (one that is not prime, or 1) has at least 1 pair of factors, and it is guaranteed that one of the numbers from each pair is less than or equal to the square root of the number (which is what you are asking about). If you square the square root of the number, you get the number itself ( |
|||
|
|
|
|
The reason is simple, any number bigger than the sqrt, will cause the other multiplier, to be smaller than the sqrt. In such case, you should have already check it. |
||
|
|
|
|
Let n=a×b be composite. Assume a>sqrt(n) and b>sqrt(n). a×b > sqrt(n)×sqrt(n) a×b > n But we know a×b=n, therefore a<sqrt(n) or b<sqrt(n). Since you only need to know a or b to show n is composite, you only need to check the numbers up to sqrt(n) to find such a number. |
|||
|
|
|
|
Because in the worst case, number If the number can be expressed diferently, that men that one of divisors will be less than |
|||
|
|

algorithms,cryptography,compressionand a boatload of other tags would be offtopic. At the end of the day, programming is a applied mathematical discipline - I would agree with you if the question was "how do I prove that I only need to test numbers <= sqrt(N)". – caf Oct 18 at 1:40