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

canonicalDefectSampledFamily_ringRegularErrorBound

definition
show as:
view math explainer →
module
IndisputableMonolith.NumberTheory.DefectSampledTrace
domain
NumberTheory
line
432 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.NumberTheory.DefectSampledTrace on GitHub at line 432.

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

 429
 430/-- The canonical perturbation-control package yields the regular-error package
 431needed for bounded annular excess. -/
 432noncomputable def canonicalDefectSampledFamily_ringRegularErrorBound (sensor : DefectSensor)
 433    (hm : sensor.charge ≠ 0) :
 434    RingRegularErrorBound (canonicalDefectSampledFamily sensor hm) := by
 435  exact ringRegularErrorBound_of_ringPerturbationControl _
 436    (canonicalDefectSampledFamily_ringPerturbationControl sensor hm)
 437
 438theorem canonicalDefectSampledFamily_excess_bounded (sensor : DefectSensor)
 439    (hm : sensor.charge ≠ 0) :
 440    RealizedDefectAnnularExcessBounded
 441      (canonicalDefectSampledFamily sensor hm) := by
 442  exact realizedDefectAnnularExcessBounded_of_ringRegularErrorBound _
 443    (canonicalDefectSampledFamily_ringRegularErrorBound sensor hm)
 444
 445/-- Nonzero charge forces the realized sampled family cost to exceed any bound.
 446
 447This is just `defect_cost_unbounded` specialized to the meshes of one realized
 448family. The theorem is completely unconditional. -/
 449theorem defectSampledFamily_unbounded (fam : DefectSampledFamily)
 450    (hm : fam.sensor.charge ≠ 0) :
 451    ∀ B : ℝ, ∃ N : ℕ, B < annularCost (fam.mesh N) := by
 452  intro B
 453  obtain ⟨N, hN⟩ := defect_cost_unbounded fam.sensor hm B
 454  refine ⟨N, ?_⟩
 455  have hcharge : ∀ n, ((fam.mesh N).rings n).winding = fam.sensor.charge := by
 456    intro n
 457    rw [((fam.mesh N).uniform_charge n), fam.charge_spec N]
 458  exact hN (fam.mesh N) hcharge
 459
 460/-- A realized sampled family with nonzero charge can never have bounded annular
 461cost. This is the contradiction theorem underlying the refined Axiom 2. -/
 462theorem not_realizedDefectAnnularCostBounded (fam : DefectSampledFamily)