def
definition
strategyImprovement
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.QFT.Decoherence on GitHub at line 234.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
formal source
231 | topologicalProtection -- Use topological qubits
232
233/-- Expected improvement factor for each strategy. -/
234noncomputable def strategyImprovement : DecoherenceStrategy → ℝ
235 | DecoherenceStrategy.reduceCoupling => 10
236 | DecoherenceStrategy.reduceModes => 100
237 | DecoherenceStrategy.errorCorrection => 1000
238 | DecoherenceStrategy.dynamicalDecoupling => 100
239 | DecoherenceStrategy.topologicalProtection => 1e6
240
241/-! ## Falsification Criteria -/
242
243/-- The decoherence formula would be falsified by:
244 1. Systems with decoherence times not scaling as φ^(-N)
245 2. Gap-45 crossover at a different mode count
246 3. Coupling-independent decoherence -/
247structure DecoherenceFalsifier where
248 /-- The system being tested. -/
249 system : String
250 /-- Measured decoherence time. -/
251 measured : ℝ
252 /-- Predicted decoherence time. -/
253 predicted : ℝ
254 /-- Significant discrepancy. -/
255 discrepancy : |measured - predicted| / predicted > 0.5
256
257end Decoherence
258end QFT
259end IndisputableMonolith