All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Dist Deriv constant Slice Dist same

Space.distDeriv_constantSliceDist_same

Project documentation

Distributions on Space d.succ from distributions on Space d given a direction i. These distributions are constant on slices in the i direction.. -/ def constantSliceDist {M : Type} [NormedAddCommGroup M] [NormedSpace ℝ M] {d : ℕ} (i : Fin d.succ) : ((Space d) →d[ℝ] M) →ₗ[ℝ] (Space d.succ) →d[ℝ] M where toFun f := f ∘L sliceSchwartz i map_add' f g...

Exact Lean statement

lemma distDeriv_constantSliceDist_same {M : Type} [NormedAddCommGroup M] [NormedSpace ℝ M]
    {d : ℕ} (i : Fin d.succ) (f : (Space d) →d[ℝ] M) :
    distDeriv i (constantSliceDist i f) = 0

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma distDeriv_constantSliceDist_same {M : Type} [NormedAddCommGroup M] [NormedSpace  M]    {d : } (i : Fin d.succ) (f : (Space d) d[] M) :    distDeriv i (constantSliceDist i f) = 0 := by  ext η  simp [constantSliceDist_apply, Space.distDeriv_apply, Distribution.fderivD_apply]  trans f 0; swap  · simp  congr  ext x  simp [sliceSchwartz_apply]  calc _    _ = ∫ r, fderiv  η ((slice i).symm (r, x)) (basis i) := by rfl    _ = ∫ r, fderiv  (fun r => η ((slice i).symm (r, x))) r 1 := by        congr        funext r        rw [basis_self_eq_slice, fderiv_fun_slice_symm_left_apply]        exact η.differentiableAt    _ = ∫ (r : ), (fun r => 1) r * fderiv  (fun r => η ((slice i).symm (r, x))) r 1 := by simp    _ = - ∫ (r : ), fderiv  (fun t => 1) r 1 * (fun r => η ((slice i).symm (r, x))) r := by      rw [integral_mul_fderiv_eq_neg_fderiv_mul_of_integrable]      · simp      · simp        change Integrable (fun r => fderiv  (fun r => η ((slice i).symm (r, x))) r 1) volume        fun_prop      · simp        exact schwartzMap_integrable_slice_symm i η x      · fun_prop      · fun_prop  simp
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/SpaceAndTime/Space/ConstantSliceDist.lean:585-613

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