Encyclopedia Chemistry Chemistry Lipid Bilayer Thickness From Phi

ARTICLE 4 claims 2 theorems 1 measured

Chemistry Lipid Bilayer Thickness From Phi

A cell membrane's thickness lands near 4 nanometers, and the golden ratio offers a way to see why.

The bilayer estimate

A lipid bilayer is the thin, greasy film that forms the outer boundary of every living cell. It is made of two layers of fat-like molecules called amphiphiles, each with a water-loving head and a water-fearing tail. Measured across both layers, the membrane's thickness is a physical fact with a narrow range: about 3 to 5 nanometers, where one nanometer is a millionth of a millimeter.

The golden ratio, usually written φ, is the number that solves r² = r + 1, approximately 1.618. It appears in geometry, in the spiral growth of shells, and in the proportions of the Parthenon. Its cube, φ³, is about 4.24. Multiply that by 0.943 nanometers, a typical size for the head group of an amphiphile molecule, and the result is about 4.0 nanometers. That lands squarely inside the measured 3 to 5 nanometer range for a bilayer's thickness.

In Recognition Science, the framework models this agreement as a recognition cost, a number that measures how far a proposed ratio sits from a perfect match. The framework's central cost function, J(x) = (x + 1/x)/2 - 1, is zero when x equals 1 and grows as x moves away. Its library of machine-checked theorems proves three general facts about this cost: it vanishes when the two quantities are equal, it is never negative for positive inputs, and the threshold φ - 3/2 is positive. These are facts about the cost function itself, not about membranes.

The module named LipidBilayerThicknessFromPhi defines its cost as J(m/e), where m and e are two real numbers, but it never defines what m and e mean for a bilayer. The docstring records the intended research direction: set m to the membrane thickness and e to the head group size, and the φ³ estimate follows. The code proves the general cost properties and nothing specific to lipids. What would turn this into a theorem about membranes is a definition of m and e in the subject's own terms, which the code does not supply.

The honest takeaway is that the arithmetic works and the framework's machinery is sound, but the bridge from the golden ratio to a real membrane remains a research note, not a proved result. The number 4 nanometers is a plausible estimate, consistent with measurement, and the framework gives a clean way to express the match. The next step, defining the bilayer's own quantities inside the cost function, is open.

MEASURED LipidBilayerCert · IndisputableMonolith/Chemistry/LipidBilayerThicknessFromPhi.lean
structure LipidBilayerCert where
  cost_at_eq : ∀ r : ℝ, r ≠ 0 → domainCost r r = 0
  cost_nonneg : ∀ m e : ℝ, 0 < m → 0 < e → 0 ≤ domainCost m e
  threshold_pos : 0 < canonicalThreshold
THEOREM canonicalThreshold_pos · IndisputableMonolith/Chemistry/LipidBilayerThicknessFromPhi.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by
  unfold canonicalThreshold; linarith [phi_gt_onePointFive]
THEOREM domainCost_at_eq · domainCost_nonneg · IndisputableMonolith/Chemistry/LipidBilayerThicknessFromPhi.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 (m e : ℝ) (hm : 0 < m) (he : 0 < e) : 0 ≤ domainCost m e := by
  unfold domainCost; exact Jcost_nonneg (div_pos hm he)
MODEL domainCost · IndisputableMonolith/Chemistry/LipidBilayerThicknessFromPhi.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)

What this page does not claim

The module does not prove that a lipid bilayer is 4 nanometers thick. The golden ratio estimate is not a derived law of membrane physics. The framework's cost function alone does not force any particular membrane thickness.

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