L-series #
Given a sequence f: ℕ → ℂ, we define the corresponding L-series.
Main Definitions #
-
LSeries.term f s nis thenth term of the L-series of the sequencefats : ℂ. We define it to be zero whenn = 0. -
LSeries fis the L-series with a given sequencefas its coefficients. This is not the analytic continuation (which does not necessarily exist), just the sum of the infinite series if it exists and zero otherwise. -
LSeriesSummable f sindicates that the L-series offconverges ats : ℂ. -
LSeriesHasSum f s aexpresses that the L-series offconverges (absolutely) ats : ℂtoa : ℂ.
Main Results #
-
LSeriesSummable_of_isBigO_rpow: theLSeriesof a sequencefsuch thatf = O(n^(x-1))converges atswhenx < s.re. -
LSeriesSummable.isBigO_rpow: if theLSeriesoffis summable ats, thenf = O(n^(re s)).
Tags #
L-series
TODO #
-
Move
LSeriesSummable.one_iff_one_lt_reandzeta_LSeriesSummable_iff_one_lt_rto a new file on L-series of specific functions -
Move
LSeries_addand friends to a new file on algebraic operations on L-series
The terms of an L-series #
We define the nth term evaluated at a complex number s of the L-series associated
to a sequence f : ℕ → ℂ, LSeries.term f s n, and provide some basic API.
We set LSeries.term f s 0 = 0, and for positive n, LSeries.term f s n = f n / n ^ s.
Definition of the L-series and related statements #
We define LSeries f s of f : ℕ → ℂ as the sum over LSeries.term f s.
We also provide predicates LSeriesSummable f s stating that LSeries f s is summable
and LSeriesHasSum f s a stating that the L-series of f is summable at s and converges
to a : ℂ.
LSeriesSummable f s indicates that the L-series of f converges absolutely at s.
Equations
- LSeriesSummable f s = Summable (LSeries.term f s)
Instances For
This states that the L-series of the sequence f converges absolutely at s and that
the value there is a.
Equations
- LSeriesHasSum f s a = HasSum (LSeries.term f s) a
Instances For
Criteria for and consequences of summability of L-series #
We relate summability of L-series with bounds on the coefficients in terms of powers of n.
The LSeries with all coefficients 1 converges at s if and only if re s > 1.
The LSeries associated to the arithmetic function ζ converges at s if and only if
re s > 1.