New Reply

C++ prime testing

 
Share Thread
Apr4-12, 03:28 PM   #1
 

C++ prime testing


Alright. I know how incredibly inefficient this algorithm is, but I felt like giving this a whirl.

#include <iostream>
#include <cmath>
using namespace std;

bool prime(int x)
{
bool j = true;
for (double i = 2;i == x;i++)
{
if (x/i == floor(x/i))
{
j = false;
}
}
return j;
}

int main()
{
cout << prime(4) << endl;
return 0;
}

It returns "1" (true.) Why is this? Obviously, an error on my part.
PhysOrg.com science news on PhysOrg.com

>> City-life changes blackbird personalities, study shows
>> Origins of 'The Hoff' crab revealed (w/ Video)
>> Older males make better fathers: Mature male beetles work harder, care less about female infidelity
Apr4-12, 03:29 PM   #2
 
This is one of the times I wish I could delete my own threads. I used = instead of ==. Still not working. Edited the original post.
Apr4-12, 03:32 PM   #3
 
Quote by Whovian View Post
This is one of the times I wish I could delete my own threads. I used = instead of ==.
Don't worry about it. It's a classic mistake.
Apr4-12, 03:39 PM   #4
 

C++ prime testing


I managed to figure the new problem out, I used == when I should've used !=. These =, ==, and != are killing me! :)
Apr4-12, 04:17 PM   #5
 
You can write it like this if you want.

Code:
for (double i = 2;i != x;i++)
    if (x/i == floor(x/i))
        j = false;
And you could do do it this way instead also

Code:
for (int i = 2; i != x; i++)
    if ((x % i)==0)  
        j = false;
Apr4-12, 04:23 PM   #6
 
Now, for fun, I decided to see if I could make a perfect number tester. What's wrong with this function?

Code:
bool perfect (int x)
{
	int y = 0;
	for (double i = 2;i != x;i++)
	{
		if (x/i == floor(x/i))
		{
			y = y + i;
			}
		}
	return (y == x);
	}
Whatever I input, it returns 0.

EDIT: Figured it out. *bashes head against wall* I started counting factors at 2, not 1.

EDIT: And it's still looking for 33550336.
Apr4-12, 04:54 PM   #7
 
Quote by Whovian View Post
EDIT: And it's still looking for 33550336.
I don't know the specifics, maybe someone else can help me out about this, but I would think that a comparison between a double and an integer as a loop condition might be problematic.

Integers are exact values while doubles are approximate values.

It seams possible that as you add up i's as doubles, you might end up with a loss of precision enough that i != x when you would expect it to and you will get stuck in an infinite loop.

I just did a test and found that

2.0000000000000001==2 , but
2.000000000000001 !=2
Apr4-12, 05:05 PM   #8
 
I just ran a test and found this out.
Code:
int x=2;
double y=2;

for ( int i=0; i < 29; ++i){
    y+=y;  //equivalent to y=y+y;
    x+=x;
}

if (x==y) 
    cout << "yes";
Turns out that after 29 additions
Code:
x==y
, but after 30,
Code:
x!=y
If you use the modulus operator then you will have no problems

Code:
(x % i) == //The integer remainder of x/i, which is zero if i is a factor of x.
Apr4-12, 05:23 PM   #9
 
a/b == floor(a/b) is ugly to begin with. Those modulus operators don't exist for no reason.
Apr4-12, 05:43 PM   #10

Math 2012
 
Recognitions:
Science Advisor Science Advisor
Quote by jreelawg View Post
I just ran a test and found this out.
Code:
int x=2;
double y=2;

for ( int i=0; i < 29; ++i){
    y+=y;  //equivalent to y=y+y;
    x+=x;
}

if (x==y) 
    cout << "yes";
Turns out that after 29 additions
Code:
x==y
, but after 30,
Code:
x!=y
If you print out the value of x and y at each iteration, you mgiht be surprised as to which of x and y is accurate and which is not...
... but you shouldn't really be surprised that if x is a 32-bit signed integer, it can't hold a number bigger than 231.

On the other hand a double can hold integers up to about 252 exactly, so sometimes storing integer values in doubles wins over storing them in integers.

Try the same code with "long x = 2" (if your implementation uses 64-bit long integers) to see when that falls over. Actually, it might work beyond 52 iterations, because a double can hold integer powers of 2 exactly right up to the maximum value for a double, which is bigger than 10300. But C++ it won't necessarily print those values accurately to 300 digits precision, of course.
Apr4-12, 10:20 PM   #11
 
"long long" is always at least 64 bits wide on any x86 arch, if not 128. Use long long if you need more range, but stay away from floating point numbers.

Use % to check for remainder. For example, if i % p == 0, then p divides i and i isn't prime if p is any number but i or 1.

Also, if you need guaranteed width, look at cstdint.
Apr5-12, 04:58 AM   #12
 
Quote by TylerH View Post
"long long" is always at least 64 bits wide on any x86 arch, if not 128. Use long long if you need more range, but stay away from floating point numbers.
In my experience, it's 64 bits on most compilers: http://gcc.gnu.org/ml/gcc/2004-03/msg01251.html.

"64 bits ought to be anything for anyone." - Me.
Apr6-12, 05:15 AM   #13
 
When comparing doubles (floating point numbers in general), you should compare to within an error bound to account for small variances in precision.

Example:

Code:
double x, y;
epsilon = 0.000000005 // error bound

// some code assigning values to x and y

if(abs(x - y) < epsilon) // absolute value keeps the result of x - y positive for comparison with the error bound
{
  // they are 'equal', or close enough
}
else
{
  // they are not equal
}
Apr6-12, 09:39 AM   #14
 
Quote by Hobin View Post
a/b == floor(a/b) is ugly to begin with. Those modulus operators don't exist for no reason.
Oh! Modulus! Why didn't I think of that?
New Reply

Similar discussions for: C++ prime testing
Thread Forum Replies
K-th Prime Proofs & Co-Prime Numbers Linear & Abstract Algebra 4
a prime number which equals prime numbers General Math 10
A formula of prime numbers for interval (q; (q+1)^2), where q is prime number. Linear & Abstract Algebra 0
Prime Numbers in the Diophantine equation q=(n^2+1)/p and p is Prime Linear & Abstract Algebra 5
Efficiency: prime test vs prime generator Linear & Abstract Algebra 14