Encyclopedia Astrophysics Astrophysics Galactic Bar Rot From Jcost

ARTICLE 3 claims 2 theorems 1 hypothesis

Astrophysics Galactic Bar Rot From Jcost

A machine-checked library proves three general facts about a cost function, but nothing yet about the Milky Way's rotating bar.

Galactic bar rotation and the cost function

Astrophysics measures the pattern speed of a galactic bar, the angular rate at which the bar-shaped concentration of stars rotates around the galaxy's center. For the Milky Way, observations place this speed, Ω_bar, near 35 to 45 kilometers per second per kiloparsec. A related quantity is the corotation radius, where stars orbit the center at the same angular speed as the bar; measurements put it at about 6 to 8 kiloparsecs from the center.

In the Recognition Science framework, the central object is a cost, a number that measures the price of recognizing one thing as another. The framework's proved cost function is J(x) = (x + 1/x)/2 - 1. A research note in the framework's machine-checked library suggests that the corotation radius might equal the bar radius times the golden ratio φ, about 1.618, giving roughly 8 kiloparsecs for a bar radius of 5 kiloparsecs. That estimate falls within the observed 6 to 8 kiloparsec range, within about 25 percent.

What the formal module itself proves is much narrower. It defines a domain cost as J(m/e), the cost of recognizing a ratio m/e. It proves three general facts: the cost is zero when m equals e, it is nonnegative for positive inputs, and the threshold φ - 3/2 is positive. These are properties of the cost function, not of galaxies. The module contains no definition of m or e in terms of bar radius, pattern speed, or any astrophysical quantity, so it establishes nothing specific about galactic bars.

The distinction matters. The framework's library proves general facts about the cost function. Applying those facts to a physical system requires defining the quantities in that system's own terms. That step is absent here. The corotation estimate remains a research idea, not a proved result.

THEOREM domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Astrophysics/GalacticBarRotFromJCost.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 domainCost · IndisputableMonolith/Astrophysics/GalacticBarRotFromJCost.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)
HYPOTHESIS canonicalThreshold · IndisputableMonolith/Astrophysics/GalacticBarRotFromJCost.lean
def canonicalThreshold : ℝ := phi - 3 / 2

What this page does not claim

The module proves the corotation radius equals R_bar times φ. The framework derives the Milky Way's bar pattern speed from first principles. The 25 percent agreement with observation is a measured result rather than a research note.

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