All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Equation Of Motion unique

ClassicalMechanics.DampedHarmonicOscillator.equationOfMotion_unique

Plain-language statement

Any two smooth solutions of the damped equation of motion with the same initial position and velocity are equal.

Exact Lean statement

lemma equationOfMotion_unique (x y : Time → EuclideanSpace ℝ (Fin 1))
    (hx : ContDiff ℝ ∞ x) (hy : ContDiff ℝ ∞ y)
    (hEOMx : S.EquationOfMotion x) (hEOMy : S.EquationOfMotion y)
    (h0 : x 0 = y 0) (hv0 : ∂ₜ x 0 = ∂ₜ y 0) :
    x = y

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma equationOfMotion_unique (x y : Time  EuclideanSpace  (Fin 1))    (hx : ContDiff  ∞ x) (hy : ContDiff  ∞ y)    (hEOMx : S.EquationOfMotion x) (hEOMy : S.EquationOfMotion y)    (h0 : x 0 = y 0) (hv0 : ∂ₜ x 0 = ∂ₜ y 0) :    x = y := by  have hIC : (fun τ :  => (x (Time.toRealCLE.symm τ), ∂ₜ x (Time.toRealCLE.symm τ))) 0 =      (fun τ :  => (y (Time.toRealCLE.symm τ), ∂ₜ y (Time.toRealCLE.symm τ))) 0 := by    have h00 : Time.toRealCLE.symm (0 : ) = (0 : Time) := map_zero Time.toRealCLE.symm    simp only [h00, h0, hv0]  have hEq := ODE_solution_unique_univ    (v := fun _ p => S.phaseVectorField p) (s := fun _ => Set.univ) (t₀ := (0 : ))    (f := fun τ :  => (x (Time.toRealCLE.symm τ), ∂ₜ x (Time.toRealCLE.symm τ)))    (g := fun τ :  => (y (Time.toRealCLE.symm τ), ∂ₜ y (Time.toRealCLE.symm τ)))    (fun _ => S.phaseVectorField.lipschitz.lipschitzOnWith)    (fun τ => S.phaseCurve_hasDerivAt x hx hEOMx τ, Set.mem_univ _)    (fun τ => S.phaseCurve_hasDerivAt y hy hEOMy τ, Set.mem_univ _)    hIC  funext t  have h1 := congrFun hEq (Time.toRealCLE t)  simp only [ContinuousLinearEquiv.symm_apply_apply] at h1  exact (Prod.ext_iff.mp h1).1
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/ClassicalMechanics/DampedHarmonicOscillator/Solution.lean:527-547

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