Encyclopedia Chemistry Chemistry Polymer Chain Length From Phi Ladder Polymer Regime Count
ARTICLE 3 claims 2 theorems 1 model
Chemistry Polymer Chain Length From Phi Ladder Polymer Regime Count
A machine-checked theorem counts five canonical polymer chain shapes, tying a materials science classification to the golden ratio.
Counting polymer regimes
Polymer chains are long molecules whose shape depends on their environment. Chemists classify these shapes into standard regimes: a stiff rigid rod, a flexible worm-like chain, a freely jointed ideal chain, a swollen chain in a good solvent, and a collapsed globule. The declaration polymerRegimeCount, a theorem in the Recognition Science framework's machine-checked library of formal theorems, establishes that this classification has exactly five members. It does so by defining an inductive type with those five constructors and proving that the number of elements in that type is 5.
The proof is a direct computation, not a physical derivation. The theorem states that the cardinality of the type PolymerRegime is 5, and the proof is by the decide tactic, which simply evaluates the finite enumeration. The framework does not claim that polymer physics must have five regimes; it defines a classification with five named entries and verifies the count. The physical justification for why these five regimes are the canonical ones comes from polymer science, not from the theorem.
The same library file connects this count to the golden ratio. A separate definition, persistenceLength, assigns to each natural number k a length phi^k, where phi is the golden ratio. A theorem proves that the ratio of successive persistence lengths is exactly phi. The framework models a ledger, a discrete record of events, where each step multiplies length by the golden ratio. This gives a ladder of lengths, and the five regimes sit on this ladder as a finite set of rungs.
The certificate structure polymerChainCert bundles these two facts: the count of five regimes and the phi ratio. It exists as a formal object that packages the two theorems together. The framework's contribution is this formal packaging, not new experimental data about polymers. The Flory exponent for excluded-volume chains, nu = 3/5, appears in the docstring as a classical result, and the framework notes that its own value, 1/phi^(1/3) ≈ 0.603, is consistent with the measured Flory value of 0.588.
What the declaration does not claim is equally important. It does not prove that real polymer chains must fall into exactly five observable classes. It does not derive the Flory exponent from first principles. It does not assert that the golden ratio controls polymer physics in any measurable way beyond the formal ladder defined here. The count is a definitional choice, verified by computation, and the phi ratio is a property of that definition.
THEOREM polymerRegimeCount · IndisputableMonolith/Chemistry/PolymerChainLengthFromPhiLadder.lean
theorem polymerRegimeCount : Fintype.card PolymerRegime = 5 := by decide
THEOREM persistenceLengthRatio · IndisputableMonolith/Chemistry/PolymerChainLengthFromPhiLadder.lean
theorem persistenceLengthRatio (k : ℕ) :
persistenceLength (k + 1) / persistenceLength k = phi := by
unfold persistenceLength
have hpos := pow_pos phi_pos k
rw [pow_succ, div_eq_iff hpos.ne']
ring
MODEL polymerChainCert · IndisputableMonolith/Chemistry/PolymerChainLengthFromPhiLadder.lean
noncomputable def polymerChainCert : PolymerChainCert where
five_regimes := polymerRegimeCount
phi_ratio := persistenceLengthRatio
What this page does not claim
The theorem does not prove that real polymer chains must have exactly five observable classes. The framework does not derive the Flory exponent from first principles. The golden ratio ladder is a definitional model, not a measured property of polymers.
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/PolymerChainLengthFromPhiLadder.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:
- What physical evidence determines the canonical set of polymer regimes?
- Does the golden ratio ladder appear in measured polymer persistence lengths?
- How does the framework derive the Flory exponent from its axioms?
- What is the relationship between the five polymer regimes and the eight-tick recognition cycle?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM polymerRegimeCount · IndisputableMonolith/Chemistry/PolymerChainLengthFromPhiLadder.lean
theorem polymerRegimeCount : Fintype.card PolymerRegime = 5 := by decideThe declaration polymerRegimeCount establishes that this classification has exactly five members. polymerRegimeCount · IndisputableMonolith/Chemistry/PolymerChainLengthFromPhiLadder.leanTHEOREM persistenceLengthRatio · IndisputableMonolith/Chemistry/PolymerChainLengthFromPhiLadder.lean
theorem persistenceLengthRatio (k : ℕ) : persistenceLength (k + 1) / persistenceLength k = phi := by unfold persistenceLength have hpos := pow_pos phi_pos k rw [pow_succ, div_eq_iff hpos.ne'] ringA theorem proves that the ratio of successive persistence lengths is exactly phi. persistenceLengthRatio · IndisputableMonolith/Chemistry/PolymerChainLengthFromPhiLadder.leanMODEL polymerChainCert · IndisputableMonolith/Chemistry/PolymerChainLengthFromPhiLadder.lean
noncomputable def polymerChainCert : PolymerChainCert where five_regimes := polymerRegimeCount phi_ratio := persistenceLengthRatioThe certificate structure polymerChainCert bundles these two facts: the count of five regimes and the phi ratio. polymerChainCert · IndisputableMonolith/Chemistry/PolymerChainLengthFromPhiLadder.lean