All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Acceleration eq of equation Of Motion

ClassicalMechanics.DampedHarmonicOscillator.acceleration_eq_of_equationOfMotion

Plain-language statement

Solving the equation of motion for the acceleration: along a solution the second derivative is -(k/m) x - (γ/m) ẋ.

Exact Lean statement

lemma acceleration_eq_of_equationOfMotion (z : Time → EuclideanSpace ℝ (Fin 1))
    (hEOM : S.EquationOfMotion z) (t : Time) :
    ∂ₜ (∂ₜ z) t = (-(S.m⁻¹ * S.k)) • z t + (-(S.m⁻¹ * S.γ)) • ∂ₜ z t

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma acceleration_eq_of_equationOfMotion (z : Time  EuclideanSpace  (Fin 1))    (hEOM : S.EquationOfMotion z) (t : Time) :    ∂ₜ (∂ₜ z) t = (-(S.m⁻¹ * S.k)) • z t + (-(S.m⁻¹ * S.γ)) • ∂ₜ z t := by  have hm : S.m  0 := S.m_ne_zero  have hsum : S.m • ∂ₜ (∂ₜ z) t + (S.γ • ∂ₜ z t + S.k • z t) = 0 := by    rw [ add_assoc]; exact hEOM t  have hma : S.m • ∂ₜ (∂ₜ z) t = -(S.k • z t) - S.γ • ∂ₜ z t := by    rw [eq_neg_of_add_eq_zero_left hsum]; module  have hkey : ∂ₜ (∂ₜ z) t = S.m⁻¹ • (S.m • ∂ₜ (∂ₜ z) t) := by    rw [smul_smul, inv_mul_cancel₀ hm, one_smul]  rw [hkey, hma]  module
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/ClassicalMechanics/DampedHarmonicOscillator/Basic.lean:156-167

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