Documentation

Mathlib.NumberTheory.SelbergSieve

The Selberg Sieve #

We set up the working assumptions of the Selberg sieve, define the notion of an upper bound sieve and show that every upper bound sieve yields an upper bound on the size of the sifted set. We also define the Λ² sieve and prove that Λ² sieves are upper bound sieves. We then diagonalise the main term of the Λ² sieve.

We mostly follow the treatment outlined by Heath-Brown in the notes to an old graduate course. One minor notational difference is that we write ν(n) in place of ω(n)n.

Results #

Notation #

The SelbergSieve.Notation namespace includes common shorthand for the variables included in the SelbergSieve structure.

References #

We set up a sieve problem as follows. Take a finite set of natural numbers A, whose elements are weighted by a sequence a n. Also take a finite set of primes P, represented by a squarefree natural number. These are the primes that we will sift from our set A. Suppose we can approximate ∑ n ∈ {k ∈ A | d ∣ k}, a n = ν d * X + R d, where X is an approximation to the total size of A and ν is a multiplicative arithmetic function such that 0 < ν p < 1 for all primes p ∣ P.

Then a sieve-type theorem will give us an upper (or lower) bound on the size of the sifted sum ∑ n ∈ {k ∈ support | k.Coprime P}, a n, obtained by removing any elements of A that are a multiple of a prime in P.

  • support : Finset

    The set of natural numbers that is to be sifted. The fundamental lemma yields an upper bound on the size of this set after the multiples of small primes have been removed.

  • prodPrimes :

    The finite set of prime numbers whose multiples are to be sifted from support. We work with their product because it lets us treat nu as a multiplicative arithmetic function. It also plays well with Moebius inversion.

  • prodPrimes_squarefree : Squarefree prodPrimes
  • weights :

    A sequence representing how much each element of support should be weighted.

  • weights_nonneg (n : ) : 0 weights n
  • totalMass :

    An approximation to ∑ i in support, weights i, i.e. the size of the unsifted set. A bad approximation will yield a weak statement in the final theorem.

  • nu d is an approximation to the proportion of elements of support that are a multiple of d

  • nu_pos_of_prime (p : ) : Nat.Prime pp prodPrimes0 < nu p
  • nu_lt_one_of_prime (p : ) : Nat.Prime pp prodPrimesnu p < 1
Instances

    The Selberg upper bound sieve in particular introduces a parameter called the level which gives the user control over the size of the error term.

    Instances

      nu d is an approximation to the proportion of elements of support that are a multiple of d

      Equations

      Pretty printer defined by notation3 command.

      Equations
      • One or more equations did not get rendered due to their size.

      Pretty printer defined by notation3 command.

      Equations
      • One or more equations did not get rendered due to their size.

      The finite set of prime numbers whose multiples are to be sifted from support. We work with their product because it lets us treat nu as a multiplicative arithmetic function. It also plays well with Moebius inversion.

      Equations

      Pretty printer defined by notation3 command.

      Equations
      • One or more equations did not get rendered due to their size.

      A sequence representing how much each element of support should be weighted.

      Equations

      Pretty printer defined by notation3 command.

      Equations
      • One or more equations did not get rendered due to their size.

      An approximation to ∑ i in support, weights i, i.e. the size of the unsifted set. A bad approximation will yield a weak statement in the final theorem.

      Equations

      The set of natural numbers that is to be sifted. The fundamental lemma yields an upper bound on the size of this set after the multiples of small primes have been removed.

      Equations

      Pretty printer defined by notation3 command.

      Equations
      • One or more equations did not get rendered due to their size.

      The level of the sieve controls how many terms we include in the inclusion-exclusion type sum. A higher level will yield a tighter bound for the main term, but will also increase the size of the error term.

      Equations

      Pretty printer defined by notation3 command.

      Equations
      • One or more equations did not get rendered due to their size.

      Lemmas about P.

      Lemmas about ν.

      The weight of all the elements that are a multiple of d.

      Equations

      Pretty printer defined by notation3 command.

      Equations
      • One or more equations did not get rendered due to their size.

      The weight of all the elements that are a multiple of d.

      Equations

      The remainder term in the approximation A_d = ν (d) X + R_d. This is the degree to which nu fails to approximate the proportion of the weight that is a multiple of d.

      Equations

      Pretty printer defined by notation3 command.

      Equations
      • One or more equations did not get rendered due to their size.

      The remainder term in the approximation A_d = ν (d) X + R_d. This is the degree to which nu fails to approximate the proportion of the weight that is a multiple of d.

      Equations

      The weight of all the elements that are not a multiple of any of our finite set of primes.

      Equations
      def SelbergSieve.mainSum [s : BoundingSieve] (muPlus : ) :

      X * mainSum μ⁺ is the main term in the upper bound on sifted_sum.

      Equations
      def SelbergSieve.errSum [s : BoundingSieve] (muPlus : ) :

      errSum μ⁺ is the error term in the upper bound on sifted_sum.

      Equations

      A sequence of coefficients μ+ is upper Moebius if μζμ+ζ. These coefficients then yield an upper bound on the sifted sum.

      Equations