All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Div of curl eq zero

Space.div_of_curl_eq_zero

Project documentation

Second derivatives distribute coordinate-wise over subtraction (two components for curl). -/ lemma deriv_coord_2nd_sub (f : Space → EuclideanSpace ℝ (Fin 3)) (hf : ContDiff ℝ 2 f) : ∂[u] (fun x => ∂[v] (fun x => f x w) x - ∂[w] (fun x => f x v) x) = (∂[u] (∂[v] (fun x => f x w))) - (∂[u] (∂[w] (fun x => f x v))) := by repeat rw [deriv_eq_fderiv_fun] ext x...

Exact Lean statement

lemma div_of_curl_eq_zero (f : Space → EuclideanSpace ℝ (Fin 3)) (hf : ContDiff ℝ 2 f) :
    ∇ ⬝ (∇ ⨯ f) = 0

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma div_of_curl_eq_zero (f : Space  EuclideanSpace  (Fin 3)) (hf : ContDiff  2 f) :    ∇ ⬝ (∇ ⨯ f) = 0 := by  unfold div curl Finset.sum  ext x  simp only [Fin.isValue, Fin.univ_val_map, List.ofFn_succ, zero_add, Fin.succ_zero_eq_one,    Fin.reduceAdd, Fin.succ_one_eq_two, List.ofFn_zero, Multiset.sum_coe, List.sum_cons,    List.sum_nil, add_zero, Pi.ofNat_apply]  rw [deriv_coord_2nd_sub, deriv_coord_2nd_sub, deriv_coord_2nd_sub]  simp only [Fin.isValue, Pi.sub_apply]  rw [deriv_commute fun x => f x 0, deriv_commute fun x => f x 1,    deriv_commute fun x => f x 2]  simp only [Fin.isValue, sub_add_sub_cancel', sub_self]  repeat    try apply contDiff_euclidean.mp    exact hf
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/SpaceAndTime/Space/Derivatives/Curl.lean:199-213

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