structure
definition
QECThresholdCert
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Information.QECThresholdFromPhiLadder on GitHub at line 43.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
formal source
40 rw [pow_succ, mul_inv]
41 field_simp [hk, phi_ne_zero]
42
43structure QECThresholdCert where
44 five_families : Fintype.card QECCodeFamily = 5
45 threshold_pos : ∀ k, 0 < codeThreshold k
46 phi_decay : ∀ k, codeThreshold (k + 1) / codeThreshold k = phi⁻¹
47
48noncomputable def qecThresholdCert : QECThresholdCert where
49 five_families := qecCodeFamilyCount
50 threshold_pos := codeThreshold_pos
51 phi_decay := codeThreshold_decay
52
53end IndisputableMonolith.Information.QECThresholdFromPhiLadder