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

DecoherenceStrategy

definition
show as:
view math explainer →
module
IndisputableMonolith.QFT.Decoherence
domain
QFT
line
226 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.QFT.Decoherence on GitHub at line 226.

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

 223/-! ## Decoherence Suppression Strategies -/
 224
 225/-- Strategies to extend decoherence time. -/
 226inductive DecoherenceStrategy where
 227  | reduceCoupling    -- Lower g
 228  | reduceModes       -- Lower N (isolation)
 229  | errorCorrection   -- Actively correct
 230  | dynamicalDecoupling -- Pulse sequences
 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