All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Equation Of Motion tfae

ClassicalMechanics.HarmonicOscillator.equationOfMotion_tfae

Project documentation

The operator on the momentum-position phase-space whose vanishing is equivalent to the hamilton's equations between the momentum and position. -/ noncomputable def hamiltonEqOp (p : Time → EuclideanSpace ℝ (Fin 1)) (q : Time → EuclideanSpace ℝ (Fin 1)) := ClassicalMechanics.hamiltonEqOp (hamiltonian S) p q /-! ### G.5. Equation of motion if and only if Ha...

Exact Lean statement

lemma equationOfMotion_tfae (xₜ : Time → EuclideanSpace ℝ (Fin 1)) (hx : ContDiff ℝ ∞ xₜ) :
    List.TFAE [S.EquationOfMotion xₜ,
      (∀ t, S.m • ∂ₜ (∂ₜ xₜ) t = force S (xₜ t)),
      hamiltonEqOp S (fun t => S.toCanonicalMomentum t (xₜ t) (∂ₜ xₜ t)) xₜ = 0,
      (δ (q':=xₜ), ∫ t, lagrangian S t (q' t) (fderiv ℝ q' t 1)) = 0,
      (δ (pq':= fun t => (S.toCanonicalMomentum t (xₜ t) (∂ₜ xₜ t), xₜ t)),
        ∫ t, ⟪(pq' t).1, ∂ₜ (Prod.snd ∘ pq') t⟫_ℝ - S.hamiltonian t (pq' t).1 (pq' t).2) = 0]

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma equationOfMotion_tfae (xₜ : Time  EuclideanSpace  (Fin 1)) (hx : ContDiff  ∞ xₜ) :    List.TFAE [S.EquationOfMotion xₜ,      ( t, S.m • ∂ₜ (∂ₜ xₜ) t = force S (xₜ t)),      hamiltonEqOp S (fun t => S.toCanonicalMomentum t (xₜ t) (∂ₜ xₜ t)) xₜ = 0,      (δ (q':=xₜ), ∫ t, lagrangian S t (q' t) (fderiv  q' t 1)) = 0,      (δ (pq':= fun t => (S.toCanonicalMomentum t (xₜ t) (∂ₜ xₜ t), xₜ t)),        ∫ t, ⟪(pq' t).1, ∂ₜ (Prod.snd ∘ pq') t⟫_ - S.hamiltonian t (pq' t).1 (pq' t).2) = 0] := by  rw [ equationOfMotion_iff_hamiltonEqOp_eq_zero,  equationOfMotion_iff_newtons_2nd_law]  rw [hamiltons_equations_varGradient, euler_lagrange_varGradient]  simp only [List.tfae_cons_self]  rw [ gradLagrangian_eq_eulerLagrangeOp,  equationOfMotion_iff_gradLagrangian_zero]  simp only [List.tfae_cons_self]  erw [ equationOfMotion_iff_hamiltonEqOp_eq_zero]  simp only [List.tfae_cons_self, List.tfae_singleton]  repeat fun_prop  simp [toCanonicalMomentum_eq]  repeat fun_prop
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/ClassicalMechanics/HarmonicOscillator/Basic.lean:759-775

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