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

RunawaySignature

show as:
view Lean formalization →

The runaway acceleration predicate defines the condition under which an unloaded vacuum pump exhibits unbounded rotation rate increase. Researchers modeling entropic energy devices cite it to distinguish RS-based generators from conventional ones that remain stable under zero load. The definition consists of a direct logical implication between zero load and positive rotation speed.

claimThe predicate for runaway acceleration holds precisely when zero load implies positive rotation speed: $load=0 implies rpm>0$.

background

The VacuumPump module formalizes the thermodynamics of a Metric Engine acting as a generator through entropic pumping. In RS thermodynamics, ordering the vacuum leads to heat absorption and entropy decrease, in contrast to standard work-to-heat conversion. The device sorts vacuum fluctuations to lower J-cost and absorbs thermal entropy from the environment to pay for it. Energy quantities are represented as real numbers in RS-native units.

proof idea

The definition directly encodes the implication that zero load yields positive RPM, serving as a one-line characterization of the runaway condition without further lemmas.

why it matters in Recognition Science

This definition supplies the RS falsifier for runaway acceleration in the vacuum pump hypothesis. It marks the distinction from conventional generators as stated in the module documentation. Within the Recognition Science framework it relates to the energy balance of initial pulse plus thermal input yielding ordered vacuum and EMF output. It highlights the stability question for such over-unity devices.

scope and limits

formal statement (Lean)

  47def RunawaySignature (load : ℝ) (rpm : ℝ) : Prop :=

proof body

Definition body.

  48  load = 0 → rpm > 0 -- RPM increases without bound (simplified)
  49
  50end VacuumPump
  51end Energy
  52end IndisputableMonolith

depends on (1)

Lean names referenced from this declaration's body.