feat(IK): prove LSeries_liouville_eq#1533
Open
giuseppesorge wants to merge 2 commits into
Open
Conversation
Contributor
Author
|
awaiting-review |
Contributor
Author
|
Added a small follow-up commit (1d7e31c) that fixes a typo in the existing informal blueprint proof of this node: the |
Prove that the Dirichlet series of the Liouville function equals zeta(2s)/zeta(s) for Re s > 1, via the Euler product of the completely multiplicative summand n -> lambda(n) * n^(-s), combined with the Euler products of zeta(s) and zeta(2s). Adds elementary lemmas on the Liouville function (liouville_apply, liouville_apply_one, liouville_apply_mul, liouville_norm_le) and the summand machinery (liouvilleSummandHom, summable_liouvilleSummand, tsum_liouvilleSummand).
The previous informal proof had a typo in the intermediate Euler product (it evaluated to zeta(s)/zeta(2s)). Rewrite it to match the formalised proof: zeta(s) * L(lambda, s) = zeta(2s) via (1 - p^-s)(1 + p^-s) = 1 - p^-2s.
1d7e31c to
811a8c3
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Proves
LSeries_liouville_eq(#1286): forRe s > 1, the Dirichlet series of the Liouville functionλequalsζ(2s)/ζ(s).Approach
λis completely multiplicative withλ(p) = -1, so the summandn ↦ λ(n)·n^(-s)is aℕ →*₀ ℂ. By the Euler product for completely multiplicative functions it factors as∏ₚ (1 - λ(p)p^(-s))⁻¹ = ∏ₚ (1 + p^(-s))⁻¹. Multiplying with the Euler product ofζ(s)(HasProd.mul) and identifying the result with that ofζ(2s)(HasProd.unique, via(1-p^(-s))⁻¹(1+p^(-s))⁻¹ = (1-p^(-2s))⁻¹) givesζ(s)·L(λ,s) = ζ(2s); dividing byζ(s) ≠ 0yields the result. Same high-levelEulerProductapproach as the existingtwo_pow_omegalemmas.On the helper lemmas (duplication with Mathlib)
This file defines its own
ArithmeticFunction.liouvillerather than importing Mathlib'sMathlib.NumberTheory.ArithmeticFunction.Liouville, so Mathlib's lemmas aboutliouvilleare not in scope here. Itherefore re-prove the small facts I need —
liouville_apply,liouville_apply_one,liouville_apply_mul,liouville_norm_le— which mirror Mathlib's. The cleaner long-term fix would be to have this file use Mathlib'sliouville(dropping the local definition and these helpers), but that touches the existingliouvilledefinition, itsblueprint node, and the other
liouville_*lemmas, so I kept this PR focused onLSeries_liouville_eq. Happy to make thatrefactor instead if you prefer.
AI assistance
This proof was developed with AI assistance (Claude).
Closes #1286