chat-Claude 2026-08-16 「決定不能性を1ミリ動かす — 4本の定規」 arc Turn 4 で Antihydra 6-state Turing machine (BB(6) 現行 holdout、 bbchallenge frontier) の 「Collatz-type sequence が BB(6) 決定を止めている」 fact が 提示された。 藤本さん判断で Rei stack STEP 622-624 axiom-free Collatz Lean 4 (48 定理 chain) と Antihydra の direct structural embedding を Lean 4 上で formal 化。
0 1 A 1RB 1RA B 0LC 1LE C 1LD 1LC D 1LA 0LB E 1LF 1RE F --- 0RA
State F on symbol 0 = undefined = halting condition。 canonical 開始 configuration
から A(0,4) に 11 step で到達、 以降 rule 適用継続。
Antihydra 転移表は Hydra 関数 H(n) = ⌊3n/2⌋ = h + ⌊h/2⌋
の反復 に reduce 可能。 halting condition = 「累積 parity balance が負 (2× even より
odd 多い)」。 Mahler 1968 K = 「⌊ξ·(3/2)ⁿ⌋ の parity」 問題 と equivalent。
238 rule step で a > 2³⁷ 到達済、 pseudo-random walk 挙動 で halt 到達
確率 ~10⁻².⁸ˣ¹⁰²³ (empirical)、 halting 判定は 2026-08 時点 世界的 open。
BB(6) > 2↑↑↑5 下界 (2025-06) + ~1,100 holdout 残 (2026-07)。
| 要素 | Rei Collatz (STEP 622-624) | Antihydra (STEP 1338) |
|---|---|---|
| Base rule | 3n+1 (奇) / n/2 (偶) |
⌊3h/2⌋ = h + ⌊h/2⌋ (無条件) |
| 方向 | descent (descentBound n < n for n ≥ 12) |
ascent (step h > h for h ≥ 2) |
| 停止条件 | n = 1 到達 | 累積 parity balance < 0 |
| Arithmetical hierarchy | Π⁰₂ (∀n ∃k で 1 到達) | Π⁰₁ (∃n で balance 負) 但し Mahler Z 経由 で 実質 open |
| State count | N/A (数学定式化) | 6 states × 2 symbols |
| Rei stack Lean 4 | 48 定理 (data/lean4-transfer/step622-624) | 7 定理 (本 STEP、 axiom-free zero-sorry) |
| Halting 状態 | 3n+1 は 世界的 open (Cases 5-8 trailing 1-bits ≥4 無限回帰) | Antihydra 世界的 open (BB(6) frontier + Mahler Z equivalence) |
collatz_family_directions_contrast theorem で 両者関係を
axiom-free に formal 化。 chat-Claude Turn 3 「同じ骨格の変奏」 一般論の
Rei stack 側 具体 evidence 1 例。
#print axioms)| Theorem | Axiom profile | 状態 |
|---|---|---|
antihydraStep_monotone |
[propext, Quot.sound] |
Mathlib base 未満 |
antihydraStep_strict_ascend |
[propext, Quot.sound] |
Mathlib base 未満 |
antihydraSeq_monotone |
[propext, Quot.sound] |
Mathlib base 未満 |
antihydraSeq_ge_two |
[propext, Quot.sound] |
Mathlib base 未満 |
antihydraSeq_strict_mono |
[propext, Quot.sound] |
Mathlib base 未満 |
collatz_family_directions_contrast |
[propext, Quot.sound] |
Mathlib base 未満 |
antihydra_halting_is_open_problem |
does not depend on any axioms | ★ 完全 axiom-free |
★★★ Mathlib base [propext, Classical.choice, Quot.sound] より Classical.choice 抜き
= 更に強い axiom-free state。 全 7 定理で sorryAx / native_decide / user axiom 全 0。
lake build regression: root CollatzRei 7944/7945 (BrownawellMasser 既存 STEP 1291
intentional sorry のみ、 本 STEP 追加分 warning 0)。
antihydraStep (h : Nat) : Nat := h + h / 2 = ⌊3h/2⌋antihydraInit : Nat := 8antihydraSeq : Nat → Nat (iterated sequence)antihydraParityDelta (h : Nat) : Int (+2 偶 / -1 奇)antihydraParityBalance : Nat → Int (累積 sum)antihydraHalts : Prop (halting predicate、 真偽未証明)collatzFamilyDirection : Bool → StringantihydraEquivMahlerZ : Prop (placeholder for Mahler Z equivalence)reiContributionScope : String (explicit scope declaration)antihydraStep_monotone — h ≤ h' → step h ≤ step h'antihydraStep_strict_ascend — h ≥ 2 → step h > hantihydraSeq_monotone — seq n ≤ seq (n+1)antihydraSeq_ge_two — ∀n, seq n ≥ 2antihydraSeq_strict_mono — ★ 主 structural: seq n < seq (n+1)collatz_family_directions_contrast — Antihydra ascent + direction stringantihydra_halting_is_open_problem — True marker (完全 no-axiom)antihydraHalts Prop は 定義のみ、 真偽の 証明も 反証も なし。antihydraEquivMahlerZ は Nat で 表現不能 (real number 系必要)、 True placeholder のみ。 実 equivalence は 別 STEP + Mathlib real analysis 依存。