This is an old revision of this page, as edited by 71.36.27.41 (talk) at 03:22, 3 March 2010 (→External links). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
Revision as of 03:22, 3 March 2010 by 71.36.27.41 (talk) (→External links)(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)In mathematics, the Sieve of Eratosthenes (Greek: κόσκινον Ἐρατοσθένους) is a simple, ancient algorithm for finding all prime numbers up to a specified integer. It works efficiently for the smaller primes (below 10 million). It was created by Eratosthenes, an ancient Greek mathematician. However, none of his mathematical works survived - the sieve was described and attributed to Eratosthenes in the Introduction to Arithmetic by Nicomachus.
Algorithm
A prime number is a natural number which has exactly two distinct natural number divisors: 1 and itself.
To find all the prime numbers less than or equal to a given integer n by Eratosthenes' method:
- Create a list of consecutive integers from two to n: (2, 3, 4, ..., n),
- Initially, let p equal 2, the first prime number,
- While enumerating all multiples of p starting from p, strike them off from the original list,
- Find the first number remaining on the list after p (it's the next prime); let p equal this number,
- Repeat steps 3 and 4 until p is greater than n.
- All the remaining numbers in the list are prime.
Example
To find all the prime numbers less than or equal to 30, proceed as follows:
First generate a list of integers from 2 to 30: 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 Strike out the multiples of 2 from the original list starting from 4, resulting in: 2 3 5 7 9 11 13 15 17 19 21 23 25 27 29 The first number in the list after 2 is 3; strike out the multiples of 3 from the original list starting from 9, to get: 2 3 5 7 11 13 17 19 23 25 29 The first number in the list after 3 is 5; strike out the multiples of 5 from the original list starting from 25: 2 3 5 7 11 13 17 19 23 29 The first number in the list after 5 is 7, but 7 squared is 49 which is greater than 30 so the process is finished. The final list consists of all the prime numbers less than or equal to 30.
Algorithm complexity and implementation
The crossing-off of multiples of each found prime number can be started at the square of the number, as lower multiples have already been crossed out during the previous steps.
The complexity of the algorithm is bit operations with a memory requirement of . Time complexity in RAM machine model is operations. The segmented version of the sieve of Eratosthenes, with basic optimizations, uses operations and bits of memory.
David Turner suggested in 1975 that the primes sieve could be represented in a strikingly simple and elegant way in purely functional programming languages. Turner's sieve, which is more closely related to the Euler's sieve below, rendered in Haskell, is:
primes = sieve sieve (p : xs) = p : sieve
Recently, Melissa O'Neill showed that the complexity of Turner's algorithm is significantly worse than the complexity of the classic imperative renditions of the sieve. O'Neill demonstrated a priority queue based rendition of the sieve of Eratosthenes in Haskell with complexity similar to that of the classic imperative implementations.
Mnemonic
A short, albeit imprecise, description of the Sieve of Erastosthenes in verse:
Sift the Twos and sift the Threes,
— Traditional,
The Sieve of Eratosthenes.
When the multiples sublime,
The numbers that remain are Prime.
Euler's Sieve
Euler in his Proof of the Euler product formula for the Riemann zeta function came up with a version of the sieve of Eratosthenes, better in the sense that each number was eliminated exactly once. Unlike Eratosthenes' sieve which strikes off multiples of primes it finds from the same sequence, Euler's sieve works on sequences progressively culled from multiples of the preceding primes:
A) Start with all the natural numbers except '1' which is not a prime: 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 ... ^ B) The leftmost number is prime. Multiply each number in the list by this prime and then discard the products: (4 6 8 10 12 14 16 18 20 22 24 26 28 30 ... ) These are removed: 4 6 8 10 12 14 16 18 20 22 24 26 28 30 These are left: 2 3 5 7 9 11 13 15 17 19 21 23 25 27 29 ... ^ C) The number after the previous prime is also a prime. Multiply by it each number in the new list starting from this prime and then discard the products: (9 15 21 27 33 39 45 51 57 63 69 75 81 87 ...) These are removed: 9 15 21 27 These are left: 2 3 5 7 11 13 17 19 23 25 29 ... ^
Repeat C) indefinitely. On each repetition a new prime is identified (marked by the cursor, ^) until all the primes in the starting list have been found.
Euler's sieve is thus naturally well suited to generating infinite sequences of prime numbers and Turner's sieve is a close rendition of it. Expressed in Haskell, it is:
import Data.OrdList (minus) primes = euler euler (p : xs) = p : euler (xs `minus` map (*p) (p : xs))
Comparing this algorithm with Euler's proof, the primes to the left of the cursor correspond to factors in the left hand side of the equation at each stage of the sifting, whereas the sequence to the right and including the cursor correspond to the series on the right hand side of the equation at each stage (minus the initial one).
When generating only a finite sequence of primes, when we have exceeded the square root of the upper limit of our range, we have the desired sequence of prime numbers. In the example given above that will be achieved when we identify the prime 7, to give our list of all primes less than or equal to 30.
See also
References
- Horsley, Rev. Samuel, F. R. S., "Κόσκινον Ερατοσθένους or, The Sieve of Eratosthenes. Being an Account of His Method of Finding All the Prime Numbers," Philosophical Transactions (1683-1775), Vol. 62. (1772), pp. 327-347.
- The Prime Glossary: "The Sieve of Eratosthenes", http://primes.utm.edu/glossary/page.php?sort=SieveOfEratosthenes, references 16. November 2008.
- Nicomachus, Introduction to Arithmetic, I, 13.
- Pritchard, Paul, "Linear prime-number sieves: a family tree," Sci. Comput. Programming 9:1 (1987), pp. 17–35.
- A. O. L. Atkin and D. J. Bernstein, "Prime sieves using binary quadratic forms", Mathematics of Computation 73 (2004), pp. 1023–1030.
- Turner, David A. SASL language manual. Tech. rept. CS/75/1. Department of Computational Science, University of St. Andrews 1975.
- O'Neill, Melissa E., "The Genuine Sieve of Eratosthenes", Journal of Functional Programming, Published online by Cambridge University Press 09 Oct 2008 doi:10.1017/S0956796808007004.
- Merritt, Doug (December 14, 2008). "Sieve Of Eratosthenes". Retrieved 2009-03-26.
- Nyk¨anen, Matti (October 26, 2007). "An Introduction to Functional Programming with the Programming Language Haskell" (PDF). Retrieved 2009-03-26.
External links
- Analyze the Sieve of Eratosthenes in an online Javascript IDE
- Interactive JavaScript Page
- Sieve of Eratosthenes by George Beck, Wolfram Demonstrations Project.
- Sieve of Eratosthenes in C
- Sieve of Eratosthenes algorithm illustrated and explained. Java and C++ implementations.
- An optimized modern version of a sieve based upon the Sieve of Erastosthenes
Number-theoretic algorithms | |
---|---|
Primality tests | |
Prime-generating | |
Integer factorization | |
Multiplication | |
Euclidean division | |
Discrete logarithm | |
Greatest common divisor | |
Modular square root | |
Other algorithms | |
|