pith. sign in
theorem

cumulativeCooling_succ

proved
show as:
module
IndisputableMonolith.Engineering.IdentityTickRefrigeratorSpec
domain
Engineering
line
51 · github
papers citing
none yet

plain-language theorem explainer

The recurrence for cumulative cooling states that the total after n+1 cycles equals the total after n cycles plus the fixed per-cycle fraction J(φ) = φ - 3/2. Engineers modeling the phantom-cavity refrigerator cite this step to assemble the inductive certificate. The proof is a one-line wrapper that unfolds the cumulative definition and applies ring simplification.

Claim. Let $C(n) = n · J(φ)$ with $J(φ) = φ - 3/2$. Then $C(n+1) = C(n) + J(φ)$.

background

The Identity-Tick Refrigerator Spec module derives the phantom-cavity refrigerator (RS_PAT_029) with per-cycle cooling $Q = J(φ) · k_B · T_bath$, where $J(φ) ≈ 0.118$. Cumulative cooling after n cycles is defined as n times this fraction. The sibling definition coolingFraction sets $J(φ) := φ - 3/2$, while cumulativeCooling sets the total as the product with n.

proof idea

This is a one-line wrapper. It unfolds the definition of cumulativeCooling, pushes the natural-number cast to reals, and applies the ring tactic to confirm the arithmetic identity.

why it matters

This successor step supplies the inductive clause for the identityTickRefrigeratorCert certificate, which bundles positivity, band, and monotonicity properties. It closes the J5 engineering track by grounding cumulative cooling in the phi-based J-cost from the Recognition Science forcing chain.

Switch to Lean above to see the machine-checked source, dependencies, and usage graph.