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

step_e_mu

definition
show as:
view math explainer →
module
IndisputableMonolith.Physics.LeptonGenerations.Defs
domain
Physics
line
37 · github
papers citing
none yet

open explainer

Read the cached plain-language explainer.

open lean source

IndisputableMonolith.Physics.LeptonGenerations.Defs on GitHub at line 37.

browse module

All declarations in this module, on Recognition.

explainer page

A cached Ask Recognition explainer exists for this declaration.

open explainer

depends on

used by

formal source

  34
  35/-- Step 1: Electron to Muon.
  36    Driven by Passive Edges (11) and Spherical Geometry (1/4π). -/
  37noncomputable def step_e_mu : ℝ :=
  38  (E_passive : ℝ) + 1 / (4 * Real.pi) - α ^ 2
  39
  40/-- Step 2: Muon to Tau.
  41    Driven by Faces (6) and Wallpaper Symmetry (17).
  42    Coefficient: W + D/2 = (2W + D)/2. -/
  43noncomputable def step_mu_tau : ℝ :=
  44  (cube_faces D : ℝ) - (2 * wallpaper_groups + D) / 2 * α
  45
  46/-! ## Predicted Residues -/
  47
  48/-- Predicted Muon Residue. -/
  49noncomputable def predicted_residue_mu : ℝ :=
  50  (gap 1332 - refined_shift) + step_e_mu
  51
  52/-- Predicted Tau Residue. -/
  53noncomputable def predicted_residue_tau : ℝ :=
  54  predicted_residue_mu + step_mu_tau
  55
  56/-! ## Mass Predictions -/
  57
  58/-- Predicted Muon Mass. -/
  59noncomputable def predicted_mass_mu : ℝ :=
  60  electron_structural_mass * phi ^ predicted_residue_mu
  61
  62/-- Predicted Tau Mass. -/
  63noncomputable def predicted_mass_tau : ℝ :=
  64  electron_structural_mass * phi ^ predicted_residue_tau
  65
  66end LeptonGenerations
  67end Physics