Skip to content
Closed
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions Mathlib/NumberTheory/ModularForms/EisensteinSeries/Basic.lean
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,15 @@ def eisensteinSeries_MF {k : ℤ} {N : ℕ+} (hk : 3 ≤ k) (a : Fin 2 → ZMod
holo' := eisensteinSeries_SIF_MDifferentiable hk a
bdd_at_infty' := isBoundedAtImInfty_eisensteinSeries_SIF a hk

/-- The trivial congruence condition at level 1. -/
def standardcongruencecondition : Fin 2 → ZMod ((1 : ℕ+) : ℕ) := 0

/-- Notation for the `standardcongruencecondition`. -/
scoped notation "𝟙" => standardcongruencecondition
Comment thread
CBirkbeck marked this conversation as resolved.
Outdated

/-- Normalised Eisenstein series of level 1 and weight `k`,
here they need `1/2` since we sum over coprime pairs. -/
Comment thread
CBirkbeck marked this conversation as resolved.
Outdated
noncomputable def E {k : ℕ} (hk : 3 ≤ k) : ModularForm Γ(1) k :=
(1/2 : ℂ) • eisensteinSeries_MF (by omega) 𝟙

end ModularForm