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

Rung

definition
show as:
view math explainer →
module
IndisputableMonolith.Support.RungFractions
domain
Support
line
22 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.Support.RungFractions on GitHub at line 22.

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

  19namespace RungFractions
  20
  21/-- A (possibly fractional) rung on the φ‑ladder. -/
  22abbrev Rung := ℚ
  23
  24/-- Embed an integer rung into a rational rung. -/
  25@[simp] def ofInt (z : ℤ) : Rung := (z : ℚ)
  26
  27/-- The quarter‑ladder embedding: `k ↦ k/4`. -/
  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