Skip to main content
AlexKontorovich/PrimeNumberTheoremAnd
Source indexedlemma · leanprover/lean4:v4.32.0

Complex.Hadamard.tsum_two_mul_rpow_div_norm_divisorZeroIndex₀_le

PrimeNumberTheoremAnd.Mathlib.Analysis.Complex.CartanMajorantBound · PrimeNumberTheoremAnd/Mathlib/Analysis/Complex/CartanMajorantBound.lean:104 to 135

Mathematical statement

Exact Lean statement

lemma tsum_two_mul_rpow_div_norm_divisorZeroIndex₀_le
    {f : ℂ → ℂ} {r τ : ℝ} (hr : 0 ≤ r) (hτ_nonneg : 0 ≤ τ) :
    (∑' p : divisorZeroIndex₀ f (Set.univ : Set ℂ),
        (2 : ℝ) * (r / ‖divisorZeroIndex₀_val p‖) ^ τ)
      ≤ (2 : ℝ) * ((∑' p : divisorZeroIndex₀ f (Set.univ : Set ℂ),
          ‖divisorZeroIndex₀_val p‖⁻¹ ^ τ) + 1) * (1 + r) ^ τ

Complete declaration

Lean source

Canonical source
Full Lean sourceLean 4
lemma tsum_two_mul_rpow_div_norm_divisorZeroIndex₀_le    {f : ℂ  ℂ} {r τ : } (hr : 0  r) (hτ_nonneg : 0  τ) :    (∑' p : divisorZeroIndex₀ f (Set.univ : Set ℂ),        (2 : ) * (r / ‖divisorZeroIndex₀_val p‖) ^ τ)       (2 : ) * ((∑' p : divisorZeroIndex₀ f (Set.univ : Set ℂ),          ‖divisorZeroIndex₀_val p‖⁻¹ ^ τ) + 1) * (1 + r) ^ τ := by  set Sτ :  :=    ∑' p : divisorZeroIndex₀ f (Set.univ : Set ℂ), ‖divisorZeroIndex₀_val p‖⁻¹ ^ τ  have htsum :      (∑' p : divisorZeroIndex₀ f (Set.univ : Set ℂ),          (2 : ) * (r / ‖divisorZeroIndex₀_val p‖) ^ τ)        = (2 : ) * (r ^ τ) *:= by    calc      (∑' p : divisorZeroIndex₀ f (Set.univ : Set ℂ),          (2 : ) * (r / ‖divisorZeroIndex₀_val p‖) ^ τ)          = (2 : ) * ∑' p : divisorZeroIndex₀ f (Set.univ : Set ℂ),              (r / ‖divisorZeroIndex₀_val p‖) ^ τ := by              simp [tsum_mul_left]      _ = (2 : ) * ((r ^ τ) * Sτ) := by              rw [tsum_rpow_div_norm_divisorZeroIndex₀_eq (f := f) (τ := τ) hr]      _ = (2 : ) * (r ^ τ) *:= by ring  have hSτ_nonneg : 0 :=    tsum_nonneg (fun _ => Real.rpow_nonneg (inv_nonneg.2 (norm_nonneg _)) _)  have h1r : r ^ τ  (1 + r) ^ τ :=    Real.rpow_le_rpow (by positivity) (by linarith) hτ_nonneg  have hS : Sτ + 1 := by linarith  have hle : (r ^ τ) * (1 + r) ^ τ * (Sτ + 1) :=    mul_le_mul h1r hS (by linarith) (by positivity)  rw [htsum]  have : (2 : ) * (r ^ τ) * (2 : ) * (Sτ + 1) * (1 + r) ^ τ := by    nlinarith [hle]  simpa [Sτ, mul_assoc, mul_left_comm, mul_comm] using this