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

eMuContribution

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

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.Physics.LeptonGenerations.TauStepDeltaDerivation on GitHub at line 218.

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

 215
 216/-- The e→μ fractional contribution: 1 / (continuous measure).
 217    This is 1/(4π), the same as in FractionalStepDerivation.lean. -/
 218noncomputable def eMuContribution : ℝ := 1 / continuousMeasure3D
 219
 220/-- The μ→τ normalized contribution: F / (discrete measure).
 221    Each face contributes, normalized by its vertex anchoring points. -/
 222noncomputable def muTauContribution : ℝ :=
 223  (faceCount 3 : ℝ) / (discreteMeasure2DFace : ℝ)
 224
 225/-- The μ→τ contribution equals 3/2. -/
 226theorem muTauContribution_eq : muTauContribution = 3 / 2 := by
 227  unfold muTauContribution discreteMeasure2DFace faceCount faceVertexCount
 228  norm_num
 229
 230/-- **The Duality Theorem**: Both steps follow the same pattern.
 231
 232    e→μ: contribution = (active edges) / (continuous measure) = 1/(4π)
 233    μ→τ: contribution = (face count) / (discrete measure) = F/V = 3/2
 234
 235    The vertex count V is the "discrete solid angle" for faces. -/
 236theorem discrete_continuous_duality :
 237    -- e→μ uses 1/(continuous measure)
 238    eMuContribution = 1 / (4 * Real.pi) ∧
 239    -- μ→τ uses F/(discrete measure)
 240    muTauContribution = (6 : ℝ) / 4 ∧
 241    -- The discrete measure is the vertex count
 242    discreteMeasure2DFace = 4 := by
 243  constructor
 244  · rfl
 245  constructor
 246  · unfold muTauContribution discreteMeasure2DFace faceCount faceVertexCount
 247    norm_num
 248  · rfl