kernel
The ILG kernel supplies the weighting function w(k,a) = 1 + C (max(0.01, a/(k τ₀)))^α for wavenumber k and scale factor a in infra-luminous gravity models. Researchers constructing Duhamel integrals for 2D fluid continuum limits or universal equilibrium response certificates cite this definition when assembling integral operators. It is realized by a direct arithmetic expression that inserts a numerical safeguard to avoid zero denominators.
claim$w(k,a) = 1 + C (max(0.01, a/(k τ₀)))^α$, where $C$, $α$, and $τ₀$ are the amplitude, exponent, and reference time supplied by the KernelParams structure.
background
The module formalizes the Infra-Luminous Gravity kernel w(k,a) = 1 + C (a/(k τ₀))^α, with exponent α = (1 - 1/φ)/2 taken from self-similarity. KernelParams is the structure that packages alpha, C, and tau0 together with the positivity hypothesis 0 < tau0. Upstream, tau0 is the fundamental tick duration imported from Constants.tau0 and from the BIT kernel families, which supply analogous constant, inverse-linear, and exponential kernels for comparison.
proof idea
This is a one-line wrapper that directly evaluates the arithmetic expression 1 + P.C * (max 0.01 (a / (k * P.tau0))) ^ P.alpha using the three fields of the KernelParams structure.
why it matters in Recognition Science
The definition is invoked inside universalResponseCert to furnish the kernel component of the UniversalResponseCert structure and inside DuhamelKernelDominatedConvergenceAt and duhamelKernelIntegral for the 2D continuum limit. It supplies the concrete weighting required by the CPM coercivity constants and the ILG exponent derived from the Recognition Science self-similar fixed point.
scope and limits
- Does not prove positivity or monotonicity of w(k,a).
- Does not treat the singular case k = 0 analytically.
- Does not evaluate the expression against CODATA constants.
- Does not derive the exponent α from the J-uniqueness relation.
formal statement (Lean)
79noncomputable def kernel (P : KernelParams) (k a : ℝ) : ℝ :=
proof body
Definition body.
80 1 + P.C * (max 0.01 (a / (k * P.tau0))) ^ P.alpha
81
82/-- Simplified kernel when k = 1 (reference wavenumber). -/
used by (40)
-
universalResponseCert -
UniversalResponseCert -
DuhamelKernelDominatedConvergenceAt -
duhamelKernelDominatedConvergenceAt_of_forcing -
duhamelKernelIntegral -
duhamelRemainderOfGalerkin_integratingFactor -
duhamelRemainderOfGalerkin_kernel -
ForcingDominatedConvergenceAt -
ForcingDominatedConvergenceAt -
galerkin_duhamelKernel_identity -
galerkinNS_hasDerivAt_duhamelRemainder_mode -
nsDuhamelCoeffBound -
nsDuhamelCoeffBound_galerkinKernel -
nsDuhamelCoeffBound_galerkinKernel_of_forcing -
nsDuhamelCoeffBound_kernelIntegral -
nsDuhamel_of_forall -
nsDuhamel_of_forall_kernelIntegral -
nsDuhamel_of_forall_kernelIntegral_of_forcing -
tendsto_duhamelKernelIntegral_of_dominated_convergence -
rs_implies_global_regularity_2d_nsDuhamelCoeffBound -
rs_implies_global_regularity_2d_nsDuhamelCoeffBound_galerkinKernel -
laplacian_form_nonneg -
BITKernelFamiliesCert -
constant_kernel_eq_one -
exp_kernel_pos -
inv_one_plus_z_pos -
kernel -
kernel_at_zero -
name -
w_eff