All proofs
Project-declaredLean 4.32.0 Β· mathlib@81a5d257c8e4

Mass Metric Val is Von NBounded

ClassicalMechanics.HarmonicOscillator.massMetricVal_isVonNBounded

Plain-language statement

The mass metric unit ball is bounded in the model norm.

Exact Lean statement

lemma massMetricVal_isVonNBounded
    (S : HarmonicOscillator) (q : ConfigurationSpace) :
    IsVonNBounded ℝ
      {v : TangentSpace π“˜(ℝ, EuclideanSpace ℝ (Fin 1)) q | massMetricVal S q v v < 1}

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma massMetricVal_isVonNBounded    (S : HarmonicOscillator) (q : ConfigurationSpace) :    IsVonNBounded ℝ      {v : TangentSpace π“˜(ℝ, EuclideanSpace ℝ (Fin 1)) q | massMetricVal S q v v < 1} := by  change IsVonNBounded ℝ    {v : EuclideanSpace ℝ (Fin 1) | S.m * βŸͺv, v⟫_ℝ < 1}  rw [NormedSpace.isVonNBounded_iff']  refine ⟨Real.sqrt (1 / S.m), ?_⟩  intro v hv  have hv' : S.m * βŸͺv, v⟫_ℝ < 1 := by simpa using hv  rw [real_inner_self_eq_norm_sq] at hv'  have hmul : S.m * β€–vβ€– ^ 2 < 1 := hv'  have hsq_le : β€–vβ€– ^ 2 ≀ 1 / S.m := by    have hsq_lt : β€–vβ€– ^ 2 < 1 / S.m := by      rw [lt_div_iffβ‚€ S.m_pos]      nlinarith [hmul]    exact hsq_lt.le  exact Real.le_sqrt_of_sq_le hsq_le
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/ClassicalMechanics/HarmonicOscillator/Geometric/KineticEnergy.lean:112-129

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