Encyclopedia Astrophysics Astrophysics Pulsar Period Rs Pulsar Period Cert
ARTICLE 3 claims 3 theorems
Astrophysics Pulsar Period Rs Pulsar Period Cert
A formal certificate named for pulsar timing turns out to prove only three general facts about a cost function, saying nothing specific about stars.
The certificate's scope
A pulsar is a rotating neutron star that beams radio waves, and its period is the time for one rotation, ranging from milliseconds to seconds. The Recognition Science framework's ledger (a discrete record of recognition events) models a cost of recognition, written J, which measures how far a ratio sits from unity. The declaration PulsarPeriodCert packages three proved facts about that cost function: it is zero when the two quantities are equal, it never goes negative for positive inputs, and a certain threshold involving the golden ratio is positive.
These three facts are general properties of the cost function, not results about pulsars. The certificate defines the cost as J of the ratio m/e, but it never defines what m and e mean for a pulsar. The library states this plainly: the module proves nothing specific to pulsar timing, because the cost is defined without reference to the subject. The research note attached to the module records where the idea was meant to go, not a result that has been established.
What the certificate does establish is that the three general properties are consistent and provable: the cost vanishes at equality, it is nonnegative, and the threshold phi minus 3/2 is positive. These are real theorems, machine-checked in the framework's library of formal proofs. The certificate also proves that such a structure exists, which is a way of saying the three properties do not contradict one another.
In Recognition Science, the framework models the golden ratio as a special scaling constant, and the threshold phi minus 3/2 is a positive number because phi is greater than 1.5. But the certificate does not connect these facts to any measured pulsar period. The docstring's suggestion that phi to the power minus 1 gives a typical pulsar period, or phi to the power minus 10 gives a millisecond pulsar period, is a research note, not a theorem or a measurement.
The practical consequence is modest but clear: the certificate is a sound but empty shell for pulsar physics. To make it a theorem about pulsars, one would need to define m and e in terms of pulsar properties, such as mass and some emission energy. Until that definition exists, the certificate says nothing about the sky, and the empirical question of whether pulsar periods follow a phi-power ladder remains open.
THEOREM domainCost · IndisputableMonolith/Astrophysics/Pulsar_Period_RS.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)
THEOREM domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Astrophysics/Pulsar_Period_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 (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]
THEOREM cert_inhabited · IndisputableMonolith/Astrophysics/Pulsar_Period_RS.lean
theorem cert_inhabited : Nonempty PulsarPeriodCert := ⟨cert⟩
What this page does not claim
The certificate does not claim any measured pulsar period matches a phi-power value. The certificate does not claim the golden ratio is physically special for pulsars. The certificate does not claim the research note's period suggestions are derived results.
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/Pulsar_Period_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:
- What physical definitions of m and e would make the cost function a genuine model of pulsar timing?
- Do measured pulsar periods actually follow a phi-power ladder when tested against a defined model?
- How does the framework's cost function connect to the classical physics of rotating neutron stars?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM domainCost · IndisputableMonolith/Astrophysics/Pulsar_Period_RS.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)The certificate defines the cost as J of the ratio m/e, but it never defines what m and e mean for a pulsar. domainCost · IndisputableMonolith/Astrophysics/Pulsar_Period_RS.leanTHEOREM domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Astrophysics/Pulsar_Period_RS.lean
theorem domainCost_at_eq (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by unfold domainCost; rw [div_self h]; exact Jcost_unit0theorem 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]It is zero when the two quantities are equal, it never goes negative for positive inputs, and a certain threshold involving the golden ratio is positive. domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Astrophysics/Pulsar_Period_RS.leanTHEOREM cert_inhabited · IndisputableMonolith/Astrophysics/Pulsar_Period_RS.lean
theorem cert_inhabited : Nonempty PulsarPeriodCert := ⟨cert⟩The certificate also proves that such a structure exists, which is a way of saying the three properties do not contradict one another. cert_inhabited · IndisputableMonolith/Astrophysics/Pulsar_Period_RS.lean