Encyclopedia Materials Materials Carbon Nanotube From Phi Ladder

ARTICLE 3 claims 2 theorems 1 model

Materials Carbon Nanotube From Phi Ladder

A single-walled carbon nanotube is a rolled graphene sheet with a diameter near one nanometer, and one framework proposes that allowed diameters follow a golden-ratio ladder.

Diameter quantization

A single-walled carbon nanotube is a cylinder of carbon atoms, one atom thick, that forms when a flat sheet of graphene rolls up. Typical diameters are small, roughly 0.7 to 2 nanometers, which is about ten thousand times thinner than a human hair. The diameter is set by how the sheet rolls, a choice that in practice yields a spread of values rather than one fixed size.

The golden ratio φ, about 1.618, is the number that solves r² = r + 1. It appears in geometry when a line is divided so that the whole is to the longer part as the longer part is to the shorter. A proposed connection to nanotubes runs through a ladder of powers: if the carbon-carbon bond length a_CC is about 1.42 Ångströms, then φ⁵ × 0.142 nm is about 1.58 nm and φ⁴ × 0.142 nm is about 0.98 nm. That range, 0.98 to 1.58 nm, sits inside the measured spread for single-walled tubes.

In Recognition Science, the framework models a discrete record of events with a forced cost function J(x) = (x + 1/x)/2 − 1. The framework's library, a machine-checked collection of formal theorems, proves three general facts about this cost: it is zero when the input is 1, it is never negative for positive inputs, and the threshold φ − 3/2 is positive. The module named CarbonNanotubeFromPhiLadder defines a cost on a ratio m/e and bundles those three facts into a certificate structure. The certificate is inhabited, meaning the facts hold.

The module proves nothing specific to carbon nanotubes. The cost is defined on a ratio m/e with no definition of what m and e mean for a tube, so the diameter ladder remains a research note, not a theorem. The general facts are stated once in a shared template and reused across many sibling modules; this one records where the idea was meant to go. What would turn it into a theorem about nanotubes is a definition of m and e in the tube's own terms.

The honest takeaway: the framework supplies a universal cost function and proves its basic properties, and a proposed diameter rule for nanotubes fits the measured range, but the connection is not yet derived. The gap is a definition, and that definition is a target for future work.

THEOREM domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Materials/CarbonNanotubeFromPhiLadder.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)
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by
  unfold canonicalThreshold; linarith [phi_gt_onePointFive]
MODEL domainCost · CNTDiameterCert · IndisputableMonolith/Materials/CarbonNanotubeFromPhiLadder.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)
structure CNTDiameterCert 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 cert_inhabited · IndisputableMonolith/Materials/CarbonNanotubeFromPhiLadder.lean
theorem cert_inhabited : Nonempty CNTDiameterCert := ⟨cert⟩

What this page does not claim

The module does not prove that nanotube diameters follow the golden-ratio ladder. The module does not derive the carbon-carbon bond length or the nanotube diameter range from the framework. The module does not establish that the cost function applies to nanotubes without a definition of m and e.

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/Materials/CarbonNanotubeFromPhiLadder.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