L-series #
Given a sequence f: ℕ → ℂ
, we define the corresponding L-series.
Main Definitions #
-
LSeries.term f s n
is then
th term of the L-series of the sequencef
ats : ℂ
. We define it to be zero whenn = 0
. -
LSeries f
is the L-series with a given sequencef
as 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 s
indicates that the L-series off
converges ats : ℂ
. -
LSeriesHasSum f s a
expresses that the L-series off
converges (absolutely) ats : ℂ
toa : ℂ
.
Main Results #
-
LSeriesSummable_of_isBigO_rpow
: theLSeries
of a sequencef
such thatf = O(n^(x-1))
converges ats
whenx < s.re
. -
LSeriesSummable.isBigO_rpow
: if theLSeries
off
is summable ats
, thenf = O(n^(re s))
.
Tags #
L-series
TODO #
-
Move
LSeriesSummable.one_iff_one_lt_re
andzeta_LSeriesSummable_iff_one_lt_r
to a new file on L-series of specific functions -
Move
LSeries_add
and friends to a new file on algebraic operations on L-series
The terms of an L-series #
We define the n
th 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
.