(Hobbyist here, please excuse any misunderstanding I have below.)
I'm trying to compute values of the Riemann zeta function in the critical strip, using the Dirichlet eta function. I've reimplemented this implementation in C. I get the same values as the reference implementation, so I'm pretty sure the implementation is correct.
The values look correct on the critical line, but the errors get quite large when approaching the ends of the critical strip. Is this expected? If so, is there a different formula I could implement that shows smaller errors around the end of the strip?
Thank you!
This looks just like the Dirichlet eta function when I check Wikipedia, but the errors are large. For example $$ \zeta(0.1+14.5i) $$ is (0.27 - 0.37i) instead of (-0.40 + 0.34i) for an N of 10000. On the critical line it's "much" better, with an error under 1%
– balidani Apr 04 '17 at 06:37