SuperBEST v5.22026-04-21arXiv:2603.21852Taxonomy Locked — 23 ops · No 24th exists

SuperBEST Routing Table

Minimum F16-node constructions for every elementary arithmetic primitive. Taxonomy definitively closed: PROVED — no 24th operator passes PGC+AIT filter on open domain.

Two-layer accounting policy — Layer 1 (F16)formal theorems, arXiv paper; only F16 orbit nodes counted.Layer 2 (23-op)library/ML/physics use; extended operators count as 1n. Must be labeled.
14n / 80.8% savings (positive domain, exp=ln=mul=recip=pow=sqrt=1n via UpperBounds.lean; mul_pos reconciled + sqrt reconciled to 1n)

Core Arithmetic Primitives (F16 Layer 1)

OperationNodes (x>0)NaiveConstructionNotes
exp(x)1n1EML(x,1) = e^xprimitive — no domain restriction
ln(x)1n1EXL(0,x) = ln(x), x > 0primitive; domain-restricted to x > 0
recip(x) = 1/x1n1ELSb(0,x) = exp(0 - ln(x)) = 1/x, x > 0R16-C1; X8 audit confirms negative x also handled in implementation
div(x,y) = x/y1n2ELSb(ln(x), y) = exp(ln(x) - ln(y)) = x/y, x > 0, y > 0X7/X8 confirmed: x > 0 hard constraint; y can be negative
neg(x) = -x2n2EXL(0, DEML(x,1)) = ln(exp(-x)) = -x; or DEML(x,1)=exp(-x) then EXL gives -xT09; 2n for all reals; positive domain gives no cost improvement
mul(x,y) = x*y2n2ELAd(EXL(0,x), y) = exp(ln(x)) * y = x*y, x > 0T10u; F16 optimal for x > 0. X7/X8 confirmed domain restriction.
sub(x,y) = x - y2n2LEdiv(x, EML(y,1)) = ln(exp(x)/exp(y)) = x - yT33; 2n for all reals; X8 confirmed
add(x,y) = x + y2nLEdiv(x, DEML(y,1)) = ln(exp(x)/exp(-y)) = x + yNEW v5 (ADD-T1): all real x,y. Replaced add_pos=3n and add_gen=11n with unified 2n.
sqrt(x) = x^(1/2)1n2EPL(0.5, x) = ELMl(0.5, x) = exp(0.5·ln(x)) = sqrt(x), x > 0 — single F16 nodeT_SQRT_1N; EPL(0.5,x) = ELMl direct primitive. Same mechanism as pow=1n. Corrected from v5.1 (was 2n). Verified: EPL(0.5,4)=2.0, EPL(0.5,9)=3.0, EPL(0.5,16)=4.0.
pow(x,n) = x^n1n3EPL(n,x) = ELMl(n,x) = exp(n * ln(x)) = x^n, x > 0 — single 1-node F16 operator from the 16-operator censusX20 RESOLUTION: EPL/ELMl = exp(x*ln(y)) = y^x IS in F16 census. pow(x,n)=x^n=EPL(n,x) for x>0 costs 1n (direct), not 3n. The 3n construction used EXL+ELAd+EML explicitly rather than recognizing EPL as a primitive. For positive domain: corrected to 1n.

Extended Operators (23-op Beyond F16)

Cat A: genuine F16 algebraic shortcut. Cat B: genuine via EML sign-variant. Cat C: notation-only (23-op=1n; F16=3–4n; no F16 shortcut).

OpF16 cost (L1)23-op cost (L2)Genuine savingCategoryDescription
EEM3n1n1AAlgebraic shortcut (add+exp)
EED3n1n1AAlgebraic shortcut (sub+exp)
EES1n/4n1n3n(const)/0n(gen)B/CGenuine F16 for const arg; notation-only general
LLA3n1n1AAlgebraic shortcut (mul+ln)
LLS3n1n1AAlgebraic shortcut (div+ln)
LLD4n1n0CNotation-only — no F16 shortcut
EEA4n1n0CNotation-only — enables LSE=2n in 23-op

High-Impact Expressions

Layer 1 = F16 ground-truth; Layer 2 = 23-op extended (must be labeled)

ML / Smooth Functions

ExpressionNaiveF16 (Layer 1)23-op (Layer 2)Saving type
softplus ln(1+exp(x))4n2n2nB: EML(x,1/e)+ln
LSE(x,y) = ln(exp(x)+exp(y))8n4n2nF16: exp+exp+add+ln (corrected from 5n)
sigmoid 1/(1+exp(-x))6n4n3nF16 route
KL term l*ln(l/m)6n5n3nA: div+ln+mul

Quantum / Information

ExpressionNaiveF16 (Layer 1)23-op (Layer 2)Saving type
quantum rel entropy (per term)6n5n3nA: genuine 1n save
von Neumann entropy (per term)8n7n4nA: 1n save
Bures distance5n4n3nB: genuine
partition fn pair exp(-bEj)/exp(-bEi)10n10n7nC: EEA notation-only
spectral decay exp(-g*t)4n3n2nA: mul+exp
Kraus factor sqrt(1-exp(-g*t))6n4n3nB: EML-variant+EPL

Physics

ExpressionNaiveF16 (Layer 1)23-op (Layer 2)Saving type
Boltzmann ratio exp(-b*(Ej-Ei))10n6n5nA: sub+mul+neg+exp
Mayer f-function exp(-b*u)-16n3n3nB: EML_neg+mul
hydrogen radial decay4n3n3nB: genuine
Fermi-Dirac 1/(exp((e-m)/kT)+1)8n6n4nA: algebraic route

Special Functions (all require infinite F16 depth)

FunctionF16 / 23-op costReason
erf(x)T01: infinite zeros
J_0(x) BesselT01: infinite zeros
Gamma(x)AIL theorem
sin(x), cos(x)T01/AIL: proved

Honest Savings Summary

CatalogLayer 1 — F16 genuineLayer 2 — 23-op extended
Core arithmetic (9 ops)80.8%80.8%
ML functions (6 items)~35%~55%
Quantum (8 items)~15%~35%
Physics (5 items)~30%~45%
Special functions0% (all inf)0% (all inf)
Aggregate~12%~40%

Key results

  • Core table locked: 14n / 80.8% savings — canonical, unaffected by extended operators
  • LSE corrected: ln(e^x+e^y) = 4n in F16 (was 5n); 2n in 23-op via EEA+ln
  • Taxonomy closed: exactly 23 operators exist; CONJ_NO_OP_24 is a proved theorem
  • softplus = 2n in both layers via EML(x,1/e)+ln (Category B: genuine F16)
  • Aggregate genuine F16 savings: ~12% across all catalogs; ~40% with 23-op extended

Research: monogate.org/superbest ↗ · Explorer: monogate.dev/explorer