def
definition
U
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Constants.RSNativeUnits on GitHub at line 79.
browse module
All declarations in this module, on Recognition.
explainer page
Derivations using this theorem
depends on
used by
-
BerlyneInvertedUCert -
aestheticCost_zero_at_optimum -
computeRatios -
AtomicTick -
Chain -
head -
last -
Ledger -
phi -
RecognitionStructure -
co_highest_curie -
stonerCriterion -
alkali_halogen_ionic -
madelung_nacl_pos -
londonDispersionProxy -
buildPeelingResult -
extractFromPC -
InputSet -
PC -
PeelingResult -
cone_bound_export -
ConeEntropyFacts -
display_null_condition -
display_rate_matches_structural_rate -
display_ratio_scale_invariant -
display_speed_eq_c -
display_speed_eq_c_of_nonzero -
display_speed_positive -
ell0_div_tau0_eq_c -
K_gate_check -
K_gate_tolerance -
K_gate_units_invariant -
observable_factors_through_quotient -
single_inequality_audit -
tau_rec_display_ne_zero -
tau_rec_display_pos -
UnitsEquivalent -
units_quotient_preserves_K -
K_gate_eqK -
lambda_kin_display
formal source
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
89/-! ## Coherence and action quanta
90
91`Constants.E_coh = φ⁻⁵` is a **dimensionless** RS-derived number.
92In the RS-native system:
93- **1 coh** (energy quantum) := E_coh
94- **1 act** (action quantum) := ħ = E_coh · τ₀ = E_coh (since τ₀ = 1)
95-/
96
97/-- Coherence energy quantum: φ⁻⁵ ≈ 0.0902. -/
98@[simp] noncomputable def cohQuantum : ℝ := E_coh
99
100/-- Convert energy count (in coh) to raw RS scale. -/
101@[simp] noncomputable def energy_raw (E : Energy) : ℝ := E * cohQuantum
102
103/-- Action quantum: ħ = E_coh · τ₀ = E_coh in RS-native units. -/
104@[simp] noncomputable def hbarQuantum : ℝ := cohQuantum * tick
105
106/-- Convert action count (in act) to raw RS scale. -/
107@[simp] noncomputable def action_raw (A : Action) : ℝ := A * hbarQuantum
108
109@[simp] lemma hbarQuantum_eq_Ecoh : hbarQuantum = E_coh := by