pith. machine review for the scientific record. sign in
def definition def or abbrev high

releaseRate

show as:
view Lean formalization →

The release rate at rung n is defined as the initial rate multiplied by phi to the power n. Engineers deriving the Mars CO2 release schedule under J-cost optimality would cite this geometric scaling. The definition is a direct one-line multiplication of the pre-set initial rate by the phi factor at each rung.

claim$r(n) = r_0 phi^n$ for $n$ a natural number, where $r_0$ is the initial release rate at rung zero.

background

This module derives a J-cost optimal schedule for Mars terraforming via CO2 release. The release follows a geometric progression on the phi-ladder, with the continuous approximation given as r(t) = r_0 phi^(t/45) and a 45-year gap per rung. The upstream definition fixes r_0 as the initial release rate (year 0) and sets it to 1 in native units.

proof idea

This is a direct definition that multiplies the initial release rate by phi raised to the rung index. No lemmas are applied beyond the definition of r_0 and the real exponentiation operation.

why it matters in Recognition Science

This definition supplies the base rate function used to construct the cumulative release sum and to certify the monotonicity properties in MarsAtmosphereJCostScheduleCert. It realizes the geometric scaling required for the Mars terraforming plan, which is summarized in the one-statement theorem asserting rate ladder properties, positivity, and strict increase. The module falsifier is any deployed schedule diverging from this phi scaling by a factor of two at any rung.

scope and limits

Lean usage

example (n : ℕ) : releaseRate (n + 1) = releaseRate n * phi := by unfold releaseRate; rw [pow_succ]

formal statement (Lean)

  41def releaseRate (n : ℕ) : ℝ := r_0 * phi ^ n

proof body

Definition body.

  42

used by (8)

From the project-wide theorem graph. These declarations reference this one in their body.

depends on (1)

Lean names referenced from this declaration's body.