Teorema 3.15 (homomorphism step): the half-twists satisfy Artin's relations
ProvedTarchaBraids.thm_3_15_half_twists_satisfy_relationsThe first half of the proof of Tarcha's Teorema 3.15 checks that the assignment respects the defining relations, so that it extends to a group homomorphism from the abstractly presented group to the braid group. Geometrically this is exactly the pair of relations of Proposição 3.14 and of the discussion following it, verified for the half-twist loops themselves:
The first relation holds because half-twists with non-adjacent indices are supported in disjoint discs; the second is the braid relation, whose proof in the dissertation is the isotopy displayed in Figura 3.17 and its generalization.
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_twists_satisfy_relations (n : ℕ) :
(∀ i j : Fin (n - 1), 2 ≤ ((i : ℤ) - (j : ℤ)).natAbs →
halfTwistBraid n i * halfTwistBraid n j = halfTwistBraid n j * halfTwistBraid n i) ∧
(∀ i j : Fin (n - 1), (j : ℕ) = (i : ℕ) + 1 →
halfTwistBraid n i * halfTwistBraid n j * halfTwistBraid n i =
halfTwistBraid n j * halfTwistBraid n i * halfTwistBraid n j) := 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 . Generator indices run over (an empty range when ). For each index , denotes the class, in the fundamental group of the unordered configuration space of points of the plane based at the class of , of the loop rotating the points and counterclockwise by about their midpoint while all other points remain fixed.
The statement is a conjunction of two universally quantified claims about products in that group.
- For all indices and in the range, if the absolute value of the difference of the two indices, computed in the integers, is at least , then
- For all indices and in the range, if the value of is exactly the value of plus one, then
Both conditions are hypotheses on the indices only; the products are taken in the fundamental group with its usual (concatenation-induced) multiplication. When the index conditions cannot be met in the second clause, and when both clauses are vacuous.
Confirmed by the mission captain (proposal self-audit).