abbrev
definition
Time
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 53.
browse module
All declarations in this module, on Recognition.
explainer page
used by
-
RealAction -
isFragileGlass -
RSPreserving -
tau0_pos -
G_codata_ne_zero -
Dimension -
dim_L -
breathCycle -
momentumQuantum_eq_cohQuantum -
octavePeriod -
planckTime_rs -
tau_rec -
tick -
to_seconds -
WaterProtocol -
StressEnergyTensor -
RealityCertificate -
recognitionStep_iterates_succ -
tick_isNNO -
timeAsOrbitCert_inhabited -
before -
DefectMonotone -
minimal_temporal_resolution -
past_is_fixed -
topological_charge_trajectory_conserved -
eight_tick_resonance_certified -
einstein_radius_positive -
w_t_nonneg -
tick_rate_bounded -
rsInterpretation -
whyComplex -
hygienicBool -
Config -
identity_always_possible -
bh_state_determined_by_charges -
applyT -
LedgerEntry -
ParityOp -
p_preserves_cost -
gap_range
formal source
50- `Charge` measured in **recognition units** (dimensionless in RS)
51-/
52
53abbrev Time := ℝ
54abbrev Length := ℝ
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] }