Encyclopedia Astrophysics Astrophysics Pulsar Emission Regimes From Rs Period Pos
ARTICLE 4 claims 2 theorems 2 models
Astrophysics Pulsar Emission Regimes From Rs Period Pos
A machine-checked theorem ensures that every period on the framework's pulsar ladder is a positive number, a small but load-bearing fact for the astrophysical model.
The positivity guarantee
In the Recognition Science framework, the declaration period_pos is a formal theorem stating that for any natural number k, the period value phi^k is greater than zero. Here phi is the golden ratio, approximately 1.618, and the period is defined as a power of this constant. The theorem is proved in the framework's machine-checked library of formal theorems, with zero unproved assumptions and zero axioms beyond the standard logical foundation.
The statement itself is simple: every term in the sequence phi^0, phi^1, phi^2, and so on is a positive real number. Because phi is positive, any power of phi is also positive. The proof in the library unfolds the definition of period, invokes the fact that a positive number raised to any natural power stays positive, and completes the argument. This is a foundational fact that supports the framework's model of pulsar emission regimes.
The framework uses this positivity result as part of a larger construction. It defines five canonical pulsar emission regimes: normal pulsar, millisecond pulsar, magnetar, rotating radio transient, and fast radio burst source. The framework models the periods of these regimes as lying on a ladder where each adjacent ratio equals the golden ratio. The period_pos theorem guarantees that no period on this ladder is zero or negative, which is a necessary condition for the periods to represent physically meaningful time intervals.
What the theorem does not claim is equally important. It does not assert that any actual pulsar has a period equal to phi^k for some integer k. It does not claim that the five regimes are exhaustive or that real astrophysical objects must fall into one of these categories. The theorem only establishes a mathematical property of the framework's own definition of period, not an empirical fact about the universe. The framework's library proves the formal structure; the comparison to measured pulsar periods remains a separate empirical question.
Within the framework, this positivity guarantee is a small but necessary piece. It ensures that the period ladder is well-formed, that ratios between adjacent rungs are computable without division by zero, and that the model's internal consistency holds. For a reader outside the framework, the theorem is a reminder that formal verification can certify even the most basic mathematical facts, and that such certification is a prerequisite for building larger claims on top of them.
THEOREM period_pos · IndisputableMonolith/Astrophysics/PulsarEmissionRegimesFromRS.lean
theorem period_pos (k : ℕ) : 0 < period k := pow_pos phi_pos k
MODEL period · IndisputableMonolith/Astrophysics/PulsarEmissionRegimesFromRS.lean
noncomputable def period (k : ℕ) : ℝ := phi ^ k
MODEL PulsarRegime · IndisputableMonolith/Astrophysics/PulsarEmissionRegimesFromRS.lean
inductive PulsarRegime where
| normal
| millisecond
| magnetar
| rrat
| frbSource
deriving DecidableEq, Repr, BEq, Fintype
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
No actual pulsar has been measured to have a period exactly equal to a power of the golden ratio. The five listed regimes are not claimed to be an exhaustive classification of all pulsar types. The theorem does not establish any physical law connecting pulsar periods to the golden ratio.
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:
- How does the framework connect its formal period ladder to measured pulsar periods?
- What empirical evidence, if any, supports the golden-ratio spacing between pulsar emission regimes?
- What distinguishes the five canonical regimes in terms of their physical emission mechanisms?
- Could the framework's five-regime model be extended to include additional pulsar classes?
- What role does the positivity guarantee play in the framework's broader astrophysical derivations?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM period_pos · IndisputableMonolith/Astrophysics/PulsarEmissionRegimesFromRS.lean
theorem period_pos (k : ℕ) : 0 < period k := pow_pos phi_pos kthe declaration period_pos is a formal theorem stating that for any natural number k, the period value phi^k is greater than zero period_pos · IndisputableMonolith/Astrophysics/PulsarEmissionRegimesFromRS.leanMODEL period · IndisputableMonolith/Astrophysics/PulsarEmissionRegimesFromRS.lean
noncomputable def period (k : ℕ) : ℝ := phi ^ kthe period is defined as a power of the golden ratio period · IndisputableMonolith/Astrophysics/PulsarEmissionRegimesFromRS.leanMODEL PulsarRegime · IndisputableMonolith/Astrophysics/PulsarEmissionRegimesFromRS.lean
inductive PulsarRegime where | normal | millisecond | magnetar | rrat | frbSource deriving DecidableEq, Repr, BEq, FintypeIt defines five canonical pulsar emission regimes: normal pulsar, millisecond pulsar, magnetar, rotating radio transient, and fast radio burst source PulsarRegime · IndisputableMonolith/Astrophysics/PulsarEmissionRegimesFromRS.leanTHEOREM 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] ringthe framework models the periods of these regimes as lying on a ladder where each adjacent ratio equals the golden ratio period_ratio · IndisputableMonolith/Astrophysics/PulsarEmissionRegimesFromRS.lean