FenchelNielsenZomorrodian.Discrete.Torsion.FuchsianFiniteSubgroupFrontier

2 Theorem | 1 Definition | 1 Axiom

This module studies fuchsian finite subgroup frontier for fenchel nielsen zomorrodian. A subgroup is contained in a conjugate of one elliptic stabilizer, up to powers. Finite nontrivial Fuchsian subgroups lie in conjugates of elliptic stabilizers.

import
Imported by

Declarations

def subgroup_le_conj_ellipticStabilizer
    (σ : FuchsianSignature) (K : Subgroup (FuchsianPresentedGroup σ)) : Prop :=
  ∃ i : Fin σ.numPeriods, ∃ c : FuchsianPresentedGroup σ,
    ∀ k : K, ∃ n : ℤ,
      (k : FuchsianPresentedGroup σ) =
        c * ellipticElement σ i ^ n * c⁻¹

/- FRONTIER `fuchsian-finite-subgroup-elliptic-stabilizer`.

This is the sole approved discrete axiom frontier in `FenchelNielsen`.  It is the compact
no-cusp presentation currently consumed by the compact Fuchsian three-step route. -/

A subgroup is contained in a conjugate of one elliptic stabilizer, up to powers.

axiom finiteSubgroup_le_conj_ellipticStabilizer
    (σ : FuchsianSignature)
    (K : Subgroup (FuchsianPresentedGroup σ)) [Finite K]
    (hK : K ≠ ⊥) :
    subgroup_le_conj_ellipticStabilizer σ K

Finite nontrivial Fuchsian subgroups lie in conjugates of elliptic stabilizers.

theorem finiteOrder_isConj_elliptic_zpow_of_frontier
    {G ι : Type*} [Group G] (elliptic : ι → G)
    (frontier : ∀ K : Subgroup G, Finite K → K ≠ ⊥ →
      ∃ i : ι, ∃ c : G, ∀ k : K, ∃ n : ℤ,
        (k : G) = c * elliptic i ^ n * c⁻¹)
    (g : G) (hg : IsOfFinOrder g) (hgne : g ≠ 1) :
    ∃ i : ι, ∃ n : ℤ, IsConj g (elliptic i ^ n)

Finite nontrivial Fuchsian subgroups lie in conjugates of elliptic stabilizers.

Show proof
theorem finiteOrder_eq_one_or_isConj_elliptic_zpow_of_frontier
    {G ι : Type*} [Group G] (elliptic : ι → G)
    (frontier : ∀ K : Subgroup G, Finite K → K ≠ ⊥ →
      ∃ i : ι, ∃ c : G, ∀ k : K, ∃ n : ℤ,
        (k : G) = c * elliptic i ^ n * c⁻¹)
    (g : G) (hg : IsOfFinOrder g) :
    g = 1 ∨ ∃ i : ι, ∃ n : ℤ, IsConj g (elliptic i ^ n)

A finite-order element is either trivial or conjugate to a power of an elliptic generator.

Show proof