def
definition
kernel
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.ILG.Kernel on GitHub at line 79.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
-
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 -
aczel_kernel_smooth -
aczelRegularityKernel -
AczelRegularityKernel -
H_dAlembert_of_composition -
primitive_to_uniqueness_of_kernel -
applyHessian_eq_direction -
logSpiral_ne_zero -
falsifierTriggered -
FieldVelocity -
log_aczel_data_of_laws
formal source
76 w(k, a) = 1 + C · (a / (k τ₀))^α
77
78We use max with a small ε to avoid division issues when k τ₀ = 0. -/
79noncomputable def kernel (P : KernelParams) (k a : ℝ) : ℝ :=
80 1 + P.C * (max 0.01 (a / (k * P.tau0))) ^ P.alpha
81
82/-- Simplified kernel when k = 1 (reference wavenumber). -/
83noncomputable def kernelAtRefK (P : KernelParams) (a : ℝ) : ℝ :=
84 1 + P.C * (max 0.01 (a / P.tau0)) ^ P.alpha
85
86@[simp] lemma kernelAtRefK_eq (P : KernelParams) (a : ℝ) :
87 kernelAtRefK P a = kernel P 1 a := by
88 simp [kernelAtRefK, kernel, one_mul]
89
90/-! ## Basic Properties -/
91
92/-- Kernel is always positive for valid parameters. -/
93theorem kernel_pos (P : KernelParams) (k a : ℝ) : 0 < kernel P k a := by
94 unfold kernel
95 have hmax_pos : 0 < max 0.01 (a / (k * P.tau0)) := by
96 apply lt_max_of_lt_left
97 norm_num
98 have hpow_nonneg : 0 ≤ (max 0.01 (a / (k * P.tau0))) ^ P.alpha :=
99 Real.rpow_nonneg (le_of_lt hmax_pos) P.alpha
100 have hcorr_nonneg : 0 ≤ P.C * (max 0.01 (a / (k * P.tau0))) ^ P.alpha :=
101 mul_nonneg P.C_nonneg hpow_nonneg
102 linarith
103
104/-- Kernel is at least 1. -/
105theorem kernel_ge_one (P : KernelParams) (k a : ℝ) : 1 ≤ kernel P k a := by
106 unfold kernel
107 have hmax_pos : 0 < max 0.01 (a / (k * P.tau0)) := by
108 apply lt_max_of_lt_left
109 norm_num