Encyclopedia Astrophysics Astrophysics Galactic Foundation From Jcost Gal Nuc Disk Cert
ARTICLE 4 claims 3 theorems 1 model
Astrophysics Galactic Foundation From Jcost Gal Nuc Disk Cert
A machine-checked certificate bundles three general facts about a cost function; it says nothing about the Milky Way's nuclear disk.
What GalNucDiskCert proves
The ledger, a discrete record of recognition events, assigns a cost to comparing two quantities. In the Recognition Science framework, that cost is written as J(x) = (x + 1/x)/2 - 1, a function that measures how far a ratio x is from 1. The declaration GalNucDiskCert packages three properties of this cost when it is applied to a ratio of two real numbers m and e. First, when m equals e, the cost is zero: comparing a thing to itself costs nothing. Second, for positive m and e, the cost is never negative. Third, the number phi - 3/2 is positive, where phi is the golden ratio, about 1.618. These three facts are proved in the machine-checked library of formal theorems.
What GalNucDiskCert does not do is connect these facts to any specific astronomical object. The declaration's name suggests a galactic nuclear disk, and a research note mentions the Milky Way's central region at about 200 parsecs, close to phi^12 parsecs. But the formal definition of the cost uses only the ratio m/e; it never defines what m or e mean in galactic terms. The three proved facts are universally quantified: they hold for any positive real numbers, not for the Milky Way. The note itself says the paragraph is a research note recording where the idea was meant to go, not a result. The certificate is a template, shared verbatim with 2383 sibling declarations, each with a different subject name but the same three general facts.
To make GalNucDiskCert a theorem about the galactic nucleus, one would need a definition of m and e in that subject's own terms, for example the mass of the disk and the mass of something else, or a radius and a scale. That definition is absent. So the declaration establishes a small piece of the framework's cost theory, and it leaves the astrophysical application as a target, not an achievement. A reader should take the three cost facts as proved, and the galactic connection as an unfulfilled plan.
THEOREM domainCost_at_eq · IndisputableMonolith/Astrophysics/GalacticFoundationFromJCost.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/Astrophysics/GalacticFoundationFromJCost.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/Astrophysics/GalacticFoundationFromJCost.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by
unfold canonicalThreshold; linarith [phi_gt_onePointFive]
MODEL GalNucDiskCert · IndisputableMonolith/Astrophysics/GalacticFoundationFromJCost.lean
structure GalNucDiskCert 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
What this page does not claim
GalNucDiskCert does not prove that the Milky Way's nuclear disk has radius 200 parsecs. GalNucDiskCert does not define what m or e mean for any galaxy. The three cost facts do not depend on the galactic context; they hold for any positive real numbers.
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/GalacticFoundationFromJCost.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 definition of m and e in galactic terms would turn GalNucDiskCert into a theorem about the Milky Way's nuclear disk?
- Which of the 2383 sibling declarations have actually supplied a subject-specific definition of m and e?
- Does the phi^12 parsec scale for the nuclear disk match any measured galactic structure?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM domainCost_at_eq · IndisputableMonolith/Astrophysics/GalacticFoundationFromJCost.lean
theorem domainCost_at_eq (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by unfold domainCost; rw [div_self h]; exact Jcost_unit0When m equals e, the cost is zero. domainCost_at_eq · IndisputableMonolith/Astrophysics/GalacticFoundationFromJCost.leanTHEOREM domainCost_nonneg · IndisputableMonolith/Astrophysics/GalacticFoundationFromJCost.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)For positive m and e, the cost is never negative. domainCost_nonneg · IndisputableMonolith/Astrophysics/GalacticFoundationFromJCost.leanTHEOREM canonicalThreshold_pos · IndisputableMonolith/Astrophysics/GalacticFoundationFromJCost.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by unfold canonicalThreshold; linarith [phi_gt_onePointFive]The number phi - 3/2 is positive. canonicalThreshold_pos · IndisputableMonolith/Astrophysics/GalacticFoundationFromJCost.leanMODEL GalNucDiskCert · IndisputableMonolith/Astrophysics/GalacticFoundationFromJCost.lean
structure GalNucDiskCert 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 < canonicalThresholdThe certificate is a template, shared verbatim with 2383 sibling declarations. GalNucDiskCert · IndisputableMonolith/Astrophysics/GalacticFoundationFromJCost.lean