CatGT · Catalytic Generative Theory · dm³ Framework · Submitted: Catalysis Today

Zeolites — Order Matters

Catalysts do not commute. The operator firing sequence is the selectivity.
HZSM-5 and HMCM-22 are both zeolites with similar Brønsted acidity. Given the same feedstock — ethanol — they produce opposite product distributions: one favours aromatics, the other light olefins. Pore size alone cannot explain this. The decisive factor is the order in which the four dm³ operators fire. ZSM-5: C→K→F→U. MCM-22: C→F→K→U. Same operators; different sequence; different products. This is the non-commutativity of catalysis made mathematically precise by CatGT (Catalytic Generative Theory), which unifies zeolite shape selectivity, metal ensemble effects, and dm³-scale reactor engineering under the single contact manifold \(\mathcal{X}_\text{cat}\). The central result, the Helical Selectivity Principle, is formally verified in Lean 4.
C K F U order matters
CatGT · GOMC Opus Part I Submitted: Catalysis Today · Elsevier Zenodo: 10.5281/zenodo.19117399 Lean 4: 9 closed · 0 admits · 0 sorries

The Puzzle of Reversed Selectivity

Zeolites are crystalline aluminosilicate frameworks with nanometre-scale pores. They are the workhorses of the petrochemical industry: fluid catalytic cracking (FCC), methanol-to-olefins (MTO), and ethanol dehydration all run in zeolite beds. The selectivity — which products come out — was thought to be determined primarily by pore size and Brønsted acidity (the density of Al-substituted sites that donate protons).

Zilacleide de Sousa et al. (2014, 2023) broke this picture. HZSM-5 (pore: 5.6 Å 10-ring channels, MFI topology) and HMCM-22 (pore: 7.1 Å supercage + 4.0 Å 10-ring exits, MWW topology) were given the same ethanol feed under matched conditions. Similar Brønsted acidity. Different outcome: HZSM-5 produced mainly aromatics; HMCM-22 produced mainly light olefins (ethylene, propylene). The selectivity was reversed.

"Pore-size arguments alone cannot explain the Sousa contrast. CatGT explains it as a difference in operator firing order: the same four operators fire in different sequences." — CatGT, Part I, Introduction (submitted to Catalysis Today, May 2026)

The dm³ reading: the four operators C, K, F, U are the same in both zeolites. But the geometric topology of each framework determines the order in which they encounter the reactant. In ZSM-5, the 10-ring channel is the first geometric constraint the molecule meets after adsorption: K fires immediately after C. In MCM-22, the molecule enters the large supercage first and branches (F fires before it hits any size constraint K). Same operators; different sequence. Non-commutativity.

The Catalyst Contact Manifold

Definition 1 — Catalyst Contact Manifold (CatGT)
The catalyst contact manifold is \(\mathcal{X}_\text{cat} = (\mathbb{R}^3, \alpha_\text{cat})\) with contact form \[\alpha_\text{cat} = dz - r^2\,d\theta\] in cylindrical coordinates \((r, \theta, z)\), where:
  • \(r\) = pore aperture radius (Å) — the physical channel width
  • \(\theta\) = catalytic cycle phase — position in the reaction sequence
  • \(z\) = reaction coordinate — progress along the channel axis

The Reeb vector field \(R = \partial_z\) satisfies \(\alpha(R) = 1\). Its integral curves \((r_0, \theta_0, z_0 + t)\) are helices at fixed radius — the helical attractors \(\mathcal{H}_\lambda\). Non-integrability \(\alpha \wedge d\alpha \neq 0\) forces all trajectories to twist continuously, exactly as a zeolite channel forces helical molecular motion.

The DNLS equation governs energy localisation at the \(N\) catalytic sites along the helix:

DNLS equation on N catalytic sites i ψ̇_n = -J(ψ_{n+1} + ψ_{n-1}) - λ|ψ_n|² ψ_n J = inter-site coupling (tunnelling / diffusivity analogue) λ = on-site nonlinearity (binding energy analogue) IPR = ∑|ψ_n|⁴ / (∑|ψ_n|²)² IPR → 1/N : delocalised (mobile reactant, accessible pathway) IPR → 1 : self-trapped (blocked site, selectivity enforced)

Below the self-trapping threshold \(\lambda_c = 2JN/\|\psi_0\|^2\), excitations are delocalised — the reactant can access the fixed point. Above threshold, the wavefunction self-traps and the pathway is blocked. The critical radius \(r^*(\lambda) = \sqrt{J/\lambda}\) is the exact boundary.

Theorem 1 — Helical Selectivity Principle (HSP)

Theorem 1 (HSP) — CatGT Part I · CatGT_Main.lean
(i) Every point \((r,\theta,z) \in \mathcal{H}_\lambda\) satisfies \(r \leq r^*(\lambda) = \sqrt{J/\lambda}\). ✓ helical_selectivity

