Evaluating a class of infinite sums in closed form
The article evaluates infinite sums using polylogarithms, noting that they yield rational numbers for non-negative integers. It discusses integer results for specific values and provides examples and proofs.
Read original articleThe article discusses the evaluation of a specific class of infinite sums in closed form using polylogarithms. It highlights that sums of the form can yield rational numbers when k is a non-negative integer and c is a rational number with |c| > 1. An algorithm exists for determining the value of these sums, which can be expressed using the polylogarithm function Lis(z). While Lis(z) cannot generally be evaluated in closed form, it can be for negative integers. The article provides an example where the sum equals Li−3(1/2), resulting in the value 26 when z is set to 1/2. It notes that while the sum is not always an integer for positive integers k and c, it remains rational. The author verified that the sum is an integer for c = 2 and k values from 1 to 10 using Mathematica. An update includes a proof that the sum is an integer when n = 2, referencing a comment from a reader. The article also mentions that the sum can occasionally be an integer for larger values of c, providing examples. The discussion is framed within the context of mathematical exploration and the properties of special functions, particularly polylogarithms.
Related
How does a computer/calculator compute logarithms?
Computers and calculators compute logarithms using geometric series and polynomial equations from calculus. Natural logarithm's relation to $\frac{1}{1+x}$ is explained through curve areas. Polynomial series derived from integrating geometric series compute natural logarithms, but converge quickly only for $|x| < \frac{1}{2}."
How the square root of 2 became a number
The historical development of the square root of 2 in mathematics is explored, highlighting struggles with irrational numbers by ancient Greeks. Dedekind and Cantor's contributions revolutionized mathematics, enabling a comprehensive understanding of numbers.
What makes e natural? (2004)
The number e in mathematics, introduced by Euler, has unique properties like transcendence and relation to trigonometric functions. Historical figures like Bürgi, Napier, and Briggs contributed to logarithmic advancements. E's significance lies in its role in exponential and logarithmic functions, crucial in calculus.
Common Lisp Names All Sixteen Binary Logic Gates
The section on Logical Operations in Common Lisp covers using integers for logical operations, representing bit vectors as sets. Functions like logior, logand, and logxor compute set operations efficiently.
New large value estimates for Dirichlet polynomials
The paper by Larry Guth and James Maynard introduces enhanced bounds for Dirichlet polynomials, impacting prime number theory and the Riemann zeta function. It offers zero density estimates and primes' behavior in short intervals, aiding prime number distribution comprehension. The 48-page paper falls under Number Theory with MSC classes 11M26 and 11N05, holding substantial implications for number theory.
- Several commenters propose alternative methods for evaluating infinite sums, such as Feynman's Trick and generating functions.
- There is a focus on specific examples and simpler cases to better understand the main results, with references to well-known series and their convergence.
- Some commenters express surprise at the integer results obtained from the sums, particularly noting the significance of the number 26.
- Links to OEIS sequences are shared, highlighting connections to combinatorial problems.
- A few comments address minor errors in the article and discuss technical issues related to displaying mathematical content online.
Consider the function f(x) = Sum_{n=1}^\infty c^(-xn)
Then differentiate this k times. Each time you pull down a factor of n (as well as a log(c), but that's just a constant). So, the sum you're looking for is related to the kth derivative of this function.
Now, fortunately this function can be evaluated explicitly since it's just a geometric series: it's 1 / (c^x - 1) -- note that the sum starts at 1 and not 0. Then it's just a matter of calculating a bunch of derivatives of this function, keeping track of factors of log(c) etc. and then evaluating it at x = 1 at the very end. Very labor intensive, but (in my opinion) less mysterious than the approach shown here (although, of course the polylogarithm function is precisely this tower of derivatives for negative integer values).
G(x) = 1 + x + x^2 + ... = 1/(1-x)
The coefficients of this polynomial is the sequence (0^0, 1^0, 2^0, ...)If you take the derivative of G(x) and multiply by x you get:
x * G'(x) = x + 2*x^2 + 3*x^3 + ... = x * d/dx 1/(1-x) = x/(1-x)^2
The coefficients of this polynomial is the sequence (0^1, 1^1, 2^1, ...). If you repeat this step, you get a polynomial whose coefficients are (0^2, 1^2, 2^2, ...) and if you do this operation N times, you can get a closed form of a polynomial whose coefficients are (0^N, 1^N, 2^N, ...).The infinite sum converges for -1 < x < 1. If you set x=1/c, you get the infinite sum
0^N/c^0 + 1^N/c^1 + 2^N/c^2 + ...
which is exactly the sum we are trying to solve for. This means you solve any infinite sum of the form given by taking the derivative of 1/(1-x) N times while multiplying by x each time. Then plug in x=1/c at the end.https://oeis.org/A076726 (" A076726 | a(n) = Sum_{k>=0} k^n/2^k")
https://oeis.org/A000629 ("A000629 | Number of necklaces of partitions of n+1 labeled beads")
If the exponent is 0, then you have the sum 1/2 + 1/4 + 1/8 + 1/16 + 1/32 + ..., from Zeno's most famous paradox (https://en.wikipedia.org/wiki/Zeno%27s_paradoxes ). If you are fortunate, you previously learned that this converges to 1, and played around with this enough in your head to have a solid understanding of why. If you are less fortunate, I recommend pausing to digest this result.
Then, if the exponent is 1, you have the sum 1/2 + 2/4 + 3/8 + 4/16 + 5/32 + ... .
What happens if we subtract (1/2 + 1/4 + 1/8 + 1/16 + 1/32 + ...) from it? We have (1/4 + 2/8 + 3/16 + 4/32 + ...) left over.
Then, if we subtract (1/4 + 1/8 + 1/16 + 1/32 + ...) from the latter, we still have (1/8 + 2/16 + 3/32 + ...) left over.
Then, if we subtract (1/8 + 1/16 + 1/32 + ...) from the latter, we still have (1/16 + 2/32 + ...) left over.
Continuing in this fashion, we end up subtracting off
(1/2 + 1/4 + 1/8 + 1/16 + 1/32 + ...) + (1/4 + 1/8 + 1/16 + 1/32 + ...) + (1/8 + 1/16 + 1/32 + ...) + (1/16 + 1/32 + ...) + (1/32 + ...) + ...
and this converges to the main sum. And, from the exponent-0 result, we know this is just 1 + 1/2 + 1/4 + 1/8 + 1/16 + ...
That was an interesting article thanks.
Wonder if there’s any way to intuit this before working it out.
Related
How does a computer/calculator compute logarithms?
Computers and calculators compute logarithms using geometric series and polynomial equations from calculus. Natural logarithm's relation to $\frac{1}{1+x}$ is explained through curve areas. Polynomial series derived from integrating geometric series compute natural logarithms, but converge quickly only for $|x| < \frac{1}{2}."
How the square root of 2 became a number
The historical development of the square root of 2 in mathematics is explored, highlighting struggles with irrational numbers by ancient Greeks. Dedekind and Cantor's contributions revolutionized mathematics, enabling a comprehensive understanding of numbers.
What makes e natural? (2004)
The number e in mathematics, introduced by Euler, has unique properties like transcendence and relation to trigonometric functions. Historical figures like Bürgi, Napier, and Briggs contributed to logarithmic advancements. E's significance lies in its role in exponential and logarithmic functions, crucial in calculus.
Common Lisp Names All Sixteen Binary Logic Gates
The section on Logical Operations in Common Lisp covers using integers for logical operations, representing bit vectors as sets. Functions like logior, logand, and logxor compute set operations efficiently.
New large value estimates for Dirichlet polynomials
The paper by Larry Guth and James Maynard introduces enhanced bounds for Dirichlet polynomials, impacting prime number theory and the Riemann zeta function. It offers zero density estimates and primes' behavior in short intervals, aiding prime number distribution comprehension. The 48-page paper falls under Number Theory with MSC classes 11M26 and 11N05, holding substantial implications for number theory.