theorem
proved
coherence_gate
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.Gravity.CoherenceGain on GitHub at line 139.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
-
coherent_exceeds_incoherent -
incoherent_effective_source -
Superconductor -
superconductor_effective_source
used by
formal source
136
137/-- COHERENCE GATE: Cooling below T_c enhances effective source by √N.
138 This is the "Coherence Gate" from the RS Antigravity Whitepaper. -/
139theorem coherence_gate (sc : Superconductor) (hN : 2 ≤ sc.cooper_pairs.N) :
140 incoherent_effective_source sc.cooper_pairs <
141 superconductor_effective_source sc true := by
142 simp only [superconductor_effective_source, ite_true]
143 exact coherent_exceeds_incoherent sc.cooper_pairs hN
144
145/-! ## 6. Certificate -/
146
147structure CoherenceGainCert where
148 gain_is_sqrt_N : ∀ ens : Ensemble, coherence_gain ens = Real.sqrt ens.N
149 coherent_beats_incoherent : ∀ ens : Ensemble, 2 ≤ ens.N →
150 incoherent_effective_source ens < coherent_effective_source ens
151 superconductor_gate : ∀ sc : Superconductor, 2 ≤ sc.cooper_pairs.N →
152 incoherent_effective_source sc.cooper_pairs < superconductor_effective_source sc true
153
154theorem coherence_gain_certified : CoherenceGainCert where
155 gain_is_sqrt_N := coherence_gain_eq_sqrt_N
156 coherent_beats_incoherent := coherent_exceeds_incoherent
157 superconductor_gate := fun sc hN => coherence_gate sc hN
158
159end IndisputableMonolith.Gravity.CoherenceGain