I have this piece of code which checks whether a given number is prime:
If x Mod 2 = 0 Then
Return False
End If
For i = 3 To x / 2 + 1 Step 2
If x Mod i = 0 Then
Return False
End If
Next
Return True
I only use it for numbers 1E7 <= x <= 2E7. However, it is extremely slow - I can hardly check 300 numbers a second, so checking all x's would take more than 23 days...
Could someone give some improvements tips or say what I might be doing redundantly this way?
Thanks a lot.
sqrt(x), notx/2+1. – Oli Charlesworth Feb 13 '11 at 11:20sqrt(x)would take more time to calculate I guess. – pimvdb Feb 13 '11 at 11:21ionly needs to go untilsqrt(x)(note that you only need to compute the square root once, not every iteration of the loop, so it will be faster), notx / 2. That should allow you to test that range a lot faster, but even more faster is the sieve of Eratosthenes. – IVlad Feb 13 '11 at 11:22iinstead ofx– gor Feb 13 '11 at 11:31