All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Velocity eq deriv orientation

RigidBodyMotion.velocity_eq_deriv_orientation

Plain-language statement

The velocity of a body point decomposes as v = Ṙ (y − c) + V: the rate of change of the orientation acting on the body-frame position, plus the centre-of-mass velocity.

Exact Lean statement

lemma velocity_eq_deriv_orientation {d : ℕ} (M : RigidBodyMotion d) (y : Space d) (t : Time)
    (i : Fin d) (hR : Differentiable ℝ (fun s => (M.orientation s).1))
    (hX : Differentiable ℝ M.comTrajectory) :
    M.velocity y t i
      = (∂ₜ (fun s => (M.orientation s).1) t *ᵥ fun j => y j - M.centerOfMass j) i
        + M.centerOfMassVelocity t i

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma velocity_eq_deriv_orientation {d : } (M : RigidBodyMotion d) (y : Space d) (t : Time)    (i : Fin d) (hR : Differentiable  (fun s => (M.orientation s).1))    (hX : Differentiable  M.comTrajectory) :    M.velocity y t i      = (∂ₜ (fun s => (M.orientation s).1) t *fun j => y j - M.centerOfMass j) i        + M.centerOfMassVelocity t i := by  have hentry :  a b : Fin d, Differentiable  (fun s => (M.orientation s).1 a b) := fun a b =>    ((Matrix.entryLinearMap   a b).toContinuousLinearMap).differentiable.comp hR  have hXcoord :  k : Fin d, Differentiable  (fun s => M.comTrajectory s k) := fun k =>    (Space.eval_differentiable k).comp hX  have hd : Differentiable  (fun s => M.displacement s y) := by    have hcoord :  k : Fin d, Differentiable  (fun s => M.displacement s y k) := by      intro k      simp only [displacement_apply]      exact (Differentiable.fun_sum        (fun j _ => (hentry k j).mul_const (y j - M.centerOfMass j))).add (hXcoord k)    exact Space.mk_differentiable.comp (differentiable_pi.mpr hcoord)  have hmv : (∂ₜ (fun s => (M.orientation s).1) t *fun j => y j - M.centerOfMass j) i      = ∑ j, (∂ₜ (fun s => (M.orientation s).1) t) i j * (y j - M.centerOfMass j) := rfl  rw [M.velocity_apply y t i hd]  simp only [displacement_apply]  rw [Time.deriv_add (fun s => ∑ j, (M.orientation s).1 i j * (y j - M.centerOfMass j))      (fun s => M.comTrajectory s i)      ((Differentiable.fun_sum        fun j _ => (hentry i j).mul_const (y j - M.centerOfMass j)) t) ((hXcoord i) t),    Time.deriv_fun_sum Finset.univ      (fun j s => (M.orientation s).1 i j * (y j - M.centerOfMass j))      (fun j _ => ((hentry i j).mul_const (y j - M.centerOfMass j)) t),    Finset.sum_congr rfl (fun j (_ : j  Finset.univ) =>      Time.deriv_mul_const (fun s => (M.orientation s).1 i j)        (y j - M.centerOfMass j) ((hentry i j) t))]  simp only [Time.deriv_matrix_apply (fun s => (M.orientation s).1) t (hR t)]  rw [hmv, Time.deriv_space hX t i,  centerOfMassVelocity_eq]
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/ClassicalMechanics/RigidBody/Motion.lean:214-246

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