structure
definition
SelfSimilarKernel
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.ILG.Kernel on GitHub at line 185.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
formal source
182/-! ## Self-Similarity Derivation of α -/
183
184/-- Structure encoding the self-similarity assumption for α derivation. -/
185structure SelfSimilarKernel where
186 /-- The kernel exponent -/
187 alpha : ℝ
188 /-- Self-similarity: kernel at scale φ·a equals kernel at a scaled by φ^α -/
189 self_similar : ∀ (P : KernelParams) (k a : ℝ), P.alpha = alpha →
190 kernel P k (phi * a) = 1 + P.C * phi ^ alpha * (max 0.01 (a / (k * P.tau0))) ^ alpha
191
192/-- From self-similarity and the fixed-point equation φ² = φ + 1,
193 we can derive constraints on α. This is a placeholder for the full derivation. -/
194theorem alpha_from_self_similarity (hSS : SelfSimilarKernel)
195 (h_constraint : hSS.alpha = (1 - 1 / phi) / 2) :
196 hSS.alpha = alphaLock := by
197 simp [h_constraint, alphaLock]
198
199/-! ## Causality bounds (Beltracchi 2026 resolution)
200
201Two pathologies of the literal Riemann–Liouville / Fourier-only ILG formulation
202were identified by P. Beltracchi (April 2026 internal note):
203
2041. **Cumulative-time growth.** Reading the time-domain RL form
205 `ρ_eff(t) = ρ(t) + C τ₀⁻ᵅ Iᵅ[ρ(t)]` literally for an isolated mass `M`,
206 the gravitational acceleration grows as `t^α` without bound.
207
2082. **Infrared divergence.** The Fourier-space kernel
209 `w(k,a) = 1 + C (a / (k τ₀))^α` diverges as `k → 0`, making the
210 homogeneous-background limit incoherent and naive perturbation theory
211 ill-defined.
212
213Both pathologies are forced by reading the kernel as (i) a cumulative-time
214convolution and (ii) a free-running k-space multiplier. The resolution from
215the recognition-operator forcing chain is structural: