All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Exists stationary vec

GroupTheory.SO3.exists_stationary_vec

Plain-language statement

For every element of SO(3) there exists a vector which remains unchanged under the action of that SO(3) element.

Exact Lean statement

lemma exists_stationary_vec (A : SO(3)) :
    ∃ (v : EuclideanSpace ℝ (Fin 3)),
    Orthonormal ℝ (({0} : Set (Fin 3)).restrict (fun _ => v))
    ∧ A.toEnd v = v

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma exists_stationary_vec (A : SO(3)) :     (v : EuclideanSpace  (Fin 3)),    Orthonormal  (({0} : Set (Fin 3)).restrict (fun _ => v))     A.toEnd v = v := by  obtain v, hv := End.HasEigenvalue.exists_hasEigenvector $ one_is_eigenvalue A  have hvn : ‖v‖  0 := norm_ne_zero_iff.mpr hv.2  use (1/‖v‖) • v  constructor  · rw [@orthonormal_iff_ite]    intro v1 v2    simp only [one_div]    have hveq : v1 = v2 := by aesop    subst hveq    rw [Set.restrict_apply, inner_smul_right, inner_smul_left, real_inner_self_eq_norm_sq v]    simp only [map_inv₀, conj_trivial, Fin.isValue, ↓reduceIte]    field_simp  · simp [End.mem_eigenspace_iff.mp hv.1]
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/Mathematics/SO3/Basic.lean:161-177

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