Encyclopedia Cosmology Cosmology Gravitational Lensing From Rs Lensing Regime

ARTICLE 3 claims 3 theorems

Cosmology Gravitational Lensing From Rs Lensing Regime

Gravitational lensing has five standard observational regimes, and in Recognition Science they form a single ladder with deflection angles spaced by the golden ratio.

The five regimes

Gravitational lensing is the bending of light from a distant source by the gravity of an intervening mass, such as a galaxy or black hole. Astronomers classify its observations into five standard regimes: weak lensing (slight distortions of many background galaxies), strong lensing (multiple images or rings around a foreground mass), microlensing (brief brightening when a compact object passes in front of a star), cluster lensing (distortions by entire galaxy clusters), and time-delay (the difference in arrival times of light along different paths). These are the working categories used in observational cosmology, each with its own methods and targets.

In Recognition Science (RS), the framework's machine-checked library of formal theorems defines these five regimes as a single inductive type, a formal list of five distinct cases. A proved theorem in that library states that the count of regimes is exactly five, matching the standard observational classification. The framework does not stop at naming them: it assigns each regime a characteristic deflection angle, the amount by which light is bent, on a ladder where each step is a fixed multiple of the previous one. The library proves that the ratio of a deflection angle to the next one is always the golden ratio φ ≈ 1.618, and that every deflection angle is positive. The five regimes thus sit on a geometric ladder, each rung a factor of φ above the one before.

This structure is a definitional choice within the framework, not a measurement of real lensing events. The library proves the internal consistency of its definitions: the count is five, the ratios are φ, the angles are positive. It does not claim that real gravitational lenses exhibit these exact angles, nor that the five regimes are the only possible ones in nature. The framework models the regimes as a discrete ladder; whether that ladder matches the physical world is an empirical question the library does not settle.

The consequence for a reader is a clear picture: RS organizes the five familiar lensing regimes into one coherent structure with a single scaling ratio. This is a compact way to see the regimes as related, rather than as five separate phenomena. The framework's contribution is the formal scaffolding, not a new observation about the sky.

THEOREM lensingRegime_count · IndisputableMonolith/Cosmology/GravitationalLensingFromRS.lean
theorem lensingRegime_count : Fintype.card LensingRegime = 5 := by decide
THEOREM deflection_ratio · deflection_pos · IndisputableMonolith/Cosmology/GravitationalLensingFromRS.lean
theorem deflection_ratio (k : ℕ) :
    deflectionAngle (k + 1) / deflectionAngle k = phi := by
  unfold deflectionAngle
  have hpos : (0 : ℝ) < phi ^ k := pow_pos phi_pos k
  rw [div_eq_iff hpos.ne', pow_succ]
  ring
theorem deflection_pos (k : ℕ) : 0 < deflectionAngle k := pow_pos phi_pos k
THEOREM GravitationalLensingCert · IndisputableMonolith/Cosmology/GravitationalLensingFromRS.lean
structure GravitationalLensingCert where
  five_regimes : Fintype.card LensingRegime = 5
  phi_ratio : ∀ k, deflectionAngle (k + 1) / deflectionAngle k = phi
  deflection_always_pos : ∀ k, 0 < deflectionAngle k

What this page does not claim

No claim that real gravitational lenses have deflection angles in exact φ ratios. No claim that the five regimes are exhaustive for all possible lensing phenomena. No claim that the framework derives the physical strength of gravity or the speed of light.

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/Cosmology/GravitationalLensingFromRS.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