All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Rho coord sub center Of Mass

RigidBody.rho_coord_sub_centerOfMass

Plain-language statement

The first moment of the mass distribution about its own centre of mass vanishes: for nonzero mass, ρ of the centred j-th coordinate function is zero.

Exact Lean statement

lemma rho_coord_sub_centerOfMass {d : ℕ} (R : RigidBody d) (h : R.mass ≠ 0) (j : Fin d) :
    R.ρ (cmap (fun y => y j - R.centerOfMass j) (by fun_prop)) = 0

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma rho_coord_sub_centerOfMass {d : } (R : RigidBody d) (h : R.mass  0) (j : Fin d) :    R.ρ (cmap (fun y => y j - R.centerOfMass j) (by fun_prop)) = 0 := by  have hsplit : cmap (fun y => y j - R.centerOfMass j) (by fun_prop)        = cmap (fun y => y j) (by fun_prop)          - R.centerOfMass j • (1 : C^⊤⟮𝓘(, Space d), Space d; 𝓘(, ), ⟯) := by    ext y    simp only [cmap_apply, ContMDiffMap.coe_sub, ContMDiffMap.coe_smul,      ContMDiffMap.coe_one, Pi.sub_apply, Pi.smul_apply, Pi.one_apply, smul_eq_mul, mul_one]  have hcoord : R.ρ (cmap (fun y => y j) (by fun_prop)) = R.mass * R.centerOfMass j := by    have hc : R.centerOfMass j = (1 / R.mass) • R.ρ (cmap (fun y => y j) (by fun_prop)) := rfl    rw [hc, smul_eq_mul, one_div,  mul_assoc, mul_inv_cancel₀ h, one_mul]  rw [hsplit, map_sub, map_smul, R.rho_one, hcoord, smul_eq_mul]  ring
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/ClassicalMechanics/RigidBody/Basic.lean:80-92

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