karlexmarin Claude Opus 4.7 (1M context) commited on
Commit
db07345
·
1 Parent(s): 020539b

docs: add v0.5 TAF machine-verified consistency to dataset README

Browse files

Updates section "Updates" with 2026-05-01 entry documenting:
- 15 algebraic identities of TAF critical exponents
- Sage Groebner basis verification (PolynomialRing(ℚ))
- Lean Mathlib4 verification (1973/1973 jobs build success)
- D-SAGE-1 quadratic identity (2η²+η·γ_χ+1=0)
- Paper 1 erratum (η=2γ refuted, η=γ-1 correct)

New section "Machine-verification artifacts" with reproducibility
docker commands for both Sage and Lean.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

Files changed (1) hide show
  1. README.md +29 -0
README.md CHANGED
@@ -184,5 +184,34 @@ GitHub repo — refutations are welcome.
184
  ## Updates
185
 
186
  - 2026-04-29: Initial release (58 records, 32 models, 2 corpora, 2 precisions)
 
 
 
 
 
 
 
 
 
187
  - Future: training-trajectory data (Pythia checkpoint γ-flow), per-layer γ-fields,
188
  fp16 anchor measurements (DeepSeek-chat verification, Llama-3-8B cross-paper anchor)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
184
  ## Updates
185
 
186
  - 2026-04-29: Initial release (58 records, 32 models, 2 corpora, 2 precisions)
187
+ - 2026-04-30: Added `analysis/games/game_O_results.json` + `game_P_results.json`
188
+ (hyperscaling identities + recursive derivations)
189
+ - 2026-05-01: ★ **TAF v0.5 machine-verified consistency** — 15 algebraic identities
190
+ of TAF critical exponents formally proven via dual-tool approach:
191
+ - **Sage Groebner basis** (algebraic decision in PolynomialRing(ℚ))
192
+ - **Lean Mathlib4** (dependent type theory, 1973/1973 jobs build success)
193
+ - Including ★★ **D-SAGE-1**: `2η² + η·γ_χ + 1 = 0` quadratic identity
194
+ - **Paper 1 erratum**: η = 2γ refuted algebraically; correct η = γ−1
195
+ - First transformer-attention framework with formal machine-proof backing
196
  - Future: training-trajectory data (Pythia checkpoint γ-flow), per-layer γ-fields,
197
  fp16 anchor measurements (DeepSeek-chat verification, Llama-3-8B cross-paper anchor)
198
+
199
+ ## Machine-verification artifacts
200
+
201
+ For independent verification of TAF critical exponent identities:
202
+
203
+ ```bash
204
+ # Sage verification (~30s)
205
+ docker run --rm -v "$(pwd)/analysis:/work" sagemath/sagemath:latest \
206
+ sage /work/sage_recursive_sweep_2026-04-30.sage
207
+
208
+ # Lean Mathlib4 verification (~10min first time, cached)
209
+ docker run --rm -v "$(pwd)/lean_taf:/work" \
210
+ leanprovercommunity/lean:latest \
211
+ -c "cd /work/taf && lake build"
212
+ ```
213
+
214
+ - Sage results: `analysis/sage_recursive_sweep_results.json`
215
+ - Sage script: [tafagent repo](https://github.com/karlesmarin/tafagent) (when uploaded)
216
+ - Lean code: `lean_taf/taf/Taf/Identities.lean`
217
+ - Paper 2 appendix A.4: step-by-step proofs of all 15 identities