All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Fderiv space eq fderiv curry

Space.fderiv_space_eq_fderiv_curry

Project documentation

The spatial projection is nonexpanding for the product metric. -/ lemma dist_space_le (tx ty : TimeAndSpace d) : dist (space tx) (space ty) ≤ dist tx ty := by rw [Prod.dist_eq] exact le_max_right _ _ end TimeAndSpace namespace Space /-! ### A.2. Space and time derivatives in terms of curried functions

Exact Lean statement

lemma fderiv_space_eq_fderiv_curry {M} [NormedAddCommGroup M] [NormedSpace ℝ M]
    (f : Time → Space d → M) (t : Time) (x dx : Space d)
    (hf : Differentiable ℝ ↿f) :
    fderiv ℝ (fun x' => f t x') x dx = fderiv ℝ ↿f (t, x) (0, dx)

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma fderiv_space_eq_fderiv_curry {M} [NormedAddCommGroup M] [NormedSpace  M]    (f : Time  Space d  M) (t : Time) (x dx : Space d)    (hf : Differentiable  ↿f) :    fderiv  (fun x' => f t x') x dx = fderiv  ↿f (t, x) (0, dx) := by  change fderiv  (↿f ∘ fun x' => (t, x')) x dx = _  rw [fderiv_comp, DifferentiableAt.fderiv_prodMk]  simp only [ContinuousLinearMap.coe_comp, Function.comp_apply, fderiv_fun_const, Pi.zero_apply,    fderiv_fun_id, ContinuousLinearMap.prod_apply, _root_.zero_apply,    ContinuousLinearMap.coe_id', id_eq]  repeat' fun_prop
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/SpaceAndTime/TimeAndSpace/Basic.lean:119-128

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