Encyclopedia Astrophysics Astrophysics Solar Radius Rs Solar Radius Cert

ARTICLE 5 claims 4 theorems 1 model

Astrophysics Solar Radius Rs Solar Radius Cert

A machine-checked certificate about the solar radius proves three general facts about a cost function, but it does not prove the radius itself equals any golden-ratio power.

The solar radius certificate

The solar radius is a measured quantity: the distance from the Sun's center to its visible surface, about 696,000 kilometers. Astronomers have measured it for centuries, and the modern value carries a small uncertainty. In the Recognition Science framework, a file named SolarRadiusCert exists in the machine-checked library of formal results. The name suggests it certifies something about this radius, but the file's actual content is narrower and more abstract.

The certificate is a structure containing three proved facts. Each fact concerns a function called domainCost, which the framework defines as a cost of recognition: a measure of how far a ratio between two positive quantities sits from equality, where the cost is zero when the quantities are equal and grows as they diverge. The three facts are: the cost is zero when the two inputs are equal; the cost is never negative for positive inputs; and a certain threshold involving the golden ratio is positive. These are general properties of the cost function, not properties specific to the Sun.

The file also contains a research note, not a formal result. The note records an idea: that the solar radius in meters, 6.96e8, is close to phi^43, where phi is the golden ratio, about 1.618. The note computes phi^43 as roughly 7.0e8 meters and calls this a match. But the note itself says this is where the idea was meant to go, not a result. The Lean code proves nothing about the Sun's radius; it proves facts about the cost function that apply to any positive numbers.

In Recognition Science, the framework models physical constants as falling on a phi-power ladder, and the solar radius note is an attempt to place the Sun on that ladder. The certificate does not establish that placement. It establishes only that the cost function has the three general properties, and that a certificate object exists. The definition of the solar radius in terms of the framework's own quantities, such as a specific mass and energy for the Sun, is absent from the file. Without that definition, the certificate cannot be a result about the Sun.

What the certificate does show is that the framework's cost function behaves sensibly: it treats equal quantities as cost-free, penalizes inequality, and has a positive threshold. These are building blocks the framework would need for any physical application. The solar radius itself remains a measured quantity, and the golden-ratio match remains an unproved research note. A reader should not take the certificate as evidence that the Sun's radius is phi^43 meters; that claim is not in the file.

THEOREM SolarRadiusCert · IndisputableMonolith/Astrophysics/Solar_Radius_RS.lean
structure SolarRadiusCert 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 domainCost_at_eq · IndisputableMonolith/Astrophysics/Solar_Radius_RS.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/Solar_Radius_RS.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/Solar_Radius_RS.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by
  unfold canonicalThreshold; linarith [phi_gt_onePointFive]
MODEL domainCost · IndisputableMonolith/Astrophysics/Solar_Radius_RS.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)

What this page does not claim

The solar radius is phi^43 meters. The certificate proves any fact specific to the Sun. The research note about the golden-ratio match is a formal result.

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