def
definition
RunawaySignature
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Energy.VacuumPump on GitHub at line 47.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
formal source
44/-- RS Falsifier: Runaway Acceleration.
45 Without a load, the pump will accelerate until failure.
46 This signature distinguishes it from conventional generators. -/
47def RunawaySignature (load : ℝ) (rpm : ℝ) : Prop :=
48 load = 0 → rpm > 0 -- RPM increases without bound (simplified)
49
50end VacuumPump
51end Energy
52end IndisputableMonolith