Teorema 3.15, step 3 — the half-twist homomorphism is injective
OpenTarchaBraids.thm_3_15_half_twist_hom_injectiveThis is the injectivity half of Tarcha's Teorema 3.15. Let be the abstract braid group, presented by generators subject to
and let be the geometric braid group, the fundamental group of the unordered configuration space of points of the plane based at the class of . Write for the class of the elementary half-twist interchanging the base points and .
The assertion is that any group homomorphism
whose value on each generator is the corresponding half-twist class, , is injective. Equivalently: a word in the generators whose associated loop of configurations is null-homotopic is already trivial in , i.e. the braid relations are all the relations satisfied by the half-twists.
In the dissertation this is the step carried out through the analysis of elementary moves on braid diagrams (Figuras 3.18–3.27, pp. 57–62); the classical alternative is an induction on using the exact sequence of the Fadell–Neuwirth fibration. It is the hard half of the presentation theorem: the complementary facts — that the half-twists satisfy the relations, and that they generate — are recorded separately as Teorema 3.15 (step 1) and Teorema 3.11.
Because the hypothesis fixes only on generators, and the generators generate , the homomorphism in question is unique; stating the lemma for an arbitrary such makes it directly usable by any construction of the comparison map.
import Mathlib import Definitions.Def_BraidsLinksMCG_ArtinBraidGroup import Definitions.Def_BraidsLinksMCG_ConfigSpace import Definitions.Def_TarchaBraids_HalfTwist
namespace TarchaBraids
open BraidsLinksMCG
theorem thm_3_15_half_twist_hom_injective (n : ℕ) (f : ArtinBraidGroup n →* GeomBraidGroup n)
(hf : ∀ i : Fin (n - 1), f (sigma i) = halfTwistBraid n i) :
Function.Injective f := by sorry
end TarchaBraids