Encyclopedia Chemistry Chemistry Ziegler Natta From Jcost

ARTICLE 4 claims 2 theorems 1 model

Chemistry Ziegler Natta From Jcost

A machine-checked library proves three general facts about a cost function, but the chemistry module itself contains no chemical theorem.

Ziegler-Natta and the cost function

Ziegler-Natta catalysis is a family of processes that polymerize alkenes into plastics with a controlled molecular architecture. The defining achievement, recognized with the 1963 Nobel Prize in Chemistry to Karl Ziegler and Giulio Natta, is the production of isotactic polypropylene, where every methyl group sits on the same side of the polymer backbone. Industrial catalysts achieve stereoregularity above 99 percent, meaning fewer than one monomer unit in a hundred is inserted with the wrong orientation.

The module named ZieglerNattaFromJCost in the framework's machine-checked library of formal theorems does not prove anything about this chemistry. Its definition of domainCost, a cost that measures the mismatch between a measured and an expected value, is simply the framework's universal cost function J applied to the ratio of the two. The file proves three general facts about this cost: it is zero when the measured value equals the expected value, it is never negative for positive inputs, and a threshold constant built from the golden ratio is positive. Each of these is a theorem about the cost function itself, not about polymers.

The research note attached to the module records where the idea was meant to go. It predicts that stereospecificity equals 1 minus J(φ)/2, roughly 94.1 percent, consistent with the observed greater than 98 percent isotacticity for optimal catalysts. That prediction is a hypothesis, not a proved result, because the module never defines what "measured" and "expected" mean in chemical terms. The gap is explicit in the file: the cost is defined as J(m/e) without reference to any chemical quantity, so the chain from cost to catalyst is missing its first link.

What the module does establish is a template. The same three cost facts appear verbatim in more than two thousand sibling modules, all quantified once in a shared file. The chemistry module is an instance of that template, and its certificate bundles the three theorems into a single structure. A reader who wants a theorem about Ziegler-Natta catalysis needs a definition of the measured and expected values in the catalyst's own terms; until that exists, the chemistry claim remains a research note.

THEOREM domainCost · IndisputableMonolith/Chemistry/ZieglerNattaFromJCost.lean
def domainCost (measured expected : ℝ) : ℝ := Jcost (measured / expected)
MODEL domainCost · IndisputableMonolith/Chemistry/ZieglerNattaFromJCost.lean
def domainCost (measured expected : ℝ) : ℝ := Jcost (measured / expected)
THEOREM domainCost_at_equilibrium · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Chemistry/ZieglerNattaFromJCost.lean
theorem domainCost_at_equilibrium (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by
  unfold domainCost; rw [div_self h]; exact Jcost_unit0
theorem domainCost_nonneg (m e : ℝ) (hm : 0 < m) (he : 0 < e) : 0 ≤ domainCost m e := by
  unfold domainCost; exact Jcost_nonneg (div_pos hm he)
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by
  unfold canonicalThreshold; linarith [phi_gt_onePointFive]
HYPOTHESIS cert_inhabited · IndisputableMonolith/Chemistry/ZieglerNattaFromJCost.lean
theorem cert_inhabited : Nonempty ZieglerNattaCert := ⟨cert⟩

What this page does not claim

This module proves that Ziegler-Natta catalysts achieve any particular stereospecificity. The 94.1 percent figure is a proved consequence of the cost function. The framework derives the existence or mechanism of Ziegler-Natta catalysis.

Verify this page

Every tagged claim above names its theorem. To check one yourself rather than trust this page, elaborate the source module with Lean 4 and audit its axiom basis:

$ lake env lean IndisputableMonolith/Chemistry/ZieglerNattaFromJCost.lean
expected axiom basis: [propext, Classical.choice, Quot.sound] (the Lean kernel's standard three; no RS-specific axioms)

A page whose claims cannot be reproduced this way does not ship. In production, every anchor links to the exact declaration in the public source release, and this block carries the build receipt for the page itself.

Derived articles

This page is generated by a question-recursion engine: the questions its answers raise become the next pages. The current agenda, with open targets marked red:

MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND