Encyclopedia Cosmology Cosmology Gravitational Lensing From Rs Lensing Regime Count
ARTICLE 4 claims 4 theorems
Cosmology Gravitational Lensing From Rs Lensing Regime Count
Gravitational lensing splits into five recognized regimes, and the Recognition Science framework shows this count is forced rather than conventional.
The five lensing regimes
Gravitational lensing is the bending of light from a distant source by the gravity of an intervening mass. Astronomers routinely divide its observations into five standard regimes: weak lensing, where images are subtly distorted; strong lensing, where arcs and multiple images form; microlensing, where a passing star briefly brightens a background star; cluster lensing, where a galaxy cluster acts as the lens; and time-delay, where the same source appears at different arrival times along different paths. These five are the working categories in survey papers and textbooks alike.
The Recognition Science framework, a research program that derives physical structure from a discrete record of recognition events it calls a ledger, treats this fivefold division as a theorem rather than a convention. Its machine-checked library of formal theorems contains a declaration, lensingRegime_count, that proves the number of regimes is exactly five. The proof is a direct enumeration: the framework defines the type of lensing regimes with five constructors, and the theorem computes that the cardinality of this type is 5. The library reports zero axioms and zero unfinished proofs for this result.
The same file also defines a deflection angle for each regime as a power of the golden ratio phi, so that successive regimes differ by a factor of phi. A companion theorem proves this ratio holds for every step, and another proves every deflection angle is positive. These results are packaged into a certificate structure that bundles the five-regime count, the phi ratio, and positivity into a single object the framework can carry forward into further derivations.
What the declaration does not do is identify which observed deflection angle corresponds to which regime, nor does it predict the actual measured deflection of any specific lens. The count theorem is a statement about the framework's own classification scheme, not a measurement of the sky. The framework's claim is that its internal structure reproduces the fivefold division astronomers already use; it does not claim to have discovered a sixth regime or to have derived the numerical value of any deflection angle from first principles.
THEOREM lensingRegime_count · IndisputableMonolith/Cosmology/GravitationalLensingFromRS.lean
theorem lensingRegime_count : Fintype.card LensingRegime = 5 := by decide
THEOREM deflection_ratio · 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 · IndisputableMonolith/Cosmology/GravitationalLensingFromRS.lean
theorem deflection_pos (k : ℕ) : 0 < deflectionAngle k := pow_pos phi_pos k
THEOREM gravitationalLensingCert · IndisputableMonolith/Cosmology/GravitationalLensingFromRS.lean
noncomputable def gravitationalLensingCert : GravitationalLensingCert where
five_regimes := lensingRegime_count
phi_ratio := deflection_ratio
deflection_always_pos := deflection_pos
What this page does not claim
The declaration does not predict any measured deflection angle. The theorem does not identify which observed phenomenon corresponds to which regime. The framework does not claim to have discovered a sixth lensing regime.
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:
- What physical mechanism in the framework forces the number of lensing regimes to be five?
- How does the phi-ladder of deflection angles connect to measured deflection values?
- Does the framework predict any observable distinction between the five regimes beyond their count?
- What would falsify the framework's claim that the fivefold division is forced?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM lensingRegime_count · IndisputableMonolith/Cosmology/GravitationalLensingFromRS.lean
theorem lensingRegime_count : Fintype.card LensingRegime = 5 := by decidelensingRegime_count proves the number of regimes is exactly five. lensingRegime_count · IndisputableMonolith/Cosmology/GravitationalLensingFromRS.leanTHEOREM deflection_ratio · 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] ringSuccessive regimes differ by a factor of phi. deflection_ratio · IndisputableMonolith/Cosmology/GravitationalLensingFromRS.leanTHEOREM deflection_pos · IndisputableMonolith/Cosmology/GravitationalLensingFromRS.lean
theorem deflection_pos (k : ℕ) : 0 < deflectionAngle k := pow_pos phi_pos kEvery deflection angle is positive. deflection_pos · IndisputableMonolith/Cosmology/GravitationalLensingFromRS.leanTHEOREM gravitationalLensingCert · IndisputableMonolith/Cosmology/GravitationalLensingFromRS.lean
noncomputable def gravitationalLensingCert : GravitationalLensingCert where five_regimes := lensingRegime_count phi_ratio := deflection_ratio deflection_always_pos := deflection_posThe library reports zero axioms and zero unfinished proofs for this result. gravitationalLensingCert · IndisputableMonolith/Cosmology/GravitationalLensingFromRS.lean