vote up 1 vote down star
1

Hi,

I am trying to find whether number is prime or not for 1000 digit long. Algorithm i am thinking to use is 6k+/-1

problem i am facing is how can i store such a long number in java, it is taken string as input.

or

for doing divisibility should is consider only the last few digits of the number.

please advise

flag

42% accept rate
Do you have the CPU power to do that? It is not an easy task. – backslash17 Aug 15 at 16:42
3  
You might want to consider using software that already exists to perform this computation. There is no sense reinventing the wheel if you can avoid it, and chances are that the preexisting software will out perform something of your own concoction. – Nixuz Aug 15 at 17:03
6k +/- 1 will tell you if it is NOT prime quickly, or if it MIGHT be prime. Example: k=6, 35 is not prime. However 723 == 3 (mod 6) is quickly determined not to be prime. You still need a prime test if n == +-1 (mod 6) – mpbloch Aug 15 at 17:13

8 Answers

vote up 12 vote down

If it is sufficient to determine whether or not a number is PROBABLY prime, you can use the built in isProbablePrime function

  • if the call returns true, the probability that the number is prime exceeds (1 - 1/(2^certainty)).
  • If the call returns false, the number is definately not prime.
link|flag
Hmmm. Am I the only one who finds it extremely disturbing that the javadoc for the probable-prime methods of BigInteger does not include documentation on which algorithm is used? – Jason S Aug 17 at 13:27
@Jason - why does that disturb you? The purpose of javadoc is to help users of the API know how to use it, not to expose internal implementation details. The details are quite clearly spelled out in the source code. – CPerkins Sep 17 at 14:36
vote up 7 vote down

You should use BigInteger if you need to deal with ints outside the 32/64-bit space. Don't know whether there's practical limits on that that you'll need to worry about.

link|flag
vote up 6 vote down

You should use a Lucas pseudoprime test and a Rabin-Miller strong pseudoprime test in bases 2 and 3. If all three give a result of probably prime, then for all practical reasons you should consider it so. There are no known counterexamples to this test. If you have to generate a certificate of primality, then you could use an elliptic curve primality prover, but it will be tremendously slower.

link|flag
+1 for awesomely interesting links! – chrispy Aug 15 at 19:43
2  
Note that Java's isProbablePrime(int) uses Miller/Rabin- and Lucas/Lehmer algorithms. – Bart K. Aug 15 at 21:04
@Bart: where is that documented? – Jason S Aug 17 at 13:28
vote up 3 vote down

BigInteger

link|flag
vote up 3 vote down

6k +/- 1 is not a primality test! If you already know the number Q is prime (and greater than 7), knowing that it's of the form 6k +/- 1 tells you whether it's "safe" -- that Q+1 and Q-1 will both have large factors, making Q more difficult to factor (thus "safe" for cryptographic purposes). But most numbers of the form 6k +/- 1 will be composite.

"Safe Prime" page from Wikipedia

If want to write your own routine for testing 1000 digit numbers for primality, you'll want to use the BigInteger class as the other answers have suggested. You could use the Fermat test first, which will tell you if the number is "definitely composite" or "probably prime". You could then use a more computationally intensive test like Miller-Rabin or Solovay-Strassen on the "probably prime" numbers for the final definitive test.

Primality testing algorithms from Wikipedia

link|flag
vote up 2 vote down

A 1000 digit number uses less than 350 bytes of memory with BigDecimal. You should find you can handle numbers much larger than this.

The problem you will find is that you need to check alot of numbers, about 10^31 which will take a long time, about 10^18 years.

link|flag
vote up 1 vote down

In case you don't like the probabilistic methods, there is a deterministic polynomial algorithm available as well.

But unless a deity is playing with the odds and pulling your leg or something, you should probably just use the probabilistic methods, which are faster.

link|flag
sweet, I'd never heard of that test before. Ramanujan would be proud.... – Jason S Aug 17 at 13:37
vote up 0 vote down

You can use some ideas toghether.

  • The algorith 6k +/-1
  • Checking until divisor is less than sqrt(prime)
  • Checking dividing only by primes

Combining those methods you can speed up a lot your validation.

This link can help you: http://www.osix.net/modules/article/?id=791

And of course use BigInteger.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.