Encyclopedia Chemistry Chemistry Solvent Viscosity From Phi Ladder Solv Visc Cert
ARTICLE 4 claims 4 theorems
Chemistry Solvent Viscosity From Phi Ladder Solv Visc Cert
A machine-checked certificate about a cost function carries three general properties, but it says nothing about solvents until the ratio is tied to a physical model.
The certificate's scope
Solvent dynamic viscosity measures how a fluid resists flow; water at 20 °C is about 1 mPa·s, benzene about 0.65, ethylene glycol about 16. A common empirical pattern places these values on a ladder of powers of the golden ratio φ ≈ 1.618: ethylene glycol over water is roughly φ^6 ≈ 17.9. The declaration SolvViscCert is a machine-checked certificate, a formal object that bundles three proved facts about a cost function.
The cost function here is Jcost, defined as J(x) = (x + 1/x)/2 - 1, which vanishes when its input equals 1 and is nonnegative for positive inputs. The certificate packs three theorems: the cost is zero when the two quantities are equal, it is nonnegative for positive inputs, and the threshold φ - 3/2 is positive. These are general analytic facts, not statements about chemistry. The certificate's name suggests a solvent viscosity application, but its definition only sets a ratio m/e without specifying what m and e mean physically.
In Recognition Science, the framework models a ledger of recognition events with a forced cost; the golden ratio emerges as a self-similar scaling. The viscosity ladder idea would be a hypothesis: solvent viscosities follow φ^n mPa·s. That hypothesis is not proved here. The certificate would become a theorem about viscosity only if m and e were defined in terms of solvent properties, which the current declaration does not do.
The certificate's value is formal hygiene: it shows that three properties hold for any positive ratio, and it states them in a machine-checked library of formal theorems. What it does not do is connect those properties to benzene or water. The research note records the intended direction, but the proof itself is silent on chemistry.
THEOREM domainCost_at_eq · IndisputableMonolith/Chemistry/SolventViscosityFromPhiLadder.lean
theorem domainCost_at_eq (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by
unfold domainCost; rw [div_self h]; exact Jcost_unit0
THEOREM domainCost_nonneg · IndisputableMonolith/Chemistry/SolventViscosityFromPhiLadder.lean
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 · IndisputableMonolith/Chemistry/SolventViscosityFromPhiLadder.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by
unfold canonicalThreshold; linarith [phi_gt_onePointFive]
THEOREM cert_inhabited · IndisputableMonolith/Chemistry/SolventViscosityFromPhiLadder.lean
theorem cert_inhabited : Nonempty SolvViscCert := ⟨cert⟩
What this page does not claim
No claim that solvent viscosities follow φ^n is proved here. No claim that the certificate applies to any specific solvent. No claim that the framework derives the viscosity ladder from first principles.
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/SolventViscosityFromPhiLadder.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 definitions of m and e would make the viscosity ladder a theorem?
- Does the empirical φ^n pattern hold for a broader set of solvents?
- How does Jcost relate to the framework's forcing chain for viscosity?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM domainCost_at_eq · IndisputableMonolith/Chemistry/SolventViscosityFromPhiLadder.lean
theorem domainCost_at_eq (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by unfold domainCost; rw [div_self h]; exact Jcost_unit0The cost function Jcost is zero when the two quantities are equal. domainCost_at_eq · IndisputableMonolith/Chemistry/SolventViscosityFromPhiLadder.leanTHEOREM domainCost_nonneg · IndisputableMonolith/Chemistry/SolventViscosityFromPhiLadder.lean
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)The cost function is nonnegative for positive inputs. domainCost_nonneg · IndisputableMonolith/Chemistry/SolventViscosityFromPhiLadder.leanTHEOREM canonicalThreshold_pos · IndisputableMonolith/Chemistry/SolventViscosityFromPhiLadder.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by unfold canonicalThreshold; linarith [phi_gt_onePointFive]The threshold phi - 3/2 is positive. canonicalThreshold_pos · IndisputableMonolith/Chemistry/SolventViscosityFromPhiLadder.leanTHEOREM cert_inhabited · IndisputableMonolith/Chemistry/SolventViscosityFromPhiLadder.lean
theorem cert_inhabited : Nonempty SolvViscCert := ⟨cert⟩The certificate bundles three proved facts about a cost function. cert_inhabited · IndisputableMonolith/Chemistry/SolventViscosityFromPhiLadder.lean