All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Deriv comm of curl zero

Space.deriv_comm_of_curl_zero

Project documentation

The homotopy operator is defined as ∫ t in 0..1, (t • x) ⨯ f (t • x). This is the integrand of that function. -/ private noncomputable def homotopyOperatorIntegrand (f : Space → EuclideanSpace ℝ (Fin 3)) : Space → ℝ → EuclideanSpace ℝ (Fin 3) := fun x t => (t • basis.repr x) ⨯ₑ₃ f (t • x) private lemma homotopyOperatorIntegrand_eq (f : Space → Euclidean...

Exact Lean statement

lemma deriv_comm_of_curl_zero (f : Space → EuclideanSpace ℝ (Fin 3)) (hf : Differentiable ℝ f)
    (hcurl : curl f = 0) (x : Space) (i j : Fin 3) :
    ∂[i] f x j = ∂[j] f x i

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma deriv_comm_of_curl_zero (f : Space  EuclideanSpace  (Fin 3)) (hf : Differentiable  f)    (hcurl : curl f = 0) (x : Space) (i j : Fin 3) :    ∂[i] f x j = ∂[j] f x i := by  fin_cases i <;> fin_cases j  any_goals rfl  all_goals    simp only [Fin.reduceFinMk, Fin.isValue, Fin.zero_eta]    rw [ deriv_euclid (by fun_prop),  deriv_euclid (by fun_prop)]    have hcurl' (i : Fin 3) : curl f x i = 0 := by simp [hcurl]  · specialize hcurl' 2    simp [curl] at hcurl'    linear_combination (norm := ring_nf) hcurl'  · specialize hcurl' 1    simp [curl] at hcurl'    linear_combination (norm := ring_nf) -hcurl'  · specialize hcurl' 2    simp [curl] at hcurl'    linear_combination (norm := ring_nf) -hcurl'  · specialize hcurl' 0    simp [curl] at hcurl'    linear_combination (norm := ring_nf) hcurl'  · specialize hcurl' 1    simp [curl] at hcurl'    linear_combination (norm := ring_nf) hcurl'  · specialize hcurl' 0    simp [curl] at hcurl'    linear_combination (norm := ring_nf) -hcurl'
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/SpaceAndTime/Space/Derivatives/Curl.lean:557-583

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