How do you find the infinite sum of a p series? EX: 1/n^2
2 Answers
I ended up just making a program to do it in my TI-83 calculator. If anyone wants it, here it is:
Basically:
- Take
0 and store intoX . This becomes the current sum. - For the variable
N (the current term in the seriessum_(N=1)^(M) 1/(N^P) ), we go through iterations from the1 st iteration to theM th iteration, whereM is the number of terms. - At each iteration, add on
1/N^P from the previous iteration, then store the result inX , the current sum. - Display
X .
So, this would work for finite
sum_(n=1)^oo 1/n^s = zeta(s) wherezeta(s) is the Riemann zeta function .
Explanation:
The complete answer to this question is considerably more complex than it may first appear. I will outline the very basics, and further in-depth analysis is certainly at MSc/PhD level mathematics.
The very basic and quick answer is that the infinite sum of a p-series is given by the Riemann zeta function .
Where:
zeta(s) = sum_(n=1)^oo 1/n^s
Some specific solutions are:
zeta(2) = sum_(n=1)^oo 1/n^2 = pi^2/6 (the Bessel Problem )
zeta(3) = sum_(n=1)^oo 1/n^3 = 1.20205 ... (Apéry's constant )
zeta(4) = sum_(n=1)^oo 1/n^4 = pi^4/90