Encyclopedia Chemistry Chemistry Viscosity3 From Phi Ladder Liq Viscosity3 Cert

ARTICLE 5 claims 5 theorems

Chemistry Viscosity3 From Phi Ladder Liq Viscosity3 Cert

A formal certificate about liquid viscosity turns out to prove only three general facts about a cost function, not the viscosity ladder its name suggests.

A certificate's actual scope

Dynamic viscosity measures a fluid's internal resistance to flow: honey at about 10 pascal-seconds pours slowly, water at about 0.001 flows easily, and pitch at roughly 100 million resists almost like a solid. The Recognition Science framework's library, a machine-checked collection of formal theorems, contains a declaration named LiqViscosity3Cert that sounds like a result about these fluids. In plain language, the declaration assembles three proved facts about a cost function, a measure of mismatch between two quantities, into a single package called a certificate.

The three facts are general properties of the cost function J(x) = (x + 1/x)/2 - 1, which measures how far a ratio x sits from 1. First, when the two quantities in the ratio are equal, the cost is exactly zero. Second, for positive quantities, the cost is never negative. Third, the golden ratio phi minus 1.5 is a positive number. Each of these is proved in the library with no subject-specific assumptions, because the cost function is defined simply as J(m/e) for two real numbers m and e, with no definition of what those numbers mean for any liquid.

The research note attached to the module records where the idea was meant to go: a ladder of liquid viscosities following powers of phi, the golden ratio. The note observes that pitch divided by helium viscosity is roughly 6.25e12, close to phi raised to the 60th power, and that water viscosity sits near phi^7 times helium's viscosity. These are handwritten observations in a comment, not proved statements. The certificate itself proves nothing about honey, water, helium, or pitch, because the declaration never defines m and e in terms of any real fluid's properties.

In Recognition Science, the certificate is a template: it shows that the three general facts hold for any choice of m and e, and it records the threshold phi - 3/2 as a positive constant. What would turn this into a theorem about viscosity is a definition of m and e in a fluid's own terms, for example m as a measured viscosity and e as some reference value. Until such a definition exists, the viscosity ladder remains a research aspiration, not a result. The certificate's genuine content is the three general facts, which hold for any positive inputs whatsoever.

THEOREM cert · IndisputableMonolith/Chemistry/Viscosity3_FromPhiLadder.lean
noncomputable def cert : LiqViscosity3Cert where
  cost_at_eq := domainCost_at_eq
  cost_nonneg := domainCost_nonneg
  threshold_pos := canonicalThreshold_pos
THEOREM domainCost_at_eq · IndisputableMonolith/Chemistry/Viscosity3_FromPhiLadder.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/Viscosity3_FromPhiLadder.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/Viscosity3_FromPhiLadder.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by
  unfold canonicalThreshold; linarith [phi_gt_onePointFive]
THEOREM domainCost · IndisputableMonolith/Chemistry/Viscosity3_FromPhiLadder.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)

What this page does not claim

The certificate does not prove that any real liquid's viscosity follows a phi-power ladder. The numerical observations about pitch, water, and helium are research notes, not proved results. The declaration does not define what m and e mean for any specific fluid.

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/Viscosity3_FromPhiLadder.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