Zagier's Conjecture on Multiple Zeta Values #
References:
- [Za94] Zagier, Don. "Values of zeta functions and their applications." First European Congress of Mathematics Paris, July 6–10, 1992: Vol. II: Invited Lectures (Part 2). Basel: Birkhäuser Basel, 1994.
- [Co18] Combariza, Germán AG. "A few conjectures about the multiple zeta values." ACM Communications in Computer Algebra 52.1 (2018): 11-20.
- [Te02] T. Terasoma. Mixed Tate motives and multiple zeta values. Invent. Math., 149(2):339–369, 2002.
- [DG05] P. Deligne and A. Goncharov. Groupes fondamentaux motiviques de Tate mixte. Ann. Sci. Ecole Norm. Sup. (4), 38(1):1–56, 2005.
- OEIS A000931
The multiple zeta value $\zeta(s_1, s_2, \ldots, s_k)$, defined as
$$\zeta(s_1, \ldots, s_k) = \sum_{n_1 > n_2 > \cdots > n_k > 0} \frac{1}{n_1^{s_1} n_2^{s_2} \cdots n_k^{s_k}}.$$
The argument is a list of positive natural numbers. The value is well-defined (i.e. the series
converges) when the first entry is at least 2, but we define it for all inputs.
For the empty list, multiZeta [] = 1 (the empty product convention).
Equations
- ZagierMZV.multiZeta [] = 1
- ZagierMZV.multiZeta (s :: rest) = ∑' (n : ℕ), 1 / (↑n + 1) ^ s * ZagierMZV.multiZeta.aux rest n
Instances For
Auxiliary function for multiZeta: computes the inner sum
$\sum_{n_2 > \cdots > n_k > 0, n_2 < \text{bound}} \frac{1}{n_2^{s_2} \cdots n_k^{s_k}}$.
Equations
- ZagierMZV.multiZeta.aux [] x✝ = 1
- ZagierMZV.multiZeta.aux (s :: rest) x✝ = ∑ m ∈ Finset.range x✝, 1 / (↑m + 1) ^ s * ZagierMZV.multiZeta.aux rest m
Instances For
The weight of an MZV index $(s_1, \ldots, s_k)$ is $s_1 + \cdots + s_k$.
Equations
- ZagierMZV.weight s = s.sum
Instances For
An MZV index is admissible if it is either empty or if the first entry is at least 2 and all entries are positive. The empty list convention ensures $\mathcal{Z}_0 = \mathbb{Q}$.
Equations
Instances For
The set of all MZV values of weight $n$.
Equations
Instances For
The $\mathbb{Q}$-submodule of $\mathbb{R}$ spanned by all MZVs of weight $n$.
Equations
Instances For
The conjectured Zagier dimension sequence $d_n$, defined by $d_0 = 1$, $d_1 = 0$, $d_2 = 1$, and $d_n = d_{n-2} + d_{n-3}$ for $n \geq 3$.
Equations
- ZagierMZV.zagierDim 0 = 1
- ZagierMZV.zagierDim 1 = 0
- ZagierMZV.zagierDim 2 = 1
- ZagierMZV.zagierDim n.succ.succ.succ = ZagierMZV.zagierDim (n + 1) + ZagierMZV.zagierDim n
Instances For
Zagier's conjecture
The $\mathbb{Q}$-dimension of the vector space spanned by all multiple zeta values of weight $n$ equals $d_n$, where $d_n$ is the Zagier dimension sequence satisfying $d_0 = 1$, $d_1 = 0$, $d_2 = 1$, and $d_n = d_{n-2} + d_{n-3}$ for $n \geq 3$.
Upper bound [Te02, DG05]
The dimension of the $\mathbb{Q}$-vector space of MZVs of weight $n$ is at most $d_n$.
There is no admissible index of weight 1 (since $s_1 \geq 2$ is required).
$\mathcal{Z}_0 = \mathbb{Q}$, so $\dim_\mathbb{Q}(\mathcal{Z}_0) = 1$.
$\mathcal{Z}_1 = \emptyset$, so $\dim_\mathbb{Q}(\mathcal{Z}_1) = 0$.