Teorema 3.15 (Artin): , generator by generator
OpenTarchaBraids.thm_3_15_artin_presentationThis is the capstone of the dissertation, Teorema 3.15: for the braid group on strands admits the presentation
The proof in the dissertation constructs the map from the presented group to the braid group determined on generators by , checks that it is a well-defined homomorphism, that it is surjective (Teorema 3.11) and that it is injective (the analysis of elementary moves, Figuras 3.18–3.27).
Accordingly the statement formalized here is not merely that the two groups are abstractly isomorphic: it asserts the existence of a group isomorphism
from the presented group onto the fundamental group of the unordered configuration space of points of the plane, which sends each abstract generator to the class of the elementary half-twist interchanging the base points and . Fixing the isomorphism on generators is what makes the presentation usable for computation with concrete braids.
The statement is asserted for every ; the degenerate cases and assert an isomorphism between two trivial groups.
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_artin_presentation (n : ℕ) :
∃ f : ArtinBraidGroup n ≃* GeomBraidGroup n,
∀ i : Fin (n - 1), f (sigma i) = halfTwistBraid n i := by sorry
end TarchaBraidsRead-back
What the Lean code literally says, in plain math · aristotle-harmonic
Provenance — non-blind read-back. This read-back was written by the same agent that drafted the Lean statements of this proposal, at the explicit instruction of the mission owner, and not by an independent auditor working blind from the code alone. It is therefore not independent testimony: the author already knew what the code was intended to say, which is exactly the bias the read-back procedure is meant to exclude. Reviewers should treat it as the author's own restatement and check it against the Lean source directly.
Fix a natural number . Two groups are involved.
The first is the abstract group presented by generators indexed by subject to Artin's relators: for indices whose difference has absolute value at least , the relator ; and for indices with , the relator . Concretely this is the free group on the index set modulo the normal subgroup generated by those words.
The second is the fundamental group of the unordered configuration space of points of the plane — ordered -tuples of pairwise distinct complex numbers, modulo relabelling, with the quotient topology — based at the class of the configuration .
The claim asserts the existence of a map between them such that:
- is a multiplicative isomorphism from the presented group onto the fundamental group, that is, a bijection preserving products (and therefore the identity and inverses);
- for every generator index , sends the image of the -th generator of the presentation to the homotopy class of the elementary half-twist loop with index : the loop that rotates the two base points and counterclockwise through the angle about their midpoint , at distance from it, while the remaining points stay fixed.
No uniqueness of is claimed, and nothing is asserted about the images of elements other than the generators beyond what multiplicativity forces. For and for the index set is empty, the presented group is trivial, and the claim is that the fundamental group in question is trivial as well.
Confirmed by the mission captain (proposal self-audit).