Encyclopedia Astrophysics Astrophysics Pulsar Emission Regimes From Rs Pulsar Regime Count

ARTICLE 2 claims 2 theorems

Astrophysics Pulsar Emission Regimes From Rs Pulsar Regime Count

A machine-checked theorem counts five canonical pulsar emission regimes, but it does not prove that real pulsars fall into exactly these classes.

The five regimes

Pulsars are rapidly rotating neutron stars that emit beams of radiation. Astronomers group them by their emission behavior: ordinary pulsars, millisecond pulsars, magnetars, rotating radio transients, and fast radio burst sources. The Recognition Science framework's machine-checked library of formal theorems contains a declaration, pulsarRegime_count, that counts these five classes. The theorem states that the number of these canonical regimes is exactly five, and the proof is a direct computation that the library's kernel verifies with no axioms beyond the standard ones.

The framework also defines a period function on the natural numbers: period(k) equals phi raised to the k-th power, where phi is the golden ratio. A companion theorem proves that the ratio of consecutive periods is always phi, so period(k+1) / period(k) = phi for every k. Together these declarations form a certificate: five regimes, a phi ratio between adjacent steps, and positive periods throughout. The certificate is a formal object, meaning the library has checked that the statements follow from its definitions.

What the declaration does not do is claim that real astrophysical pulsars are governed by this scheme. The five names are labels chosen for the inductive type; nothing in the formal theorem connects them to observed pulsar populations. The phi-ladder period scaling is a definitional choice, not a measured property of actual pulsar periods. The framework's library proves internal consistency, not empirical correspondence. A real pulsar that does not fit one of the five classes would not contradict the theorem, because the theorem only counts the labels as defined.

The practical upshot is modest but precise. Within the framework, the count of five is a proved fact, and the ratio between adjacent period rungs is proved to be the golden ratio. For a reader outside the framework, the declaration offers a formal template: if you accept the five labels and the period definition, the count and ratio follow by computation. It does not offer a prediction about the sky. The gap between the formal structure and observed pulsar behavior remains open, and the framework does not claim to have closed it.

THEOREM pulsarRegime_count · IndisputableMonolith/Astrophysics/PulsarEmissionRegimesFromRS.lean
theorem pulsarRegime_count : Fintype.card PulsarRegime = 5 := by decide
THEOREM period_ratio · IndisputableMonolith/Astrophysics/PulsarEmissionRegimesFromRS.lean
theorem period_ratio (k : ℕ) : period (k + 1) / period k = phi := by
  unfold period
  have hpos : (0 : ℝ) < phi ^ k := pow_pos phi_pos k
  rw [div_eq_iff hpos.ne', pow_succ]
  ring

What this page does not claim

The declaration does not claim that real pulsars fall into exactly these five classes. The phi-ladder period scaling is not claimed to match measured pulsar periods. The theorem does not establish any physical mechanism for pulsar emission.

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