(ii) A reaction pathway \(\gamma\) reaches the stable fixed point \(x^*\) only if \[\max_t\, r(\gamma(t)) \leq r^*(\lambda) = \sqrt{J/\lambda}.\] ⚠ cond. Global Contactomorphism Conjecture

(iii) Selectivity factor: \[\sigma = 1 - \frac{J}{\lambda \cdot r_\text{pore}^2}\] recovering the empirical shape-selectivity of Weisz & Frilette (1960). ✓ selectivityFactor_eq
CatGT_Main.lean — helical_selectivity (HSP core) ✓ CLOSED
/-- Helical Selectivity Principle: r² ≤ J/λ ⟹ r ≤ r*(λ). -/ theorem helical_selectivity (J λ : ℝ) (hJ : 0 < J) (hλ : 0 < λ) (r_state : ℝ) (hr : 0 ≤ r_state) (h_confined : r_state ^ 2 ≤ J / λ) : r_state ≤ criticalRadius J λ hJ hλ := by unfold criticalRadius rw [← Real.sqrt_sq hr]; apply Real.sqrt_le_sqrt; exact h_confined theorem selectivityFactor_eq (J λ r_pore : ℝ) (hJ : 0 < J) (hλ : 0 < λ) (hr : 0 < r_pore) : selectivityFactor J λ r_pore hJ hλ hr = 1 - J / (λ * r_pore ^ 2) := by unfold selectivityFactor criticalRadius rw [div_pow, Real.sq_sqrt (div_nonneg (le_of_lt hJ) (le_of_lt hλ))]; ring
── CatGT_Main.lean Sorry Audit ── May 2026 ───────────────────────────────── ✓ ipr_between_zero_and_one Cauchy-Schwarz / Finset.sum ✓ helical_selectivity sqrt_le_sqrt + algebraic ← HSP ✓ criticalRadius_pos div_pos + sqrt_pos_of_pos ✓ criticalRadius_antitone sqrt_le_sqrt + div monotonicity ✓ selectivityFactor_eq ring + Real.sq_sqrt ✓ reeb_orbit_is_integral ring ⚠ catgt_dm3_transport await Mathlib VolumeForm → Part II ⚠ ensemble_scaling await bimetallic surface model → Part III ⚠ dnls_norm_conservation_ideal structural note; await ODE.Basic Total: 9 closed · 0 admits · 0 sorries (kernel-checked, Lean v4.33)

The Non-Commutativity of Catalysts

The same four operators — C (Contact/Adsorption), K (Knob/Pore constraint), F (Fold/Shape filter), U (Unfold/Desorption) — fire in different sequences depending on zeolite topology. This is operator non-commutativity made industrial.

HZSM-5 · MFI topology
C → K → F → U
Molecule adsorbs (C), immediately hits the 10-ring channel constraint (K: 5.6 Å), shape selection occurs (F), product desorbs (U). K fires before F. Aromatics favoured — they fit the channel geometry.
HMCM-22 · MWW topology
C → F → K → U
Molecule adsorbs (C), enters the large supercage and branches (F: 7.1 Å), then hits the 10-ring exit constraint (K: 4.0 Å), product desorbs (U). F fires before K. Light olefins favoured — branching precedes confinement.
MHD Reconnection · plasma
K → F → C → U
Field-line topology constrains trajectories (K), plasmoid instability fires irreversibly above Sǒ≈10⁴ (F), Alfvénic jet compresses outflow (C), plasma restabilises (U). NASA MMS grounded: mean rate 0.14 ± 0.09 V_A.

Three physical systems. Three operator sequences. One contact manifold \(\mathcal{X}_\text{cat}\). The same mathematics describes the zeolite channel, the magnetic current sheet, and — as the BZ chapter shows — the chemical oscillator. What changes between systems is not the operators but the topology that determines their order. This is the Coherence Bridge claim of CatGT, extended across 18 domains.

The Coherence Bridge — 18 Domains

The invariant \(r^*(\lambda) = \sqrt{J/\lambda}\) appears across domains when the coupling-to-binding ratio is identified appropriately. Domains with solid Lean backing are marked; the remaining are derived conditional on the Global or Plasma Contactomorphism Conjecture.

