All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Kinetic Energy deriv

ClassicalMechanics.HarmonicOscillator.kineticEnergy_deriv

Project documentation

The energy of the harmonic oscillator is the kinetic energy plus the potential energy. -/ noncomputable def energy (xₜ : Time → EuclideanSpace ℝ (Fin 1)) : Time → ℝ := fun t => kineticEnergy S xₜ t + potentialEnergy S (xₜ t) /-! ### C.2. Simple equalities for the energies -/ lemma kineticEnergy_eq (xₜ : Time → EuclideanSpace ℝ (Fin 1)) : kineticEnergy S x...

Exact Lean statement

lemma kineticEnergy_deriv (xₜ : Time → EuclideanSpace ℝ (Fin 1)) (hx : ContDiff ℝ ∞ xₜ) :
    ∂ₜ (kineticEnergy S xₜ) = fun t => ⟪∂ₜ xₜ t, S.m • ∂ₜ (∂ₜ xₜ) t⟫_ℝ

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma kineticEnergy_deriv (xₜ : Time  EuclideanSpace  (Fin 1)) (hx : ContDiff  ∞ xₜ) :    ∂ₜ (kineticEnergy S xₜ) = fun t => ⟪∂ₜ xₜ t, S.m • ∂ₜ (∂ₜ xₜ) t⟫_ := by  funext t  unfold kineticEnergy  have hd : DifferentiableAt  (∂ₜ xₜ) t :=    (deriv_differentiable_of_contDiff xₜ hx).differentiableAt  rw [Time.deriv_eq, fderiv_const_mul (by fun_prop), _root_.smul_apply,    fderiv_inner_apply (𝕜 := ) hd hd,  Time.deriv_eq]  simp [inner_smul_right, real_inner_comm]  ring
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/ClassicalMechanics/HarmonicOscillator/Basic.lean:250-259

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