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

quantum_fluctuation

proved
show as:
view math explainer →
module
IndisputableMonolith.Physics.PathIntegralFromRS
domain
Physics
line
33 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.Physics.PathIntegralFromRS on GitHub at line 33.

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

  30theorem classical_path : Jcost 1 = 0 := Jcost_unit0
  31
  32/-- Quantum fluctuations: J > 0 (off-classical paths). -/
  33theorem quantum_fluctuation {r : ℝ} (hr : 0 < r) (hne : r ≠ 1) :
  34    0 < Jcost r := Jcost_pos_of_ne_one r hr hne
  35
  36structure PathIntegralCert where
  37  five_formulations : Fintype.card PathIntegralFormulation = 5
  38  classical : Jcost 1 = 0
  39  quantum : ∀ {r : ℝ}, 0 < r → r ≠ 1 → 0 < Jcost r
  40
  41def pathIntegralCert : PathIntegralCert where
  42  five_formulations := pathIntegralCount
  43  classical := classical_path
  44  quantum := quantum_fluctuation
  45
  46end IndisputableMonolith.Physics.PathIntegralFromRS