Domain\(J/\lambda\) analogueObservableStatus
Zeolite catalysis (ZSM-5, MCM-22)\(D/E_b\)Pore cut-off \(r^*\), selectivity reversalHSP derived; Lean 6✓
Metal ensembles (Pt–Sn)\(t_{ij}/U\)Ensemble size \(N^*\), propylene selectivityCorollary 1 (cond. Global Conj.)
DNLS soliton\(J/\lambda\)Self-trapping IPRDerived — direct; Lean ✓
dm³ extrudate (BASF Quattro)\(\kappa/\Delta P\)Trilobe/tetralobe shapeCorollary 2 (cond. Global Conj.)
MHD reconnection (NASA MMS)\(V_A^2/\eta\)Rate ≈ 0.1 V_A; Sǒ ≈ 10⁴DustyPlasma.lean 13✓; MMS grounded
Financial markets (CapitalGuard)\(D_s/\gamma\)EKF regime radius; live Sharpe 2.43Implemented v2.1; contactomorphism open
Autophagy / mTOR\(\mu_{\max} \approx -0.41\)mTOR limit cycle; Lyapunov WAutophagyDm3.lean — 0 sorries
Triple-alpha / stellar nucleosynthesis\(\kappa_\text{nuc}/\Delta T\)\(T^{40}\) fold at \(T^* \approx 10^8\) KAutophagyDm3.lean — 0 sorries
Polylaminin / SCI\(\mu_{\max} \approx -0.65\)6/8 patients motor recovery; Whitney A₁ foldChapter B; ANVISA Phase I Jan 2026
Wavenumber 6 / Saturn hexagon\(\eta^{-k}\) tribonaccim=6 azimuthal mode; stable decadesZenodo 19501888; partial Lean
Enceladus cryovolcanism\(\kappa_\text{cryo}/\Delta P_\text{sub}\)Plume periodicity; subsurface operator cycleIn preparation
Moon Base Architecture\(\kappa_\text{struct}/\Delta P_\text{load}\)Structural resonance modesSubmitted to NASA
Cymatics / Chladni / turtle shell\(\omega_n/\gamma_\text{damp}\)Nodal geometry; scute boundariesBienal EXP13; 7 machines; Projeto TAMAR
Faraday rotation / IFE\(V \cdot B / \gamma_\text{relax}\)Non-reciprocal phase; Verdet constantIn preparation (GOMC Vol. IV)
Dusty plasma\(\alpha_\text{dust}/\kappa^*\)\(d_f \approx 1.6\)–\(1.8\); \(\mu_{\max} = -0.42\)Vol. III Ch. 3; bridge derivation open
BSD / Collatz\(v_2(n)\cdot\log 2/\log 3\)Orbit cost = discrete \(\log L(E,1)\)GTCT_BSD_Bridge.lean — stated
Neural oscillations / HPA axis\(\mu_{\max} \approx -0.38\) to \(-0.55\)Circadian limit cycles; cortisol period T*Cited; derivation in preparation
n-Bonacci criticality thresholds\(\Delta_n = \rho_n - |\rho_n^{(2)}|\)\(\lambda_c(n) \to 7/6\) for \(n \geq 4\)Zenodo 20077205; Lean pending

Falsifiable Predictions (7–10)

All four follow from Theorem 1 conditional on the Global Contactomorphism Conjecture. Prediction 10 is the primary experimental test with existing laboratory equipment.

Prediction 7 — DNLS threshold in zeolite pores
For zeolite pore radius \(r_\text{pore}\), the self-trapping nonlinearity satisfies \(\lambda_c \approx J \cdot (r_\text{pore}/\sigma_\text{LJ})^2\). Testable by non-equilibrium MD (NEMD) on ZSM-5, SAPO-34, and MCM-22 with ethanol as probe molecule.
Prediction 8 — Pt–Sn selectivity scaling
Propylene selectivity of \(\text{Pt}_{1-x}\text{Sn}_x/\text{Al}_2\text{O}_3\) scales as \((1-x)^2 \approx 1 - r^{*2}/r_\text{pore}^2\). Testable by in-situ XAS at \(x = 0, 0.1, 0.2, 0.3, 0.4\).
Prediction 9 — Reeb-helix phase signature
Reaction coordinate \(z(t)\) should exhibit helical phase \(\theta(t) = \omega t + \theta_0\) with \(\omega = \lambda\|\psi^*\|^2\), measurable as periodic DRIFTS band modulation or helical neutron scattering.
Prediction 10 — Operator order switch in MCM-22 (primary test)
Increasing temperature (350→450 °C) or decreasing feed concentration in HMCM-22 ethanol conversion shifts firing order from C→F→K→U toward C→K→F→U. Signature: reversal of the ethoxy/diethyl-ether vs aromatic-ring DRIFTS sequence at shorter contact times. This is directly testable with existing equipment at any zeolite catalysis lab.

The Chemistry Arc — BZ, Turing, Zeolites

CatGT sits in the chemistry arc of the Principia Orthogona alongside the BZ reaction and Turing morphogenesis. The connection is not superficial:

The BZ reaction (ch-belousov-zhabotinsky.html) is a chemical oscillator where the order of autocatalytic and inhibitory steps determines whether the system oscillates or converges. Change the relative timescales and you change the firing order — exactly the operator-order sensitivity that CatGT captures.

