theorem
proved
zeroCompositionLaw_forces_unique_minimum
show as:
view math explainer →
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
depends on
-
H -
H -
A -
forces -
A -
A -
that -
cosh_eq_one_iff -
ZeroCompositionLaw -
zeroCompositionLaw_forces_cosh -
point -
cosh_eq_one_iff
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