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

experiments

definition
show as:
view math explainer →
module
IndisputableMonolith.Quantum.DoubleSlit
domain
Quantum
line
232 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.Quantum.DoubleSlit on GitHub at line 232.

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

 229    2. Davisson-Germer (1927) - electrons ✓
 230    3. Zeilinger et al. - fullerenes ✓
 231    4. Delayed-choice quantum eraser - photons ✓ -/
 232def experiments : List String := [
 233  "Young's double-slit (1801)",
 234  "Davisson-Germer electron diffraction (1927)",
 235  "Fullerene interference (1999)",
 236  "Delayed-choice quantum eraser (2000s)"
 237]
 238
 239/-! ## Falsification Criteria -/
 240
 241/-- The double-slit derivation would be falsified by:
 242    1. No interference for particles
 243    2. Which-path info not affecting pattern
 244    3. Quantum eraser not working
 245    4. Phase not related to path length -/
 246structure DoubleSlitFalsifier where
 247  /-- Type of potential falsification. -/
 248  falsifier : String
 249  /-- Status. -/
 250  status : String
 251
 252/-- All predictions verified. -/
 253def experimentalStatus : List DoubleSlitFalsifier := [
 254  ⟨"Interference pattern", "Observed for all particles"⟩,
 255  ⟨"Which-path effect", "Confirmed"⟩,
 256  ⟨"Quantum eraser", "Confirmed"⟩,
 257  ⟨"Path-phase relation", "Confirmed"⟩
 258]
 259
 260end DoubleSlit
 261end Quantum
 262end IndisputableMonolith