Euler function and pentagonal number theorem #
This file proves the pentagonal number theorem for $‖x‖ < 1$ in a complete normed ring (e.g. ℂ):
$$ \prod_{n = 0}^{\infty} (1 - x^{n + 1}) = \sum_{k=-\infty}^{\infty} (-1)^k x^{a_k} $$
where $a_k = k(3k - 1)/2$ are the pentagonal numbers. We state the theorem in two parts by
introducing the Euler function eulerFunction, defined as a power series whose coefficients are
related to pentagonal numbers. We then show that this function is equal to both sides.
Main theorems #
eulerFunction_eq_tprod:eulerFunctionis equal to the infinite product on the left-hand side.eulerFunction_eq_tsum_pentagonal:eulerFunctionis equal to the infinite sum on the right-hand side.
References #
The Euler function $\phi(x) = \sum_{k=-\infty}^{\infty}(-1)^k x^{k (3k - 1) / 2}$, defined
as a power series with the same coefficients as PowerSeries.pentagonalSeries. See
eulerFunction_eq_tsum_pentagonal for the expression using pentagonal numbers.
Equations
- eulerFunction x = ∑' (n : ℕ), (PowerSeries.coeff n) (PowerSeries.pentagonalSeries R) * x ^ n
Instances For
Pentagonal number theorem for Euler function, expressed as an infinite product.
See eulerFunction_eq_tsum_pentagonal that expresses eulerFunction as an infinite sum.
Pentagonal number theorem for Euler function, expressed as an infinite product.
See hasSum_eulerFunction_pentagonal that expresses eulerFunction as an infinite sum.