/- Copyright 2025 The Formal Conjectures Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -/ import FormalConjecturesUtil

Particular values of the Riemann zeta function

Reference: Wikipedia

namespace RiemannZetaValues

$\zeta(5)$ is irrational.

@[category research open, AMS 11 33] theorem declaration uses 'sorry'irrational_five : x, Irrational x riemannZeta 5 = x := x, Irrational x riemannZeta 5 = x All goals completed! 🐙

$\zeta(7)$ is irrational.

@[category research open, AMS 11 33] theorem declaration uses 'sorry'irrational_seven : x, Irrational x riemannZeta 7 = x := x, Irrational x riemannZeta 7 = x All goals completed! 🐙

$\zeta(9)$ is irrational.

@[category research open, AMS 11 33] theorem declaration uses 'sorry'irrational_nine : x, Irrational x riemannZeta 9 = x := x, Irrational x riemannZeta 9 = x All goals completed! 🐙

$\zeta(11)$ is irrational.

@[category research open, AMS 11 33] theorem declaration uses 'sorry'irrational_eleven : x, Irrational x riemannZeta 11 = x := x, Irrational x riemannZeta 11 = x All goals completed! 🐙

$\zeta(2n + 1)$ is irrational for any $n\in\mathbb{N}^{+}$.

@[category research open, AMS 11 33] theorem declaration uses 'sorry'irrational_odd (n : ) (hn : 0 < n) : x, Irrational x riemannZeta (2 * n + 1) = x := n:hn:0 < n x, Irrational x riemannZeta (2 * n + 1) = x All goals completed! 🐙

$\zeta(3)$ is irrational.

[Ap79] Apéry, R. (1979). Irrationalité de ζ(2) et ζ(3). Astérisque. 61: 11–13.

@[category research solved, AMS 11 33] theorem declaration uses 'sorry'irrational_three : x, Irrational x riemannZeta 3 = x := x, Irrational x riemannZeta 3 = x All goals completed! 🐙

There are infinitely many $\zeta(2n + 1)$, $n \in \mathbb{N}$, that are irrational.

[Ri00] Rivoal, T. (2000). La fonction zeta de Riemann prend une infinité de valeurs irrationnelles aux entiers impairs. Comptes Rendus de l'Académie des Sciences, Série I. 331 (4): 267–270.

@[category research solved, AMS 11 33] theorem declaration uses 'sorry'infinite_irrational_at_odd : { n : | x, Irrational x riemannZeta (2 * n + 1) = x }.Infinite := {n | x, Irrational x riemannZeta (2 * n + 1) = x}.Infinite All goals completed! 🐙

At least one of $\zeta(5), \zeta(7), \zeta(9)$ or $\zeta(11)$ is irrational.

[Zu01] W. Zudilin (2001). One of the numbers ζ(5), ζ(7), ζ(9), ζ(11) is irrational. Russ. Math. Surv. 56 (4): 774–776.

@[category research solved, AMS 11 33] theorem declaration uses 'sorry'exists_irrational_of_five_seven_nine_eleven : {5, 7, 9, 11} { a | x, Irrational x riemannZeta a = x} |>.Nonempty := ({5, 7, 9, 11} {a | x, Irrational x riemannZeta a = x}).Nonempty All goals completed! 🐙 end RiemannZetaValues