LSeries d eq riemann Zeta pow
ArithmeticFunction.LSeries_d_eq_riemannZeta_pow
Plain-language statement
The L-series of d k equals ζ(s)^k for Re(s) > 1.
Exact Lean statement
@[blueprint
"LSeries_d_eq_riemannZeta_pow"
(title := "LSeries d eq riemannZeta pow")
(statement := /-- The $L$-series of $d_k$ equals $\zeta(s)^k$ for $\Re(s) > 1$. -/)
(proof := /--
From the definition of $d_k$ as the $k$-fold Dirichlet convolution of $\zeta$, we can express $d_k$ as $\zeta^k$. The L-series of a Dirichlet convolution corresponds to the product of the L-series of the individual functions. Since $L(\zeta, s)$ is the Riemann zeta function $\zeta(s)$, it follows that $L(d_k, s) = L(\zeta^k, s) = (L(\zeta, s))^k = \zeta(s)^k$ for $\Re(s) > 1$ where the series converges.
-/)]
theorem LSeries_d_eq_riemannZeta_pow (k : ℕ) {s : ℂ} (hs : 1 < s.re) :
LSeries (↗(d k)) s = riemannZeta s ^ kFormal artifact
Lean source
@[blueprint "LSeries_d_eq_riemannZeta_pow" (title := "LSeries d eq riemannZeta pow") (statement := /-- The $L$-series of $d_k$ equals $\zeta(s)^k$ for $\Re(s) > 1$. -/) (proof := /-- From the definition of $d_k$ as the $k$-fold Dirichlet convolution of $\zeta$, we can express $d_k$ as $\zeta^k$. The L-series of a Dirichlet convolution corresponds to the product of the L-series of the individual functions. Since $L(\zeta, s)$ is the Riemann zeta function $\zeta(s)$, it follows that $L(d_k, s) = L(\zeta^k, s) = (L(\zeta, s))^k = \zeta(s)^k$ for $\Re(s) > 1$ where the series converges. -/)]theorem LSeries_d_eq_riemannZeta_pow (k : ℕ) {s : ℂ} (hs : 1 < s.re) : LSeries (↗(d k)) s = riemannZeta s ^ k := by change LSeries (↗(d k : ArithmeticFunction ℂ)) s = riemannZeta s ^ k induction k with | zero => simp only [d_zero, natCoe_one, pow_zero, one_eq_delta] exact congr_fun LSeries_delta s | succ j ih => have hζ : LSeriesSummable (↗(ζ : ArithmeticFunction ℂ)) s := LSeriesSummable_zeta_iff.mpr hs rw [pow_succ, LSeries_congr (fun {n} _ => show (d (j + 1) : ArithmeticFunction ℂ) n = ((d j : ArithmeticFunction ℂ) * ζ) n by rw [d_succ, natCoe_mul]) s, LSeries_mul' (LSeries_d_summable j hs) hζ, ih] congr 1 exact LSeries_zeta_eq_riemannZeta hs- Project
- Prime Number Theorem and More
- License
- Apache-2.0
- Commit
- a93551347dce
- Source
- PrimeNumberTheoremAnd/IwaniecKowalskiCh1.lean:258-279
Reuse this declaration
Bring the exact result into your workflow
The import identifies the source module. Your project still needs the pinned package dependency shown on this page.
What this badge means
This completion status comes from the project or community source. It has not yet been represented here as an independent rebuild and axiom audit.
Continue in this project
Related declarations
Admissible bound mono
admissible_bound.mono
Plain-language statement
For positive parameters , the classical error-bound function is nonincreasing once .
Source project: Prime Number Theorem and More
Person-level attribution pending.
Analytic On div Removable zero
AnalyticOn_divRemovable_zero
Plain-language statement
Let be analytic on an open set containing , and suppose . Define for and . Then the apparent singularity at is removable and is analytic throughout .
Source project: Prime Number Theorem and More
Person-level attribution pending.
Analytic On div Removable zero closed Ball
AnalyticOn_divRemovable_zero_closedBall
Plain-language statement
Suppose and is analytic on the closed disc with . Define for and . Then is analytic on the entire closed disc, including at the removed singularity.
Source project: Prime Number Theorem and More
Person-level attribution pending.