All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Dist Laplacian dist Of Function norm zpow

Space.distLaplacian_distOfFunction_norm_zpow

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 distLaplacian_distOfFunction_norm_zpow {d : ℕ} [NeZero d] (m : ℤ)
    (hdiv : 0 < m - 2 + (d : ℤ)) :
    Δᵈ (distOfFunction (fun x : Space d => ‖x‖ ^ m)
      (IsDistBounded.pow m (by omega))) =
      (((m : ℝ) * (((m - 2 + d : ℤ) : ℝ))) •
        distOfFunction (fun x : Space d => ‖x‖ ^ (m - 2))
          (IsDistBounded.pow (m - 2) (by omega)))

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma distLaplacian_distOfFunction_norm_zpow {d : } [NeZero d] (m : )    (hdiv : 0 < m - 2 + (d : )) :    Δᵈ (distOfFunction (fun x : Space d => ‖x‖ ^ m)      (IsDistBounded.pow m (by omega))) =      (((m : ) * (((m - 2 + d : ) : ))) •        distOfFunction (fun x : Space d => ‖x‖ ^ (m - 2))          (IsDistBounded.pow (m - 2) (by omega))) := by  rw [distLaplacian, LinearMap.comp_apply, distGrad_distOfFunction_norm_zpow m (by omega)]  have hdist :      distOfFunction (fun x : Space d => (m * ‖x‖ ^ (m - 2)) • basis.repr x)          (by            simp [ smul_smul]            refine IsDistBounded.const_fun_smul ?_ ↑m            apply IsDistBounded.zpow_smul_repr_self            omega) =        (m : ) • distOfFunction          (fun x : Space d => ‖x‖ ^ (m - 2) • basis.repr x)          (IsDistBounded.zpow_smul_repr_self (m - 2) (by omega)) := by    convert distOfFunction_smul_fun      (fun x : Space d => ‖x‖ ^ (m - 2) • basis.repr x)      (IsDistBounded.zpow_smul_repr_self (m - 2) (by omega)) (m : ) using 1    ext x    simp [smul_smul]  rw [hdist, map_smul, distDiv_norm_zpow_smul_repr_self_eq_smul (m - 2) hdiv, smul_smul]
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/SpaceAndTime/Space/Norm/Basic.lean:916-939

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

Project-declaredLean 4.32.0

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.

physicsquantum field theoryrelativity

Source project: Physlib

Person-level attribution pending.

View proof record
Project-declaredLean 4.32.0

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.

physicsquantum field theoryrelativity

Source project: Physlib

Person-level attribution pending.

View proof record