structure
definition
def or abbrev
DefectSampledFamily
show as:
view Lean formalization →
formal statement (Lean)
60structure DefectSampledFamily where
61 sensor : DefectSensor
62 mesh : ∀ N : ℕ, AnnularMesh N
63 charge_spec : ∀ N : ℕ, (mesh N).charge = sensor.charge
64
65/-- Convert a `DefectPhaseFamily` to its realized sampled annular family. -/
66def DefectPhaseFamily.toSampledFamily (dpf : DefectPhaseFamily) :
67 DefectSampledFamily where
68 sensor := dpf.sensor
proof body
Definition body.
69 mesh := defectAnnularMesh dpf
70 charge_spec := defectAnnularMesh_charge dpf
71
72/-- Choose one phase family attached to a hypothetical defect sensor.
73
74This uses the strengthened existential package
75`defect_phase_family_with_perturbation_exists`, so the chosen family comes with
76the perturbation witness needed downstream for the annular excess argument. -/
used by (16)
-
defect_cost_exceeds_carrier_budget -
annularExcess_le_sum_of_ringCost_le_topologicalFloor_plus_regularError -
canonicalDefectSampledFamily -
DefectPhaseFamily -
defectSampledFamily_unbounded -
not_realizedDefectAnnularCostBounded -
RealizedDefectAnnularCostBounded -
RealizedDefectAnnularExcessBounded -
realizedDefectAnnularExcessBounded_of_costBounded -
realizedDefectAnnularExcessBounded_of_ringRegularErrorBound -
realizedDefectCostBounded_iff_charge_zero_and_excessBounded -
realizedDefectCostBounded_of_charge_zero_and_excessBounded -
realizedRingPerturbationError -
RingPerturbationControl -
RingRegularErrorBound -
ringRegularErrorBound_of_ringPerturbationControl