All proofs
Project-declaredLean 4.32.0 · mathlib@249c48c2

Tsum lambert

TateCurve.tsum_lambert

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 ^ N

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
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

Project-declaredLean 4.32.0

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

number theoryarithmetic geometryFermat's Last Theorem

Source project: Fermat's Last Theorem

Person-level attribution pending.

View proof record
Project-declaredLean 4.32.0

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.

number theoryarithmetic geometryFermat's Last Theorem

Source project: Fermat's Last Theorem

Person-level attribution pending.

View proof record