pith. machine review for the scientific record. sign in
def

kernel_background

definition
show as:
view math explainer →
module
IndisputableMonolith.ILG.Kernel
domain
ILG
line
254 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.ILG.Kernel on GitHub at line 254.

browse module

All declarations in this module, on Recognition.

explainer page

Tracked in the explainer inventory; generation is lazy so crawlers do not trigger LLM jobs.

open explainer

used by

formal source

 251minimum `J(1) = 0` with zero ledger gradient flow. The recognition operator
 252is at equilibrium on a homogeneous state, so there is no lag and no
 253enhancement. The background Poisson equation is unmodified standard GR. -/
 254@[simp] noncomputable def kernel_background : ℝ := 1
 255
 256@[simp] theorem kernel_background_eq_one : kernel_background = 1 := rfl
 257
 258/-- The Hubble-saturated kernel: an IR cutoff specialization with
 259    `k_min = a · H` (in units where `c = 1`). -/
 260noncomputable def kernel_with_Hubble (P : KernelParams) (a H k : ℝ) : ℝ :=
 261  kernel_perturbation P (a * H) k a
 262
 263/-- The perturbation kernel reduces to the original `kernel` when the
 264    wavenumber is at or above the IR cutoff. -/
 265theorem kernel_perturbation_eq_kernel_of_ge
 266    (P : KernelParams) {k_min k : ℝ} (a : ℝ) (h : k_min ≤ k) :
 267    kernel_perturbation P k_min k a = kernel P k a := by
 268  unfold kernel_perturbation kernel
 269  have hmax : max k_min k = k := max_eq_right h
 270  rw [hmax]
 271
 272/-- The perturbation kernel collapses to the IR-saturated value when
 273    `k ≤ k_min`. -/
 274theorem kernel_perturbation_at_IR_floor
 275    (P : KernelParams) {k_min k : ℝ} (a : ℝ) (h : k ≤ k_min) :
 276    kernel_perturbation P k_min k a = kernel P k_min a := by
 277  unfold kernel_perturbation kernel
 278  have hmax : max k_min k = k_min := max_eq_left h
 279  rw [hmax]
 280
 281/-- The perturbation kernel is positive. -/
 282theorem kernel_perturbation_pos (P : KernelParams) (k_min k a : ℝ) :
 283    0 < kernel_perturbation P k_min k a := by
 284  unfold kernel_perturbation