The Riemann hypothesis implies for
Provedriemann_hypothesis_imp_zeta_ne_zero_of_half_lt_reLet be the Riemann zeta function and let RH denote the Riemann hypothesis in the form 'every zero of other than the trivial zeros and the point has real part '. This theorem is the implication
It is the routine direction of the equivalence between the Riemann hypothesis and its zero-free half-plane form: a zero with is neither a trivial zero (those have negative real part) nor the point (where does not vanish), so RH would force its real part to equal .
Its role is bookkeeping of a decomposition: together with the converse reduction of RH to the half-plane statement, it certifies that the zero-free half-plane target is exactly equivalent to RH and not a strictly stronger assertion.
Formalization Note. RiemannHypothesis is Mathlib's predicate on riemannZeta, taken as a hypothesis here; the theorem is a conditional statement and asserts nothing unconditionally about the zeros of .
import Mathlib.NumberTheory.LSeries.RiemannZeta import Mathlib.NumberTheory.LSeries.Nonvanishing open Complex
theorem riemann_hypothesis_imp_zeta_ne_zero_of_half_lt_re (h : RiemannHypothesis) (s : ℂ)
(hs : 1 / 2 < s.re) : riemannZeta s ≠ 0 := by sorry