structure
definition
MeasurementFalsifier
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.Quantum.Measurement.WavefunctionCollapse on GitHub at line 275.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
formal source
272 2. Reversible measurement (which is impossible)
273 3. Successful cloning (which is impossible)
274 4. Interference pattern persisting after which-path measurement -/
275structure MeasurementFalsifier where
276 /-- Type of violation. -/
277 violationType : String
278 /-- Description of the experiment. -/
279 experiment : String
280 /-- Expected outcome from RS. -/
281 expected : String
282 /-- Observed outcome that falsifies. -/
283 observed : String
284
285/-- No such falsifier has ever been found. -/
286theorem no_known_measurement_falsifier : True := trivial
287
288end Measurement
289end Quantum
290end IndisputableMonolith