All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Mdifferentiable At iff differentiable At coord

ClassicalMechanics.HarmonicOscillator.Trajectory.mdifferentiableAt_iff_differentiableAt_coord

Plain-language statement

A trajectory is MDifferentiableAt a time iff its coordinate curve is ordinarily differentiable there, since the two differ by the coordinate diffeomorphism.

Exact Lean statement

lemma mdifferentiableAt_iff_differentiableAt_coord (γ : Trajectory) (t : Time) :
    MDifferentiableAt 𝓘(ℝ, Time) 𝓘(ℝ, EuclideanSpace ℝ (Fin 1)) γ t ↔
      DifferentiableAt ℝ (coord γ) t

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma mdifferentiableAt_iff_differentiableAt_coord (γ : Trajectory) (t : Time) :    MDifferentiableAt 𝓘(, Time) 𝓘(, EuclideanSpace  (Fin 1)) γ t       DifferentiableAt  (coord γ) t := by  rw [ mdifferentiableAt_iff_differentiableAt]  constructor  · intro    rw [show coord γ = ConfigurationSpace.valDiffeomorph ∘ γ by rfl]    exact MDifferentiableAt.comp t      ((ConfigurationSpace.valDiffeomorph.mdifferentiable WithTop.top_ne_zero).mdifferentiableAt)  · intro hcoord    have hγ : MDifferentiableAt 𝓘(, Time) 𝓘(, EuclideanSpace  (Fin 1))        (ConfigurationSpace.valDiffeomorph.symm ∘ coord γ) t :=      MDifferentiableAt.comp t        ((ConfigurationSpace.valDiffeomorph.symm.mdifferentiable          WithTop.top_ne_zero).mdifferentiableAt) hcoord    convert hγ using 1    funext s    exact (ConfigurationSpace.valDiffeomorph.symm_apply_apply (γ s)).symm
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/ClassicalMechanics/HarmonicOscillator/Geometric/Trajectory.lean:112-130

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