def
definition
experiments
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 232.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
-
curvature_defect_strength -
defect_site_prediction -
dama_not_dark_matter_in_rs -
substrate_model -
energy_conservation -
m_coh_positive -
equivalence_implies_ratio_one -
H_GravitationalRunning_certificate -
experimentalStatus -
quantum_requires_complex -
BellFalsifier -
loopholeFreeExperiment -
rsPredictions -
experimentalStatus -
experiments -
predictions -
experimentalTests -
possibleTests -
relativity_preserved -
experiments -
experimentalEvidence -
quadratic_from_symmetry -
shadow_diameter_correction -
deltaCP_pmns_range -
experiments -
experimentalStatus
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