All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Constant Time dist Time Deriv

Space.constantTime_distTimeDeriv

Project documentation

Distributions on Time × Space d from distributions on Space d. These distributions are constant in time. -/ def constantTime {M : Type} [NormedAddCommGroup M] [NormedSpace ℝ M] {d : ℕ} : ((Space d) →d[ℝ] M) →ₗ[ℝ] (Time × Space d) →d[ℝ] M where toFun f := f ∘L timeIntegralSchwartz map_add' f g := by ext η simp map_smul' c f := by ext η simp lemma const...

Exact Lean statement

@[simp]
lemma constantTime_distTimeDeriv {M : Type} [NormedAddCommGroup M] [NormedSpace ℝ M] {d : ℕ}
    (f : (Space d) →d[ℝ] M) :
    Space.distTimeDeriv (constantTime f) = 0

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
@[simp]lemma constantTime_distTimeDeriv {M : Type} [NormedAddCommGroup M] [NormedSpace  M] {d : }    (f : (Space d) d[] M) :    Space.distTimeDeriv (constantTime f) = 0 := by  ext η  simp [Space.distTimeDeriv_apply, fderivD_apply, constantTime_apply]  suffices h : (timeIntegralSchwartz ((SchwartzMap.evalCLM  (Time × Space d)  (1, 0))      ((fderivCLM  (Time × Space d) ) η))) = 0 by    rw [h]    simp  ext x  rw [timeIntegralSchwartz_apply]  calc _    _ = ∫ (t : Time), fderiv  η (t, x) (1, 0) := by rfl    _ = ∫ (t : Time), fderiv  (fun t => η (t, x)) t 1 := by      congr      funext t      change _ = (fderiv  (η ∘ fun t => (t, x)) t) 1      rw [fderiv_comp, DifferentiableAt.fderiv_prodMk]      simp only [fderiv_fun_id, fderiv_fun_const, Pi.zero_apply,        ContinuousLinearMap.coe_comp, Function.comp_apply, ContinuousLinearMap.prod_apply,        ContinuousLinearMap.coe_id', id_eq, _root_.zero_apply]      · fun_prop      · fun_prop      · apply Differentiable.differentiableAt        exact η.smooth'.differentiable (by simp)      · fun_prop    _ = ∫ (t : Time), (fun t => 1) t * fderiv  (fun t => η (t, x)) t 1 := by simp    _ = - ∫ (t : Time), fderiv  (fun t => 1) t 1 * (fun t => η (t, x)) t := by      rw [integral_mul_fderiv_eq_neg_fderiv_mul_of_integrable]      · simp      · conv_lhs =>          enter [t]          simp only [one_mul]          change (fderiv  (η ∘ fun t => (t, x)) t) 1          rw [fderiv_comp _ (by            apply Differentiable.differentiableAt            exact η.smooth'.differentiable (by simp))            (by fun_prop), DifferentiableAt.fderiv_prodMk (by fun_prop) (by fun_prop)]          simp only [fderiv_fun_id, fderiv_fun_const, Pi.ofNat_apply,            ContinuousLinearMap.comp_apply, ContinuousLinearMap.prod_apply,            ContinuousLinearMap.id_apply, _root_.zero_apply]        exact integrable_time_integral (LineDeriv.lineDerivOpCLM  _ ((1, 0) : Time × Space d) η) x      · simp        exact integrable_time_integral η x      · fun_prop      · fun_prop  simp
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/SpaceAndTime/TimeAndSpace/ConstantTimeDist.lean:963-1010

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