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' qFormal artifact
Lean source
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
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.
Source project: Physlib
Person-level attribution pending.
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.
Source project: Physlib
Person-level attribution pending.
Deriv Within mean Energy Beta eq neg variance
CanonicalEnsemble.derivWithin_meanEnergy_Beta_eq_neg_variance
Plain-language statement
(∂U/∂β) = -Var(E) for finite systems.
Source project: Physlib
Person-level attribution pending.