All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Angular Velocity Tensor transpose

RigidBodyMotion.angularVelocityTensor_transpose

Plain-language statement

The angular velocity tensor is skew-symmetric, Ωᵀ = -Ω: it lies in the Lie algebra 𝔰𝔬(d). This is the litmus check that Ω = Ṙ Rᵀ is a genuine angular-velocity tensor, and follows by differentiating the orthogonality identity R Rᵀ = 1.

Exact Lean statement

lemma angularVelocityTensor_transpose (M : RigidBodyMotion d) (t : Time)
    (hR : DifferentiableAt ℝ (fun s => (M.orientation s).1) t) :
    (M.angularVelocityTensor t)ᵀ = - M.angularVelocityTensor t

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma angularVelocityTensor_transpose (M : RigidBodyMotion d) (t : Time)    (hR : DifferentiableAt  (fun s => (M.orientation s).1) t) :    (M.angularVelocityTensor t)ᵀ = - M.angularVelocityTensor t := by  have hconst : (fun s => (M.orientation s).1 * ((M.orientation s).1)ᵀ)      = fun _ => (1 : Matrix (Fin d) (Fin d) ) := by    funext s    exact M.orientation_mul_transpose s  have hderiv0 : ∂ₜ (fun s => (M.orientation s).1 * ((M.orientation s).1)ᵀ) t = 0 := by    rw [hconst]    exact Time.deriv_const 1  have hprod := Time.deriv_matrix_mul (fun s => (M.orientation s).1)    (fun s => ((M.orientation s).1)ᵀ) t hR hR.matrix_transpose  rw [Time.deriv_matrix_transpose (fun s => (M.orientation s).1) t hR, hderiv0] at hprod  rw [angularVelocityTensor, transpose_mul, transpose_transpose]  exact eq_neg_of_add_eq_zero_left hprod.symm
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/ClassicalMechanics/RigidBody/AngularVelocity.lean:76-90

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