abbrev
definition
Mass
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.Constants.RSNativeUnits on GitHub at line 58.
browse module
All declarations in this module, on Recognition.
explainer page
used by
-
information_balance_gives_phi -
ml_geometric_bounds -
PhysicalCertificate -
Dimension -
dim_T -
proton_electron_ratio_uncertainty -
hbarQuantum_eq_Ecoh -
mass_raw -
momentumQuantum_eq_cohQuantum -
planckMass_rs -
to_kg -
Axion -
dmIsNot -
WIMP -
w_mass_atlas_measurement -
w_mass_implies_ew_scale -
w_z_mass_ratio -
cycleLength -
mass_geometric -
quark_rungs_strict_ordering -
top_rung -
dirac_mass_pos -
jcost_cosh_is_gamma_minus_one -
D3_unique_viable -
mass_rung_step -
of -
quark_lepton_ratio -
SpectralEmergenceCert -
alpha_gravity_pos -
small_strain_hamiltonian_valid -
predict_mass -
electroweak_sector_params -
cos2_theta_positive -
z_relative_error -
m_tau_pos -
modules -
lepton_hierarchy_geometric -
predict_mass -
mass_ordering_from_rungs -
mass_ratio_from_rung_difference
formal source
55abbrev Velocity := ℝ
56abbrev Energy := ℝ
57abbrev Action := ℝ
58abbrev Mass := ℝ
59abbrev Frequency := ℝ
60abbrev Momentum := ℝ
61abbrev Charge := ℝ
62
63/-! ## Canonical RS-native base units -/
64
65/-- One tick: the fundamental time quantum. -/
66@[simp] def tick : Time := Constants.tick
67
68/-- One voxel: the fundamental length quantum. -/
69@[simp] def voxel : Length := 1
70
71/-! ## Derived speed of light in RS-native units -/
72
73/-- Speed of light: c = ℓ₀/τ₀ = 1 voxel/tick. -/
74@[simp] def c : Velocity := 1
75
76/-! ## Canonical `RSUnits` pack for bridge/cert code -/
77
78/-- RS-native gauge: τ₀ = 1 tick, ℓ₀ = 1 voxel, c = 1. -/
79@[simp] noncomputable def U : RSUnits :=
80{ tau0 := tick
81, ell0 := voxel
82, c := c
83, c_ell0_tau0 := by simp [tick, voxel, c] }
84
85@[simp] lemma U_tau0 : U.tau0 = 1 := rfl
86@[simp] lemma U_ell0 : U.ell0 = 1 := rfl
87@[simp] lemma U_c : U.c = 1 := rfl
88