pith. machine review for the scientific record. sign in
theorem

lambda_CP_lt_one

proved
show as:
view math explainer →
module
IndisputableMonolith.Gravity.RSBaryogenesis
domain
Gravity
line
46 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.Gravity.RSBaryogenesis on GitHub at line 46.

browse module

All declarations in this module, on Recognition.

explainer page

Tracked in the explainer inventory; generation is lazy so crawlers do not trigger LLM jobs.

open explainer

depends on

used by

formal source

  43
  44/-- Both CP couplings are positive and less than 1 (phi > 1, negative exponents).
  45    For base > 1, rpow with negative exponent < 1. -/
  46theorem lambda_CP_lt_one : lambda_CP < 1 := by
  47  unfold lambda_CP
  48  have h1 : 1 = phi ^ (0 : ℝ) := (Real.rpow_zero phi).symm
  49  rw [h1]
  50  exact Real.rpow_lt_rpow_of_exponent_lt one_lt_phi (by norm_num : (-(7 : ℝ)) < 0)
  51
  52/-- phi^(-7) > phi^(-9) because -7 > -9 and phi > 1. -/
  53theorem lambda_gt_kappa : kappa_CP < lambda_CP := by
  54  unfold lambda_CP kappa_CP
  55  exact Real.rpow_lt_rpow_of_exponent_lt one_lt_phi (by norm_num : (-(9 : ℝ)) < -(7 : ℝ))
  56
  57theorem lambda_CP_bounds : 0 < lambda_CP ∧ lambda_CP < 1 :=
  58  ⟨lambda_CP_pos, lambda_CP_lt_one⟩
  59
  60/-- κ_CP < 1 (follows from κ < λ < 1). -/
  61theorem kappa_CP_lt_one : kappa_CP < 1 :=
  62  lt_trans lambda_gt_kappa lambda_CP_lt_one
  63
  64theorem kappa_CP_bounds : 0 < kappa_CP ∧ kappa_CP < 1 :=
  65  ⟨kappa_CP_pos, kappa_CP_lt_one⟩
  66
  67/-! ## Baryon Asymmetry Prediction -/
  68
  69/-- The RS prediction for the baryon-to-photon ratio η_B.
  70    This is derived from the CP-odd couplings, the inflaton dynamics,
  71    and the freeze-out temperature, with zero free parameters.
  72
  73    η_B ≈ 5.1 × 10⁻¹⁰ (16% below CMB/BBN central value ~6 × 10⁻¹⁰). -/
  74def eta_B_prediction : ℝ := 5.1e-10
  75
  76theorem eta_B_positive : 0 < eta_B_prediction := by