def
definition
half
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Support.RungFractions on GitHub at line 31.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
-
pleasure_symmetric -
cross_cousin_count -
kinshipGraphCohomologyCert -
styleGap -
AgreesAtHalfRung -
planetaryFormationCert -
two_rung_gap_eq_phi_squared -
cesium_low_en -
IsStokesMildTraj -
half_period_dim_eq -
reduced_configs_2 -
balance_from_conservation -
config_space_complete -
chirality_product_equals_gap_minus_one -
peak_exceeds_single_gap -
peak_fits_double_gap -
tenfold_times_D -
per_turn_at_kappa_one -
fundamentalFrequency -
laws_polynomial_implies_continuous -
jcost_unit_curvature -
fermions_eq_D_times_V -
fermion_rotation_phase_neg_one -
mwcSize_eq -
S_radiation_le_S_BH -
p_steepness_pos -
mass_lt_implies_temp_gt -
C_competing_gt_C_kernel -
C_kernel_band -
C_kernel_pos -
half_rung_budget_doubled -
half_rung_components_band -
ilgSpatialKernelCert -
three_channel_factorization -
normalizedRatio_le_sqrt_siteCount -
ancientDecay_implies_A2_integrable -
integrableOn_Ioi_of_rpow_decay -
rm2u_closed_for_ancient_element -
SobolevH1HalfLineDecay -
DefectSensor
formal source
28@[simp] def quarter (k : ℤ) : Rung := (k : ℚ) / 4
29
30/-- The half‑ladder embedding: `k ↦ k/2`. -/
31@[simp] def half (k : ℤ) : Rung := (k : ℚ) / 2
32
33/-- Convert a rational rung to a real exponent (for `Real.rpow`). -/
34@[simp] def toReal (r : Rung) : ℝ := (r : ℝ)
35
36theorem quarter_eq (k : ℤ) : quarter k = (k : ℚ) / 4 := rfl
37theorem half_eq (k : ℤ) : half k = (k : ℚ) / 2 := rfl
38
39end RungFractions
40end Support
41end IndisputableMonolith