Encyclopedia Physics Physics Dark Matter Halo Profile From Rs
ARTICLE 4 claims 3 theorems 1 model
Physics Dark Matter Halo Profile From Rs
In standard astrophysics, dark matter halos are described by a handful of empirical density profiles; Recognition Science arranges these same five profiles on a single golden-ratio ladder.
Dark matter halo profiles
Dark matter halos are the invisible, roughly spherical clouds of matter that surround galaxies and galaxy clusters. Astronomers cannot see them directly, but infer their presence from the rotation speeds of stars and gas, and from gravitational lensing. Because dark matter does not emit light, its distribution is described by a density profile: a mathematical function giving the mass density at a given distance from the center. The most widely used profiles are the Navarro-Frenk-White (NFW) profile, the Einasto profile, and the isothermal sphere, each with an inner and outer behavior. These are empirical fits to simulations and observations, not derivations from first principles.
The NFW profile, proposed in 1996 by Julio Navarro, Carlos Frenk, and Simon White, describes the density as falling off steeply in the inner region and more slowly in the outer region. The Einasto profile, introduced by Jaan Einasto in 1965, uses an exponential law that fits simulations slightly better in the inner regions. The isothermal sphere, a classical model from kinetic theory, assumes a constant velocity dispersion and produces a density that falls off as the inverse square of radius. Each profile has its own functional form, and astronomers choose among them depending on the system and the resolution of the data.
In Recognition Science, the framework models these five canonical regimes as a single discrete ladder. The framework's ledger, a discrete record of recognition events, organizes the density profiles by a scaling factor: the golden ratio φ, approximately 1.618. The framework defines a density rung as 1/φ^k, where k is a nonnegative integer. This produces a strictly decreasing sequence of positive densities: each rung is smaller than the one above it, and all are positive. The framework's machine-checked library of formal theorems proves that the five regimes, NFW inner, NFW outer, Einasto, isothermal, and truncation edge, correspond to five rungs on this ladder.
The framework's library proves three properties of this ladder: there are exactly five regimes, the density at every rung is positive, and the density strictly decreases as k increases. These are not empirical fits; they are theorems about the framework's model. The framework models the five standard halo profiles as occupying consecutive rungs, with each regime sitting one rung down the φ-ladder in density. This places the five empirical profiles into a single ordered sequence, connecting them through the same scaling constant that appears throughout the framework.
What this means in plain language is that the five standard dark matter halo profiles, which astronomers treat as separate empirical functions, are arranged in the framework as a single ordered family. The framework does not derive the exact functional forms of NFW or Einasto; it establishes that these five regimes fit a common discrete pattern. This is a structural claim about how the profiles relate to each other, not a new prediction about the density of dark matter in any particular galaxy. The framework's contribution is to show that the five regimes form a coherent ladder, with each one a fixed factor denser than the next.
MODEL HaloRegime · IndisputableMonolith/Physics/DarkMatterHaloProfileFromRS.lean
inductive HaloRegime where
| nfwInner
| nfwOuter
| einasto
| isothermal
| truncation
deriving DecidableEq, Repr, BEq, Fintype
THEOREM haloRegime_count · IndisputableMonolith/Physics/DarkMatterHaloProfileFromRS.lean
theorem haloRegime_count : Fintype.card HaloRegime = 5 := by decide
THEOREM density_pos · IndisputableMonolith/Physics/DarkMatterHaloProfileFromRS.lean
theorem density_pos (k : ℕ) : 0 < densityRung k := by
unfold densityRung
exact div_pos one_pos (pow_pos phi_pos k)
THEOREM density_strictDecr · IndisputableMonolith/Physics/DarkMatterHaloProfileFromRS.lean
theorem density_strictDecr (k : ℕ) :
densityRung (k + 1) < densityRung k := by
unfold densityRung
have hpos_k : (0 : ℝ) < phi ^ k := pow_pos phi_pos k
have h_growth : phi ^ k < phi ^ (k + 1) := by
rw [pow_succ]
have h1 : 1 < phi := one_lt_phi
nlinarith
exact one_div_lt_one_div_of_lt hpos_k h_growth
What this page does not claim
The framework does not derive the exact functional forms of the NFW, Einasto, or isothermal profiles. The framework does not predict the dark matter density in any specific galaxy or halo. The framework does not claim that the five regimes are the only possible halo profiles.
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/Physics/DarkMatterHaloProfileFromRS.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 empirical data, if any, distinguishes the NFW inner from the Einasto profile in the inner regions of halos?
- How does the golden-ratio ladder relate to the continuous density functions of the standard profiles?
- Does the truncation edge regime correspond to a physical boundary or an artifact of the model?
- What is the physical recognition-to-linking bridge that would connect these density rungs to observable galaxy dynamics?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
MODEL HaloRegime · IndisputableMonolith/Physics/DarkMatterHaloProfileFromRS.lean
inductive HaloRegime where | nfwInner | nfwOuter | einasto | isothermal | truncation deriving DecidableEq, Repr, BEq, FintypeThe framework models the five canonical halo regimes as five rungs on a golden-ratio density ladder. HaloRegime · IndisputableMonolith/Physics/DarkMatterHaloProfileFromRS.leanTHEOREM haloRegime_count · IndisputableMonolith/Physics/DarkMatterHaloProfileFromRS.lean
theorem haloRegime_count : Fintype.card HaloRegime = 5 := by decideThe framework's library proves that there are exactly five halo regimes. haloRegime_count · IndisputableMonolith/Physics/DarkMatterHaloProfileFromRS.leanTHEOREM density_pos · IndisputableMonolith/Physics/DarkMatterHaloProfileFromRS.lean
theorem density_pos (k : ℕ) : 0 < densityRung k := by unfold densityRung exact div_pos one_pos (pow_pos phi_pos k)The framework's library proves that the density at every rung is positive. density_pos · IndisputableMonolith/Physics/DarkMatterHaloProfileFromRS.leanTHEOREM density_strictDecr · IndisputableMonolith/Physics/DarkMatterHaloProfileFromRS.lean
theorem density_strictDecr (k : ℕ) : densityRung (k + 1) < densityRung k := by unfold densityRung have hpos_k : (0 : ℝ) < phi ^ k := pow_pos phi_pos k have h_growth : phi ^ k < phi ^ (k + 1) := by rw [pow_succ] have h1 : 1 < phi := one_lt_phi nlinarith exact one_div_lt_one_div_of_lt hpos_k h_growthThe framework's library proves that the density strictly decreases as the rung index increases. density_strictDecr · IndisputableMonolith/Physics/DarkMatterHaloProfileFromRS.lean