structure
definition
DoubleSlitFalsifier
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.Quantum.DoubleSlit on GitHub at line 246.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
formal source
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