Plain-language statement
The Lambert series rearrangement over a nonarchimedean local field: for any integer coefficients c and |q| < 1, ∑_{m≥1} c(m)qᵐ/(1 - qᵐ) = ∑_{N≥1} (∑_{d ∣ N} c(d))qᴺ. This is the valuative instantiation of the general tsum_lambert_of_summable (FLT.Slop.NumberTheory.TsumDivisorsAntidiagonal): the geometric row expansions come from `hasSum_geometri...
Exact Lean statement
theorem tsum_lambert (q : k) (hq : valuation k q < 1) (c : ℕ → ℤ) :
∑' m : ℕ, ((c (m + 1) : ℤ) : k) * q ^ (m + 1) / (1 - q ^ (m + 1)) =
∑' N : ℕ, ((∑ d ∈ N.divisors, c d : ℤ) : k) * q ^ NFormal artifact
Lean source
theorem tsum_lambert (q : k) (hq : valuation k q < 1) (c : ℕ → ℤ) : ∑' m : ℕ, ((c (m + 1) : ℤ) : k) * q ^ (m + 1) / (1 - q ^ (m + 1)) = ∑' N : ℕ, ((∑ d ∈ N.divisors, c d : ℤ) : k) * q ^ N := by -- powers of `q` stay in the open unit disc have hqpow : ∀ n : ℕ+, valuation k (q ^ (n : ℕ)) < 1 := fun n ↦ by rw [map_pow] calc valuation k q ^ (n : ℕ) ≤ valuation k q ^ 1 := pow_le_pow_right_of_le_one' hq.le n.pos _ = valuation k q := pow_one _ _ < 1 := hq -- each row of the double series is a geometric series have hgeo : ∀ m : ℕ+, HasSum (fun j : ℕ ↦ q ^ ((m : ℕ) * (j + 1))) (q ^ (m : ℕ) / (1 - q ^ (m : ℕ))) := fun m ↦ by simpa only [← pow_mul] using hasSum_geometric_succ (hqpow m) -- the double series is summable, its terms tending to zero nonarchimedeanly have hsum : Summable fun p : ℕ+ × ℕ+ ↦ ((c p.1 : ℤ) : k) * q ^ ((p.1 : ℕ) * (p.2 : ℕ)) := by refine summable_of_valuation_le_pow hq (fun p ↦ (p.1 : ℕ) * (p.2 : ℕ)) (fun N ↦ ?_) fun p ↦ ?_ · refine (((Set.finite_Iio N).preimage PNat.coe_injective.injOn).prod ((Set.finite_Iio N).preimage PNat.coe_injective.injOn)).subset fun p hp ↦ ?_ have h1 : (p.1 : ℕ) ≤ (p.1 : ℕ) * (p.2 : ℕ) := Nat.le_mul_of_pos_right _ p.2.pos have h2 : (p.2 : ℕ) ≤ (p.1 : ℕ) * (p.2 : ℕ) := Nat.le_mul_of_pos_left _ p.1.pos exact Set.mem_prod.mpr ⟨Set.mem_preimage.mpr (Set.mem_Iio.mpr (lt_of_le_of_lt h1 hp)), Set.mem_preimage.mpr (Set.mem_Iio.mpr (lt_of_le_of_lt h2 hp))⟩ · rw [map_mul, map_pow] simpa using mul_le_mul_left (valuation_intCast_le_one _) (valuation k q ^ ((p.1 : ℕ) * (p.2 : ℕ))) calc ∑' m : ℕ, ((c (m + 1) : ℤ) : k) * q ^ (m + 1) / (1 - q ^ (m + 1)) = ∑' m : ℕ+, ((c m : ℤ) : k) * q ^ (m : ℕ) / (1 - q ^ (m : ℕ)) := (tsum_pnat_eq_tsum_succ (f := fun n ↦ ((c n : ℤ) : k) * q ^ n / (1 - q ^ n))).symm _ = ∑' N : ℕ+, (∑ d ∈ (N : ℕ).divisors, ((c d : ℤ) : k)) * q ^ (N : ℕ) := tsum_lambert_of_summable q (fun d ↦ ((c d : ℤ) : k)) hgeo hsum _ = ∑' N : ℕ+, ((∑ d ∈ (N : ℕ).divisors, c d : ℤ) : k) * q ^ (N : ℕ) := tsum_congr fun N ↦ by push_cast; ring _ = ∑' N : ℕ, ((∑ d ∈ N.divisors, c d : ℤ) : k) * q ^ N := by refine PNat.coe_injective.tsum_eq (f := fun N : ℕ ↦ ((∑ d ∈ N.divisors, c d : ℤ) : k) * q ^ N) fun x hx ↦ ?_ cases x with | zero => simp at hx | succ n => exact ⟨n.succPNat, rfl⟩- Project
- Fermat's Last Theorem
- License
- Apache-2.0
- Commit
- 8dd808888295
- Source
- FLT/KnownIn1980s/EllipticCurves/TateCurveBaseChange.lean:137-175
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
Eq finsum quotient out of bij On
AbstractHeckeOperator.eq_finsum_quotient_out_of_bijOn'
Plain-language statement
If a is fixed by V then ∑ᶠ g ∈ s, g • a is independent of the choice s of coset representatives in G for a subset of G ⧸ V
Source project: Fermat's Last Theorem
Person-level attribution pending.
Comm Group no compact automorphisms
CommGroup.no_compact_automorphisms
Plain-language statement
A connected compact Hausdorff abelian topological group does not admit a nontrivial compact group of automorphisms.
Source project: Fermat's Last Theorem
Person-level attribution pending.
Fermat Last Theorem of p ge 5
FermatLastTheorem.of_p_ge_5
Plain-language statement
If Fermat's Last Theorem is true for primes p ≥ 5, then FLT is true.
Source project: Fermat's Last Theorem
Person-level attribution pending.