All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Total Time Derivative euler Lagrange equivalenvce

ClassicalMechanics.Lagrangian.totalTimeDerivative_eulerLagrange_equivalenvce

Plain-language statement

Corollary: If L and L' differ by a total time derivative, then the corresponding Euler-Lagrange operators coincide

Exact Lean statement

lemma totalTimeDerivative_eulerLagrange_equivalenvce [CompleteSpace X] (L L' : Time → X → X → ℝ)
    (htot : IsTotalTimeDerivative (L' - L)) (hContDiff : (ContDiff ℝ ∞ ↿L) ∨ (ContDiff ℝ ∞ ↿L'))
    (q : Time → X) (hq : ContDiff ℝ ∞ q) : eulerLagrangeOp L q = eulerLagrangeOp L' q

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma totalTimeDerivative_eulerLagrange_equivalenvce [CompleteSpace X] (L L' : Time  X  X  )    (htot : IsTotalTimeDerivative (L' - L)) (hContDiff : (ContDiff  ∞ ↿L)  (ContDiff  ∞ ↿L'))    (q : Time  X) (hq : ContDiff  ∞ q) : eulerLagrangeOp L q = eulerLagrangeOp L' q := by  rcases (isTotalTimeDerivative_explicit.mp htot) with F, hFContDiff, hEq  have hContDiff_both :  (ContDiff  ∞ ↿L)  (ContDiff  ∞ ↿L') := by    cases hContDiff with      | inl hL =>        constructor        · exact hL        · have h_triv : ↿L' =  ↿L + ↿(L' - L) := by            funext tqv            rcases tqv with t, q', v            rw [Pi.add_apply]            change L' t q' v = L t q' v + (L' - L) t q' v            simp          have h_δL_contDiff := totalTimeDerivative_contDiff htot          rw [h_triv]          exact hL.add h_δL_contDiff      | inr hL' =>        constructor        · have h_triv : ↿L =  ↿L' + ↿(-(L' - L)) := by            funext tqv            rcases tqv with t, q', v            rw [Pi.add_apply]            change L t q' v = L' t q' v + (- (L' - L)) t q' v            simp          have h_δL_contDiff := totalTimeDerivative_contDiff (isTotalTimeDerivative_neg htot)          rw [h_triv]          exact hL'.add h_δL_contDiff        · exact hL'  rw [ euler_lagrange_varGradient L q hq hContDiff_both.left]  rw [ euler_lagrange_varGradient L' q hq hContDiff_both.right]  apply Eq.symm  apply totalTimeDerivative_varGradient_equivalenvce  · exact htot  · exact hq
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/ClassicalMechanics/Lagrangian/TotalDerivativeEquivalence.lean:332-367

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