The Artin representation is faithful on pure braids
OpenBraidsLinksMCG.artin_faithful_on_pure_braidsThis is the substantive half of the faithfulness of the Artin representation.
Let be the Artin representation, given on the generators by equation (1-14),
and let be the homomorphism sending to the transposition , whose kernel is the pure braid group . The assertion is that a pure braid acting trivially on the free group is trivial: if satisfies
then .
Together with the fact that the underlying permutation of a braid can be recovered from its action on , this yields the injectivity of on all of , i.e. Corollary 1.8.3: a braid is completely determined by the automorphism of the free group it induces. Restricting attention to pure braids is what makes the statement amenable to the inductive treatment of furnished by the Fadell-Neuwirth fibrations and the semidirect-product decomposition of Corollary 1.8.1.
Formalization Note The representation and the permutation homomorphism are supplied as hypotheses together with their values on the Artin generators, which determine them uniquely. The hypothesis expresses that lies in the pure braid subgroup.
import Definitions.Def_BraidsLinksMCG_ArtinBraidGroup import Definitions.Def_BraidsLinksMCG_ArtinEndo
namespace BraidsLinksMCG
theorem artin_faithful_on_pure_braids (n : ℕ)
(xi : ArtinBraidGroup n →* MulAut (FreeGroup (Fin n)))
(hxi : ∀ i : Fin (n - 1), ∀ w : FreeGroup (Fin n), xi (sigma i) w = artinEndo n i w)
(pi : ArtinBraidGroup n →* Equiv.Perm (Fin n))
(hpi : ∀ i : Fin (n - 1), pi (sigma i) = Equiv.swap (strandIdx i) (strandIdxSucc i))
(b : ArtinBraidGroup n) (hb : xi b = 1) (hperm : pi b = 1) : b = 1 := by sorry
end BraidsLinksMCG