pith. machine review for the scientific record. sign in
theorem proved term proof high

poisson_background_independent_of_kernel

show as:
view Lean formalization →

The background solution to the modified Poisson equation decouples from kernel parameters when perturbation inputs vanish. Cosmologists using ILG models cite this to justify treating the homogeneous background separately from kernel-dependent corrections in Fourier space. The proof is a direct unfolding of the full operator followed by simplification that cancels all kernel terms.

claimFor any kernel parameters $P$ and real numbers $a, bar rho$, the full Poisson operator with vanishing perturbation density and kernel adjustment equals the background Poisson operator: $mathcal{P}_{text{full}}(P, 0, 0, a, bar rho, 0) = mathcal{P}_{text{background}}(a, bar rho)$.

background

The module defines the modified Poisson equation as a Fourier-space multiplier and proves stability and scaling bounds relative to standard GR. The BIT kernel function supplies the multiplier, taking constant, inverse-one-plus-z, or exponential forms. Upstream structures supply nuclear densities on phi-tiers and ledger factorizations that calibrate the J-cost underlying the operator.

proof idea

One-line wrapper that unfolds poisson_operator_full and poisson_operator_perturbation then applies simp to reduce directly to the background operator.

why it matters in Recognition Science

Supplies the background_indep field for the causalityBoundsPoissonCert record in the same module. It closes the Poisson-with-kernel target by confirming the homogeneous background is kernel-independent, aligning with the Recognition Science forcing chain where background quantities occupy fixed phi-ladders.

scope and limits

Lean usage

background_indep := poisson_background_independent_of_kernel

formal statement (Lean)

  94@[simp] theorem poisson_background_independent_of_kernel
  95    (P : KernelParams) (a ρ_bar : ℝ) :
  96    poisson_operator_full P 0 0 a ρ_bar 0
  97      = poisson_operator_background a ρ_bar := by

proof body

Term-mode proof.

  98  unfold poisson_operator_full poisson_operator_perturbation
  99  simp
 100
 101/-- The perturbation kernel inside `poisson_operator_perturbation` is
 102bounded above by its IR-saturated value. This is the operator-level
 103restatement of `kernel_perturbation_bounded_above`: the multiplier in
 104front of `δρ/k²` is uniformly bounded above by a finite ceiling fixed by
 105the IR cutoff, so the perturbation operator does not run away as
 106`k → 0`. -/

used by (1)

From the project-wide theorem graph. These declarations reference this one in their body.

depends on (20)

Lean names referenced from this declaration's body.