Prime Numbers
A prime number (or simply prime) is a counting number (an integer greater than 0) greater than 1 whose only factors are 1 and itself.
Finding Prime Factors
An obvious way to find a number's prime factors is to try dividing the number by all of the numbers between 2 and 1 less than the number. When a possible factor divides the number evenly, save the factor, divide the number by it, and continue trying more possible factors.
Try the same factor again before moving on in case the number contains more than one copy of the factor.
Some optimisation
don't need to test whether the number is divisible by any even number other than 2 because, if it is divisible by any even number, it is also divisible by 2.
only need to check for factors up to the square root of the number.
Every time dividing the number by a factor, update the upper bound on the possible factors that need to be checked.
Finding Primes
The sieve of Eratosthenes is a simple method to find all of the primes up to a given limit.
Idea is to make a table with one entry for each of the numbers between 2 and the upper limit.
Cross out all of the multiples of 2 (not counting 2 itself).
Then, starting at 2, look through the table to find the next number that is not crossed out (3 in this case).
Cross out all multiples of that value (not counting the value itself).
Note that some of the values may already be crossed out because they were also a multiple of 2.
Repeat this step, finding the next value that is not crossed out and crossing out its multiples until you reach the square root of the upper limit.
At the end any numbers that are not crossed out are prime.
It requires a table with entries for every number that is considered. Therefore uses an unreasonable amount of memory if the numbers are too large.
Testing for Primality
A way to determine whether a number is prime is to use finding prime factors algorithm to try to factor it and if the algorithm doesn't find any factors, then the number is prime.
there is a 50% chance to pick a Fermat wintess.
Last updated