The Oregonator (BZ model) and the DNLS equation (CatGT) are both descriptions of coupled nonlinear oscillators on a contact manifold. The BZ reaction runs at the molecular scale in solution; the zeolite runs at the molecular scale on a crystalline surface. Same contact form; different substrate; different Reeb orbit.

The difference is selectivity: the zeolite selects which molecular pathway reaches the fixed point \(x^*\). The BZ reaction selects which temporal mode dominates. The π operator (period T*) governs BZ; the Helical Selectivity Principle governs the zeolite. Both are instances of the same theorem applied to different realisations of \(\mathcal{X}_\text{cat}\).

Unification Claim (CatGT) — Informal
The BZ reaction, Turing morphogenesis, and zeolite catalysis are three instances of the same contact-geometric structure:

BZ: Oregonator on contact manifold; fixed point = limit cycle; π operator sets period.
Turing: Reaction-diffusion on contact manifold; fixed point = patterned state; K operator selects wavenumber.
Zeolite: DNLS on contact manifold; fixed point = selective product; operator order sets selectivity.

In all three: the contact form \(\alpha = dz - r^2\,d\theta\) is the universal constraint. The operators G = U ∘ F ∘ K ∘ C act on it. The fixed point is \(x^*\). The rate of convergence is μ = −2.

Central Open Problems

Conjecture — Global Contactomorphism (Open Problem 8)
There exists a contactomorphism \(\varphi\) from the DNLS phase-space cylinder (equipped with the symplectic structure from the DNLS energy functional at fixed \(\lambda\)) to the contact manifold \(\mathcal{X}_\text{cat}\), preserving \(|\psi| \mapsto r\). Under \(\varphi\): the self-trapping threshold maps to \(r = r^*(\lambda)\); the self-trapped state maps to the boundary of \(\mathcal{H}_\lambda\); the delocalised state maps to the interior.

Status: Genuine open problem in contact geometry. Not a Lean tooling issue. Proof would require symplectic reduction of the DNLS energy functional followed by contactomorphism to \(\ker(\alpha_\text{cat})\). Open — Part II
CatGT_Main.lean — open obligations ⚠ 3 ADMITS
-- (1) dm³ extrudate optimisation -- Path: Mathlib Analysis.Manifold.VolumeForm → Part II theorem catgt_dm3_transport (r_star : ℝ) (hr : 0 < r_star) : ∃ (shape : Set (ℝ × ℝ)), True := ⟨{p | p.1 ^ 2 + p.2 ^ 2 ≤ r_star ^ 2}, trivial⟩ -- (2) Pt–Sn bimetallic ensemble scaling -- Path: bimetallic surface model → Part III theorem ensemble_scaling ... := by admit -- (3) DNLS norm conservation (structural note) -- Path: Mathlib Analysis.ODE.Basic theorem dnls_norm_conservation_ideal ... := by admit
← Belousov-Zhabotinsky CatGT · GOMC Opus Part I · G6 LLC 2026 · Zenodo Turing · Morphogenesis →
The empirical foundation of CatGT rests on the work of Zilacleide de Sousa and co-workers. Her 2014 study (with Cesar, Henriques, and Teixeira da Silva) and 2023 study (with Henriques) documented the reversed product distributions between HZSM-5 and HMCM-22 that pore-size arguments could not explain. That contrast is the data CatGT was built to explain. The theoretical framework — contact geometry, operator non-commutativity [K, F] ≠ 0, Lean 4 mechanisation — is Grossi's; the experimental evidence that made it necessary is Sousa's. Without her careful catalytic work, there would be nothing to theorise.
  1. Sousa, Z.S.B., Cesar, D.V., Henriques, C.A., Teixeira da Silva, V. “Ethanol conversion over HZSM-5 and HMCM-22.” Catalysis Today 234: 182–191, 2014. doi:10.1016/j.cattod.2014.03.023
  2. Sousa, Z.S.B., Henriques, C.A. “Ethanol conversion catalyzed by MCM-22 forms.” Journal of the Brazilian Chemical Society 34: 1154–1167, 2023. doi:10.21577/0103-5053.20230008
  3. Grossi, P.N. “CatGT: Catalytic Generative Theory — operator non-commutativity as the mechanistic principle of zeolite shape selectivity.” Catalysis Today, submitted May 2026. Zenodo: 10.5281/zenodo.19117399
  4. Csicsery, S.M. “Shape-selective catalysis in zeolites.” Zeolites 4: 202–213, 1984.
  5. Avnir, D., Farin, D., Pfeifer, P. “Surface geometric irregularity of particulate materials: the fractal approach.” Journal of Colloid and Interface Science 103: 112–123, 1985.
G6 LLC  ·  g6llc@proton.me  ·  +1 (646) 342-3751