Selberg Weights #
This module defines the permitted residue classes $localInterval$ and the global surviving set $A$, as well as the indicator function $f(x)$ for survivors in the Krafft Sieve.
Definition of the permitted residue classes localInterval. Define the set of permitted residue classes for each prime as $localInterval = (\mathbb{Z}/p_i\mathbb{Z}) \setminus \{\pm r_i \pmod{p_i}\}$.
Equations
- KrafftSieve.localInterval n r i = {x : ZMod (KrafftSieve.p n i) | x ≠ ↑(r i) ∧ x ≠ -↑(r i)}
Instances For
Definition of the global set of surviving residues A. Define the global set of surviving residues $A \subseteq \mathbb{Z}/q\mathbb{Z}$ such that $x \in A$ if and only if $x \pmod{p_i} \in localInterval$ for all $1 \le i \le w$.
Equations
- KrafftSieve.A n r = {x : ZMod (KrafftSieve.q n) | ∀ (i : Fin (KrafftSieve.w n)), x.cast ∈ KrafftSieve.localInterval n r i}
Instances For
Definition of the indicator function f. Define the indicator function $f : \mathbb{Z}/q\mathbb{Z} \to \mathbb{R}$ such that $f(x) = 1$ if $x \in A$, and $f(x) = 0$ otherwise.
Equations
- KrafftSieve.f n r x = if x ∈ KrafftSieve.A n r then 1 else 0
Instances For
Additive Sieve Equivalence: Prove that an integer $x \in \mathcal{A}_n$ survives the Krafft sieve (meaning both $6x-1$ and $6x+1$ are prime) if and only if its global hit counter is exactly zero: $$ c(x) = 0 \iff x \text{ survives the Krafft sieve} $$
Non-negative Hits: Using the definition of $g_i(x)$ and $c(x)$, prove that for any $x$, the hit counter is non-negative: $c(x) \ge 0$. Furthermore, note that because $c(x)$ is a sum of indicator functions, if $c(x) < 1$, then $c(x) = 0$.
The Weighted Existence Principle: Assume there exists a specific configuration such that $sum2(n, W) < sum1(n, W)$. Prove that there must exist at least one integer $x \in \mathcal{A}_n$ such that $W(x) > 0$ and $c(x) = 0$.
Definition of the Krafft Sufficiency condition Existence of a weight function $W$ such that $sum2(n, W) < sum1(n, W)$.
Equations
- One or more equations did not get rendered due to their size.