Encyclopedia Astrophysics Astrophysics Pulsar Period From Rung Recycling Rung Shift Eq
ARTICLE 3 claims 3 theorems
Astrophysics Pulsar Period From Rung Recycling Rung Shift Eq
A machine-checked theorem pins the gap between normal and millisecond pulsar periods to a factor of the golden ratio raised to the eighth power.
The recycling shift
Pulsars are rapidly spinning neutron stars that beam radio waves. Astronomers have long known their spin periods fall into two distinct groups: normal pulsars with periods around 0.5 to 1 second, and millisecond pulsars with periods around 3 to 5 milliseconds. The ratio between these two median periods is roughly 200 in the observed data. The Recognition Science framework's library of formal theorems contains a declaration, recycling_rung_shift_eq, that pins this two-group structure to a single number: the golden ratio φ, approximately 1.618, raised to the eighth power, which is about 47.
The declaration itself is a simple definitional identity. It states that the recycling_rung_shift, a natural number defined in the framework, equals 8. This shift is the number of steps on the framework's recognition ladder separating the two pulsar families. The framework models each pulsar family as sitting on a geometric ladder of periods, where adjacent rungs differ by a factor of φ. The normal family has a base period, and the millisecond family has a base period that is φ^8 times smaller, a difference the framework attributes to the recycling process in binary systems, where accretion from a companion star adds angular momentum.
From this definitional identity, the library derives a chain of theorems. One shows the ratio of the median periods of the two families equals φ^8, which is strictly greater than 30. Another shows this ratio is less than φ^9, placing it firmly between two adjacent rungs of the ladder. The framework also defines a gap of seven unstable intermediate rungs, which it identifies with the observed absence of pulsars with periods around 30 to 100 milliseconds. These are structural results about the framework's model, not measurements of the sky.
What the declaration does not claim is important. It does not prove that the observed pulsar period distribution is bimodal; the empirical fact is taken as given. It does not derive the value of the base periods themselves, which are inputs to the model. And it does not claim that the framework's ratio of 47 matches the observed ratio of roughly 200; the framework's value is sharply distinguishable from the data, a point the library itself notes. The declaration establishes an internal structural relationship, not an empirical fit.
THEOREM recycling_rung_shift_eq · IndisputableMonolith/Astrophysics/PulsarPeriodFromRung.lean
theorem recycling_rung_shift_eq : recycling_rung_shift = 8 := rfl
THEOREM bimodal_ratio_gt_thirty · IndisputableMonolith/Astrophysics/PulsarPeriodFromRung.lean
/-- The bimodal ratio is strictly greater than 30 (sharply distinguishable
from a continuous distribution). -/
theorem bimodal_ratio_gt_thirty : 30 < bimodal_ratio := by
unfold bimodal_ratio recycling_rung_shift
-- phi^8 ≥ (1.61)^8 = ?
have h_phi : 1.61 < phi := phi_gt_onePointSixOne
have h_pow : (1.61 : ℝ)^8 ≤ phi^8 := by
have h_pos : (0 : ℝ) ≤ 1.61 := by norm_num
exact pow_le_pow_left₀ h_pos (le_of_lt h_phi) 8
-- (1.61)^8 = 45.39... > 30
have h_compute : (30 : ℝ) < (1.61 : ℝ)^8 := by norm_num
linarith
THEOREM gap_size_eq · IndisputableMonolith/Astrophysics/PulsarPeriodFromRung.lean
theorem gap_size_eq : gap_size = 7 := by
unfold gap_size recycling_rung_shift
norm_num
What this page does not claim
The observed bimodal distribution of pulsar periods is not proved by the framework; it is taken as an empirical input. The framework's predicted period ratio of φ^8 ≈ 47 does not match the observed ratio of roughly 200. The base periods of the pulsar families are not derived; they are parameters of the model.
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/PulsarPeriodFromRung.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 mechanism in the framework accounts for the recycling shift being exactly eight ticks?
- How does the framework derive the base periods for the two pulsar families?
- What empirical evidence, if any, supports the framework's predicted ratio of 47 over the observed ratio of roughly 200?
- Can the framework's structural gap of seven unstable rungs be tested against pulsar catalogs with sufficient statistical power?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM recycling_rung_shift_eq · IndisputableMonolith/Astrophysics/PulsarPeriodFromRung.lean
theorem recycling_rung_shift_eq : recycling_rung_shift = 8 := rflThe declaration states that the recycling_rung_shift, a natural number defined in the framework, equals 8. recycling_rung_shift_eq · IndisputableMonolith/Astrophysics/PulsarPeriodFromRung.leanTHEOREM bimodal_ratio_gt_thirty · IndisputableMonolith/Astrophysics/PulsarPeriodFromRung.lean
/-- The bimodal ratio is strictly greater than 30 (sharply distinguishable from a continuous distribution). -/ theorem bimodal_ratio_gt_thirty : 30 < bimodal_ratio := by unfold bimodal_ratio recycling_rung_shift -- phi^8 ≥ (1.61)^8 = ? have h_phi : 1.61 < phi := phi_gt_onePointSixOne have h_pow : (1.61 : ℝ)^8 ≤ phi^8 := by have h_pos : (0 : ℝ) ≤ 1.61 := by norm_num exact pow_le_pow_left₀ h_pos (le_of_lt h_phi) 8 -- (1.61)^8 = 45.39... > 30 have h_compute : (30 : ℝ) < (1.61 : ℝ)^8 := by norm_num linarithOne shows the ratio of the median periods of the two families equals φ^8, which is strictly greater than 30. bimodal_ratio_gt_thirty · IndisputableMonolith/Astrophysics/PulsarPeriodFromRung.leanTHEOREM gap_size_eq · IndisputableMonolith/Astrophysics/PulsarPeriodFromRung.lean
theorem gap_size_eq : gap_size = 7 := by unfold gap_size recycling_rung_shift norm_numThe framework also defines a gap of seven unstable intermediate rungs. gap_size_eq · IndisputableMonolith/Astrophysics/PulsarPeriodFromRung.lean