Encyclopedia Astrophysics Astrophysics Interstellar Molecules3 From Jcost Ismolecules3 Cert

ARTICLE 3 claims 2 theorems 1 model

Astrophysics Interstellar Molecules3 From Jcost Ismolecules3 Cert

A machine-checked certificate about a cost function says nothing about interstellar molecules, despite its name.

What the certificate proves

Interstellar molecules are the chemical species found in space, from simple diatomic molecules like carbon monoxide to complex organic ones. Astronomers have detected more than 200 distinct such species in the interstellar medium, the gas and dust between stars. The number 200 is a measured quantity, not a theoretical prediction.

In Recognition Science, a ledger (a discrete record of events) assigns a cost to every recognition event. The cost function J(x) = (x + 1/x)/2 - 1 measures how far a ratio x deviates from 1. The framework's library, a machine-checked collection of formal theorems, proves three general facts about this cost: it is zero when the ratio equals 1, it is never negative for positive inputs, and the golden-ratio constant phi is greater than 1.5. These facts hold for any positive real numbers m and e.

The declaration ISMolecules3Cert packages these three facts into a single structure. It contains a proof that the cost vanishes at equality, a proof that the cost is nonnegative, and a proof that phi - 3/2 is positive. The certificate is inhabited, meaning a proof object exists. But the certificate does not define what m and e mean. In the source file, domainCost is defined as Jcost (m / e) without any reference to molecules, masses, or any physical quantity.

The name suggests a connection to interstellar molecules, and a research note in the file records an intended application: the number of detected interstellar molecules, about 200, is close to phi^11, which is about 199. That note is a research idea, not a theorem. The machine-checked part proves nothing about molecules. To make the certificate about interstellar molecules, one would need to define m and e in terms of molecular counts or properties, which the file does not do.

In plain terms: the certificate establishes a small, general mathematical fact about a cost function. It does not establish that interstellar molecules number 200, nor that the golden ratio governs their diversity. The 200-plus count is an empirical measurement, and the phi^11 approximation is a numerical coincidence noted in a comment, not a derived result.

THEOREM ISMolecules3Cert · IndisputableMonolith/Astrophysics/InterstellarMolecules3FromJCost.lean
structure ISMolecules3Cert 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/Astrophysics/InterstellarMolecules3FromJCost.lean
theorem cert_inhabited : Nonempty ISMolecules3Cert := ⟨cert⟩
MODEL domainCost · IndisputableMonolith/Astrophysics/InterstellarMolecules3FromJCost.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)

What this page does not claim

The certificate does not prove that interstellar molecules number 200. The certificate does not derive the golden ratio from molecular counts. The research note about phi^11 is not a theorem.

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/Astrophysics/InterstellarMolecules3FromJCost.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