Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemath
GitHub Repository: sagemath/sagelib
Path: blob/master/sage/modular/modform/periods.py
4076 views
1
"""
2
Periods of modular forms.
3
"""
4
5
# The following idea just occurred to me.
6
# We could use that $\langle T_n(g), x\rangle = \langle g, T_n(x)\rangle$
7
# for any Hecke operator $T_n$, so that we only need to compute
8
# the period integrals $\langle g, x_i\rangle$. Then we obtain all pairings
9
# $\langle T_n(g), x_i \rangle = \langle g , T_n(x_i) \rangle$.
10
# Since the $T_n(g)$ span the simple $\T$-module $S_k(\Gamma;\Q)[I]$,
11
# this must give all pairings. However, it requires computing
12
# only $2d$ pairings instead of $2d^2$ pairings, which is potentially
13
# a huge savings when $d$ is large.
14
15
16
17