All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Space deriv differentiable time

Space.space_deriv_differentiable_time

Project documentation

Derivatives along space coordinates and time commute. -/ lemma fderiv_time_commute_fderiv_space {M} [NormedAddCommGroup M] [NormedSpace ℝ M] (f : Time → Space d → M) (t dt : Time) (x dx : Space d) (hf : ContDiff ℝ 2 ↿f) : fderiv ℝ (fun t' => fderiv ℝ (fun x' => f t' x') x dx) t dt = fderiv ℝ (fun x' => fderiv ℝ (fun t' => f t' x') t dt) x dx := by trans f...

Exact Lean statement

@[fun_prop]
lemma space_deriv_differentiable_time {d i} {M} [NormedAddCommGroup M] [NormedSpace ℝ M]
    {f : Time → Space d → M} (hf : ContDiff ℝ 2 ↿f) (x : Space d) :
    Differentiable ℝ (fun t => Space.deriv i (f t) x)

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
@[fun_prop]lemma space_deriv_differentiable_time {d i} {M} [NormedAddCommGroup M] [NormedSpace  M]    {f : Time  Space d  M} (hf : ContDiff  2 ↿f) (x : Space d) :    Differentiable  (fun t => Space.deriv i (f t) x) := by  conv =>    enter [2, t];    rw [Space.deriv_eq_fderiv_basis]  apply Differentiable.clm_apply  · have hdd : Differentiable  ↿f := hf.differentiable (by simp)    have h1 (t : Time) : fderiv  (fun x => f t x) x      = fderiv  (↿f) (t, x) ∘L (ContinuousLinearMap.inr  Time (Space d)) := by      ext w      simp only [ContinuousLinearMap.coe_comp, Function.comp_apply, ContinuousLinearMap.inr_apply]      rw [ fderiv_space_eq_fderiv_curry f t x w hdd]    conv =>      enter [2, y]      change fderiv  (fun x => f y x) x      rw [h1]    fun_prop  · fun_prop
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/SpaceAndTime/TimeAndSpace/Basic.lean:185-204

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