All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Kinetic Energy integrand split

RigidBodyMotion.kineticEnergy_integrand_split

Plain-language statement

The squared-speed integrand of kineticEnergy splits into the squared rotational speed |Ṙ (y − c)|², a term linear in the body-frame coordinate y − c, and the constant squared centre-of-mass speed ⟪V, V⟫.

Exact Lean statement

lemma kineticEnergy_integrand_split {d : ℕ} (M : RigidBodyMotion d) (t : Time) :
    cmap (fun y => (⟪M.velocityClosedForm t y, M.velocityClosedForm t y⟫_ℝ))
        (M.contDiff_velocityClosedForm_inner t)
      = cmap (fun y =>
            (∂ₜ (fun s => (M.orientation s).1) t *ᵥ fun j => y j - M.centerOfMass j) ⬝ᵥ
            (∂ₜ (fun s => (M.orientation s).1) t *ᵥ fun j => y j - M.centerOfMass j))
          (by simp only [dotProduct, Matrix.mulVec]; fun_prop)
        + ∑ j, (2 * (((M.centerOfMassVelocity t : Fin d → ℝ) ᵥ*
              ∂ₜ (fun s => (M.orientation s).1) t) j)) •
            cmap (fun y => y j - M.centerOfMass j) (by fun_prop)
        + (⟪M.centerOfMassVelocity t, M.centerOfMassVelocity t⟫_ℝ) •
            (1 : C^⊤⟮𝓘(ℝ, Space d), Space d; 𝓘(ℝ, ℝ), ℝ⟯)

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma kineticEnergy_integrand_split {d : } (M : RigidBodyMotion d) (t : Time) :    cmap (fun y => (⟪M.velocityClosedForm t y, M.velocityClosedForm t y⟫_))        (M.contDiff_velocityClosedForm_inner t)      = cmap (fun y =>            (∂ₜ (fun s => (M.orientation s).1) t *fun j => y j - M.centerOfMass j) ⬝ᵥ            (∂ₜ (fun s => (M.orientation s).1) t *fun j => y j - M.centerOfMass j))          (by simp only [dotProduct, Matrix.mulVec]; fun_prop)        + ∑ j, (2 * (((M.centerOfMassVelocity t : Fin d  ) ᵥ*              ∂ₜ (fun s => (M.orientation s).1) t) j)) •            cmap (fun y => y j - M.centerOfMass j) (by fun_prop)        + (⟪M.centerOfMassVelocity t, M.centerOfMassVelocity t⟫_) •            (1 : C^⊤⟮𝓘(, Space d), Space d; 𝓘(, ), ⟯) := by  ext y  simp only [cmap_apply, ContMDiffMap.coe_add, ContMDiffMap.coe_smul, ContMDiffMap.coe_one,    Pi.add_apply, Pi.smul_apply, Pi.one_apply, smul_eq_mul, mul_one]  rw [ ContMDiffMap.coeFnAddMonoidHom_apply, map_sum, Finset.sum_apply]  simp only [ContMDiffMap.coeFnAddMonoidHom_apply, ContMDiffMap.coe_smul, Pi.smul_apply,    cmap_apply, smul_eq_mul]  rw [show (⟪M.velocityClosedForm t y, M.velocityClosedForm t y⟫_)        = (M.velocityClosedForm t y : Fin d  ) ⬝ᵥ (M.velocityClosedForm t y : Fin d  ) from      Space.inner_eq_sum _ _,    velocityClosedForm_val,    show (⟪M.centerOfMassVelocity t, M.centerOfMassVelocity t⟫_)        = (M.centerOfMassVelocity t : Fin d  ) ⬝ᵥ (M.centerOfMassVelocity t : Fin d  ) from      Space.inner_eq_sum _ _,    add_dotProduct, dotProduct_add, dotProduct_add,    dotProduct_comm (∂ₜ (fun s => (M.orientation s).1) t *fun j => y j - M.centerOfMass j)      (M.centerOfMassVelocity t : Fin d  ),    dotProduct_mulVec (M.centerOfMassVelocity t : Fin d  )      (∂ₜ (fun s => (M.orientation s).1) t) (fun j => y j - M.centerOfMass j)]  simp only [dotProduct, two_mul, add_mul, Finset.sum_add_distrib]  ring
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/ClassicalMechanics/RigidBody/KineticEnergy.lean:103-134

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