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

zeroCompositionLaw_forces_unique_minimum

proved
show as:
view math explainer →
module
IndisputableMonolith.NumberTheory.ZeroCompositionInterface
domain
NumberTheory
line
64 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.NumberTheory.ZeroCompositionInterface on GitHub at line 64.

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

  61    zc.bootstrap_hyp
  62
  63/-- Consequently, the minimum value `1` occurs exactly at `t = 0`. -/
  64theorem zeroCompositionLaw_forces_unique_minimum
  65    (zc : ZeroCompositionLaw) (t : ℝ) :
  66    zc.H t = 1 ↔ t = 0 := by
  67  rw [zeroCompositionLaw_forces_cosh zc t]
  68  exact cosh_eq_one_iff t
  69
  70/-- A zero-composition law forces the corresponding point onto the critical
  71line once the observable attains its minimum at that point's deviation. -/
  72theorem zeroCompositionLaw_forces_eta_zero
  73    (zc : ZeroCompositionLaw) (ρ : ℂ) :
  74    zc.H (zeroDeviation ρ) = 1 ↔ OnCriticalLine ρ := by
  75  constructor
  76  · intro h
  77    have hz : zeroDeviation ρ = 0 :=
  78      (zeroCompositionLaw_forces_unique_minimum zc (zeroDeviation ρ)).mp h
  79    exact (zeroDeviation_eq_zero_iff_on_critical_line ρ).mp hz
  80  · intro h
  81    have hz : zeroDeviation ρ = 0 :=
  82      (zeroDeviation_eq_zero_iff_on_critical_line ρ).mpr h
  83    exact (zeroCompositionLaw_forces_unique_minimum zc (zeroDeviation ρ)).mpr hz
  84
  85/-- A concrete Vector C witness at a specific complex point. -/
  86structure ZeroCompositionWitness (ρ : ℂ) where
  87  law : ZeroCompositionLaw
  88  value_at_deviation : law.H (zeroDeviation ρ) = 1
  89
  90/-- Any such witness forces the corresponding point onto the critical line. -/
  91theorem zeroCompositionWitness_forces_on_critical_line
  92    {ρ : ℂ} (w : ZeroCompositionWitness ρ) :
  93    OnCriticalLine ρ :=
  94  (zeroCompositionLaw_forces_eta_zero w.law ρ).mp w.value_at_deviation