enow.com Web Search

Search results

  1. Results from the WOW.Com Content Network
  2. Trial division - Wikipedia

    en.wikipedia.org/wiki/Trial_division

    An example of the trial division algorithm, using successive integers as trial factors, is as follows (in Python): def trial_division ( n : int ) -> list [ int ]: """Return a list of the prime factors for a natural number.""" a = [] # Prepare an empty list. f = 2 # The first possible factor.

  3. Sieve of Eratosthenes - Wikipedia

    en.wikipedia.org/wiki/Sieve_of_Eratosthenes

    In the example given above that is achieved on identifying 11 as next prime, giving a list of all primes less than or equal to 80. Note that numbers that will be discarded by a step are still used while marking the multiples in that step, e.g., for the multiples of 3 it is 3 × 3 = 9 , 3 × 5 = 15 , 3 × 7 = 21 , 3 × 9 = 27 , ..., 3 × 15 = 45 ...

  4. Integer factorization - Wikipedia

    en.wikipedia.org/wiki/Integer_factorization

    Continuing this process until every factor is prime is called prime factorization; the result is always unique up to the order of the factors by the prime factorization theorem. To factorize a small integer n using mental or pen-and-paper arithmetic, the simplest method is trial division : checking if the number is divisible by prime numbers 2 ...

  5. Generation of primes - Wikipedia

    en.wikipedia.org/wiki/Generation_of_primes

    A prime sieve or prime number sieve is a fast type of algorithm for finding primes. There are many prime sieves. The simple sieve of Eratosthenes (250s BCE), the sieve of Sundaram (1934), the still faster but more complicated sieve of Atkin [1] (2003), sieve of Pritchard (1979), and various wheel sieves [2] are most common.

  6. General number field sieve - Wikipedia

    en.wikipedia.org/wiki/General_number_field_sieve

    The size of the input to the algorithm is log 2 n or the number of bits in the binary representation of n. Any element of the order n c for a constant c is exponential in log n . The running time of the number field sieve is super-polynomial but sub-exponential in the size of the input.

  7. Sieve of Atkin - Wikipedia

    en.wikipedia.org/wiki/Sieve_of_Atkin

    The following is pseudocode which combines Atkin's algorithms 3.1, 3.2, and 3.3 [1] by using a combined set s of all the numbers modulo 60 excluding those which are multiples of the prime numbers 2, 3, and 5, as per the algorithms, for a straightforward version of the algorithm that supports optional bit-packing of the wheel; although not specifically mentioned in the referenced paper, this ...

  8. Pollard's p − 1 algorithm - Wikipedia

    en.wikipedia.org/wiki/Pollard%27s_p_%E2%88%92_1...

    Pollard's p − 1 algorithm is a number theoretic integer factorization algorithm, invented by John Pollard in 1974. It is a special-purpose algorithm, meaning that it is only suitable for integers with specific types of factors; it is the simplest example of an algebraic-group factorisation algorithm .

  9. Computational problem - Wikipedia

    en.wikipedia.org/wiki/Computational_problem

    In theoretical computer science, a computational problem is one that asks for a solution in terms of an algorithm. For example, the problem of factoring "Given a positive integer n, find a nontrivial prime factor of n." is a computational problem that has a solution, as there are many known integer factorization algorithms.