All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Rotational Kinetic Energy eq integral

RigidBody.rotationalKineticEnergy_eq_integral

Plain-language statement

The rotational kinetic energy equals the mass integral of the local rotational speed squared: T = ½ ∫ |ω × r|² dm.

Exact Lean statement

theorem rotationalKineticEnergy_eq_integral (R : RigidBody 3) (ω : Fin 3 → ℝ) :
    R.rotationalKineticEnergy ω
      = (1 / (2 : ℝ)) * R.ρ ⟨fun x => (ω ⨯₃ (x : Fin 3 → ℝ)) ⬝ᵥ (ω ⨯₃ (x : Fin 3 → ℝ)),
        ContDiff.contMDiff <| (contDiff_cross_dotProduct_cross ω).comp
          (contDiff_pi.mpr fun i => Space.eval_contDiff i)⟩

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
theorem rotationalKineticEnergy_eq_integral (R : RigidBody 3) (ω : Fin 3  ) :    R.rotationalKineticEnergy ω      = (1 / (2 : )) * R.ρ fun x => (ω ⨯₃ (x : Fin 3  )) ⬝ᵥ (ω ⨯₃ (x : Fin 3  )),        ContDiff.contMDiff <| (contDiff_cross_dotProduct_cross ω).comp          (contDiff_pi.mpr fun i => Space.eval_contDiff i) := by  rw [rotationalKineticEnergy_eq_angularMomentum]  congr 1  simp_rw [dotProduct, angularMomentum,  smul_eq_mul,  map_smul,  map_sum]  congr 1  ext x  rw [ ContMDiffMap.coeFnAddMonoidHom_apply, map_sum, Finset.sum_apply]  simp only [ContMDiffMap.coeFnAddMonoidHom_apply, ContMDiffMap.coe_smul, Pi.smul_apply,    ContMDiffMap.coeFn_mk, smul_eq_mul]  exact dotProduct_cross_cross_self (x : Fin 3  ) ω
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/ClassicalMechanics/RigidBody/KineticEnergy.lean:59-72

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