Gradient dist norm Power Series zpow tends To dist Grad norm
Space.gradient_dist_normPowerSeries_zpow_tendsTo_distGrad_norm
Project documentation
A power series which is differentiable everywhere, and in the limit as n → ∞ tends to ‖x‖. -/ def normPowerSeries {d} : ℕ → Space d → ℝ := fun n x => √(‖x‖ ^ 2 + 1/(n + 1)) lemma normPowerSeries_eq (n : ℕ) : normPowerSeries (d := d) n = fun x => √(‖x‖ ^ 2 + 1/(n + 1)) := rfl lemma normPowerSeries_eq_rpow {d} (n : ℕ) : normPowerSeries (d := d) n = fun...
Exact Lean statement
lemma gradient_dist_normPowerSeries_zpow_tendsTo_distGrad_norm {d : ℕ} [NeZero d] (m : ℤ)
(hm : - (d - 1 : ℕ) ≤ m) (η : 𝓢(Space d, ℝ))
(y : EuclideanSpace ℝ (Fin d)) :
Filter.Tendsto (fun n =>
⟪(∇ᵈ (distOfFunction
(fun x : Space d => (normPowerSeries n x) ^ m) (by fun_prop))) η, y⟫_ℝ)
Filter.atTop
(𝓝 (⟪∇ᵈ (distOfFunction (fun x : Space d => ‖x‖ ^ m)
(IsDistBounded.pow m hm)) η, y⟫_ℝ))Formal artifact
Lean source
lemma gradient_dist_normPowerSeries_zpow_tendsTo_distGrad_norm {d : ℕ} [NeZero d] (m : ℤ) (hm : - (d - 1 : ℕ) ≤ m) (η : 𝓢(Space d, ℝ)) (y : EuclideanSpace ℝ (Fin d)) : Filter.Tendsto (fun n => ⟪(∇ᵈ (distOfFunction (fun x : Space d => (normPowerSeries n x) ^ m) (by fun_prop))) η, y⟫_ℝ) Filter.atTop (𝓝 (⟪∇ᵈ (distOfFunction (fun x : Space d => ‖x‖ ^ m) (IsDistBounded.pow m hm)) η, y⟫_ℝ)) := by simp only [distGrad_inner_eq, Distribution.fderivD_apply, distOfFunction_apply] change Filter.Tendsto (fun n => - ∫ (x : Space d), fderiv ℝ η x (basis.repr.symm y) * normPowerSeries n x ^ m) Filter.atTop (𝓝 (- ∫ (x : Space d), fderiv ℝ η x (basis.repr.symm y) * ‖x‖ ^ m)) apply Filter.Tendsto.neg apply MeasureTheory.tendsto_integral_of_dominated_convergence (bound := fun x => |fderiv ℝ η x (basis.repr.symm y)| * ((‖x‖ + 1) ^ m + ‖x‖ ^ m)) · intro n exact IsDistBounded.aeStronglyMeasurable_fderiv_schwartzMap_smul (F := ℝ) (by fun_prop) η _ · have h1 : Integrable (fun x => (fderiv ℝ (⇑η) x) (basis.repr.symm y) * ((‖x‖ + 1) ^ m + ‖x‖ ^ m)) volume := by apply IsDistBounded.integrable_space_fderiv ((IsDistBounded.norm_add_pos_nat_zpow m 1 one_pos).add (IsDistBounded.pow m hm)) refine h1.abs.congr (ae_of_all _ fun x => ?_) simp only [abs_mul] congr 1 exact abs_of_nonneg (by positivity) · intro n filter_upwards [Measure.ae_ne volume 0] with x hx simp [abs_of_nonneg (normPowerSeries_nonneg n x)] exact mul_le_mul_of_nonneg_left (normPowerSeries_zpow_le_norm_sq_add_one n m x hx) (abs_nonneg _) · filter_upwards [Measure.ae_ne volume 0] with x hx exact tendsto_const_nhds.mul ((normPowerSeries_tendsto x hx).zpow₀ m (.inl (norm_ne_zero_iff.mpr hx)))- Project
- Physlib
- License
- Apache-2.0
- Commit
- dd43e9e65791
- Source
- Physlib/SpaceAndTime/Space/Norm/Basic.lean:419-452
Reuse this declaration
Bring the exact result into your workflow
The import identifies the source module. Your project still needs the pinned package dependency shown on this page.
What this badge means
This completion status comes from the project or community source. It has not yet been represented here as an independent rebuild and axiom audit.
Continue in this project
Related declarations
Adiabatic relation log
adiabatic_relation_log
Plain-language statement
Adiabatic relation in logarithmic form: If S(Ua,Va,N) = S(Ub,Vb,N) with N fixed, then c * log (Ua/Ub) + log (Va/Vb) = 0.
Source project: Physlib
Person-level attribution pending.
Adiabatic relation Ua Ub Va Vb
adiabatic_relation_UaUbVaVb
Plain-language statement
Adiabatic relation in product form: If S(Ua,Va,N) = S(Ub,Vb,N) with N fixed, then (Ua/Ub)^c * (Va/Vb) = 1.
Source project: Physlib
Person-level attribution pending.
Deriv Within mean Energy Beta eq neg variance
CanonicalEnsemble.derivWithin_meanEnergy_Beta_eq_neg_variance
Plain-language statement
(∂U/∂β) = -Var(E) for finite systems.
Source project: Physlib
Person-level attribution pending.