All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Space fun of time deriv eq zero

Space.space_fun_of_time_deriv_eq_zero

Project documentation

Curl and time derivative commute. -/ lemma time_deriv_curl_commute (fₜ : Time → Space → EuclideanSpace ℝ (Fin 3)) (t : Time) (x : Space) (hf : ContDiff ℝ 2 ↿fₜ) : ∂ₜ (fun t => (∇ ⨯ fₜ t) x) t = (∇ ⨯ fun x => (∂ₜ (fun t => fₜ t x) t)) x:= by ext i rw [← Time.deriv_euclid] · fin_cases i all_goals simp [curl] rw [Time.deriv_eq, fderiv_fun_sub] simp [← Time.d...

Exact Lean statement

lemma space_fun_of_time_deriv_eq_zero {d} {M} [NormedAddCommGroup M] [NormedSpace ℝ M]
    {f : Time → Space d → M} (hf : Differentiable ℝ ↿f)
    (h : ∀ t x, ∂ₜ (f · x) t = 0) :
    ∃ (g : Space d → M), ∀ t x, f t x = g x

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma space_fun_of_time_deriv_eq_zero {d} {M} [NormedAddCommGroup M] [NormedSpace  M]    {f : Time  Space d  M} (hf : Differentiable  ↿f)    (h :  t x, ∂ₜ (f · x) t = 0) :     (g : Space d  M),  t x, f t x = g x := by  use fun x => f 0 x  intro t x  apply is_const_of_fderiv_eq_zero (f := fun t' => f t' x) (𝕜 := )  · fun_prop  intro t  ext r  simp only [_root_.zero_apply]  trans r.val • (fderiv  (fun t' => f t' x) t) 1  · rw [ map_smul]    congr    ext    simp  rw [ Time.deriv_eq, h t x, smul_zero]
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/SpaceAndTime/TimeAndSpace/Basic.lean:272-288

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