Close
Register
Close Window

Show Source |    | About   «  25.1. Introduction to Probabilistic Algorithms   ::   Contents   ::   25.3. Random Numbers  »

25.2. Finding Prime Numbers

How do we tell if a number is prime? One approach is the prime sieve: Test all prime up to \(\lfloor\sqrt{n}\rfloor\). This requires up to \(\lfloor\sqrt{n}\rfloor -1\) divisions.

How does the cost of this algorithm compare to the input size? A problem instance is a single value, and our model syas that size for value \(n\) is \(\log n\). Therefore, this is an exponential time algorithm!

Note that it is easy to check the number of times 2 divides \(n\) when using a binary representation. What about checking for the number of times that 3 divides \(n\)? This is not so easy. What if \(n\) were represented in trinary? Then it would be easy to check for divisions by 3.

In general, is there a polynomial time algorithm? We don’t know of one (and that fact is important to modern cryptography, which relies on the “fact” that factoring large numbers takes a lot of time. But what if we are willing to settle for a probabilistic algorithm?

Here are some useful theorems from Number Theory:

To prove that a number is composite, we need only one factor. And, given a (claimed) factor, it is easy to verify whether that claim is true. What does it take to prove that a number is prime? Proving something is prime is much harder than proving that something is composite! Because we need to check a lot more than just one value.

Do we need to check all \(\sqrt{n}\) candidates for possible factors of \(n\) in order to know if \(n\) is prime? It depends on how safe you want to be. (Of course, we actually only need to check primes \(< \sqrt{n}\).)

Here are some potential probablistic algorithms that we might use to decide if a value \(n\) is prime.

  1. Always say that Prime(\(n\)) is FALSE. This simple algorithm “usually” works. It only fails \(1/log n\) times on average!

  2. If you don’t like the notion that for the actual primes values this always fails, than an alternative is to say, with probability \(1/\ln n\), that Prime(\(n\)) is TRUE. Even though it is is not sometimes right and sometimes wrong, of course this no better than the previous algorithm.

  3. Pick a number \(m\) between 2 and \(\sqrt{n}\). Say \(n\) is prime if and only if \(m\) does not divide \(n\). This is not not much help, because it probably did not pick a factor!

None of those are really serious probabilistic algorithms to solve the problem. However, using number theory, it is possible to create a cheap test that probabilistically determines a number to be composite (if it is actually composite) 50% of the time. Using this test, we can build an algorithm for prime testing as follows:

Prime(n) {
  for(i=0; i<COMFORT; i++)
    if !CHEAPTEST(n)
    return FALSE;
  return TRUE;
}

In other words, we can repeatedly try the test, until our number passes enough times for us to be comfortable about claiming that it is prime. Of course, this does nothing to help you find the factors! But there is a nice aspect to this approach. We use large primes for cryptography. But, the numbers used don’t actually need to be prime. They only need to be hard to factor! And those numbers that continually pass the cheap 50/50 test tend to be hard to factor. So, even if a non-prime is used, it will still probably succeed in its intended use.

   «  25.1. Introduction to Probabilistic Algorithms   ::   Contents   ::   25.3. Random Numbers  »

nsf
Close Window