vote up -8 vote down star
8

I'm writing a method isPrime() that returns a boolean variable that is true only if the number m is prime. Right now I've set up a massive switch statement that consists of all the prime numbers up to 271. If the number n(number of variables I need to insert into an array) is large enough so that n/m > 0.75 and m cannot increase any further without being a non-prime number as defined by my method then this class won't work...

I can't think of any better methods to determine if m is prime or not.

public void getPrime(){
	m = (n/4) + n;
	while(!isPrime()){
		m++;
	}
	double dblM = m;
	double dblN = n;
	if(dblN/dblM > 0.75){
		m++;
		while(!isPrime()){
			m++;
		}
	}
}
flag
65  
What? This should be in The Daily WTF. – hyperboreean Apr 26 at 23:23
4  
I am speechless. Please, learn about scope of variables, function returns, function parameters. Google for "Beginner Java Tutorial". – Svante Apr 26 at 23:33
4  
I don't get it. At all. I can't even find a question in your post. – DaClown Apr 26 at 23:42
2  
Lots of better answers on primeness already: stackoverflow.com/questions/… – Wedge Apr 27 at 0:53
5  
What annoys me is that this guy got a gold medal from this stupid question. – rlbond Jul 9 at 13:00
show 9 more comments

closed as spam by Juan Manuel, sth, Wedge, Adam Rosenfield, eliben Apr 27 at 4:31

6 Answers

vote up 43 vote down check

The easiest way is to try to divide the number n by all the odd numbers from 3 to Square-root(n). (this has exponential complexity; some other primality tests have polynomial complexity)

bool isPrime(int n)
{
   if (n<=1) return false; // negatives, 0, and 1 are not primes

   if (n==2) return true; // 2 is the only even prime

   if (n%2 == 0) return false; // even numbers are not primes

   int maxFactor = sqrt(n);
   for (int i=3; i<=maxFactor; i=i+2)
   {
      if (n%i == 0) return false;
   }

   return true;
}

Edit: code modified to consider the cases of negatives, 0, 1, and 2. Thanks Daniel :)
Edit2: took sqrt(n) out of the loop

link|flag
It has indeed exponential complexity .. but there is also a polynomial time algorithm :) – n00ki3 Apr 26 at 23:39
5  
Just to be correct - the code fails for 1 and 2. And to be even more correct, non-positive numbers should be rejected. – Daniel Brückner Apr 26 at 23:42
1  
ouch calling sqrt(n) on every iteration is very expensive. You should either cache this value of use i*i<=n – Peter Lawrey Apr 27 at 6:24
6  
Any c compiler worth its salt will optimize side effect-less leaf function calls--like the above sqrt()--in a loop construct by caching the value. – Patrick Apr 27 at 6:51
1  
It's exponential with respect to the number of bits. You add one bit, and the problem size doubles. – Aziz Apr 28 at 1:52
show 2 more comments
vote up 33 vote down

Simple. Create an integer array, hardcoded with all prime numbers.

Example:

     int prime_numbers[] = { 2, 3, 5, 7, 11, 13, 17, 19... };

Just fill in the prime numbers that come after 19, and you're good to go.

link|flag
7  
my dark side is forcing me to up-vote this answer.. aghh – andyk Apr 27 at 3:05
I believe it was a joke! – jacob Apr 27 at 3:05
that's what he was doing, actually. But he was using "switch" statement. – Aziz Apr 27 at 3:28
9  
First, as a nitpicker: it will not go to eternity. It's finite math. But aside form the limit of 32 bit numbers, the actual number of primes is much less than the total addressable domain. E.g. for the first 1000 numbers, there are only 216 primes. So, given the programming domain at hand, it might be feasible to actually store precalculated primes. Especially in this day and age where we use gigabytes of texture and mesh data and 2 gigs of ram is a commodity. – Moe Apr 27 at 7:19
+1 Excellent! – scraimer Apr 28 at 8:59
show 1 more comment
vote up 15 vote down

There are a large number of primality tests - see Wikipedia for an overview (note the list of test at the bottom). Because it seems you need only small primes and you are not so familar with primes, I would suggest to use the Sieve of Eratosthenes or Trial Division. Or just get an library and don't create your own primality test method.

link|flag
vote up 4 vote down

http://en.wikipedia.org/wiki/Primality_test

link|flag
vote up 4 vote down

Lots of good algorithms and discussion at MathWorld.

link|flag
vote up 2 vote down

Miller-Rabin is what is used most frequently in practice:

http://java.sun.com/j2se/1.4.2/docs/api/java/math/BigInteger.html#isProbablePrime(int)

link|flag
Direct url: java.sun.com/j2se/1.4.2/… – trenton Oct 7 at 23:43

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