-
Recent Posts
Archives
- May 2012 (2)
- April 2012 (3)
- March 2012 (2)
- January 2012 (1)
- June 2011 (1)
- March 2011 (2)
- September 2010 (3)
- July 2010 (4)
- June 2010 (3)
- March 2010 (3)
- February 2010 (4)
- January 2010 (4)
- December 2009 (1)
- September 2009 (1)
- August 2009 (4)
- July 2009 (3)
- June 2009 (5)
- May 2009 (2)
- March 2009 (1)
- February 2009 (5)
- January 2009 (2)
- November 2008 (1)
- October 2008 (2)
- September 2008 (1)
- August 2008 (1)
- July 2008 (4)
Blogroll
Meta
Author Archives: Fredrik
Experiments with low-level ball arithmetic
In the implementation of ball arithmetic I wrote about previously, arithmetic is done naively using FLINT (fmpz) integers. This is easy to implement but adds quite a lot of overhead at low precision (up to a precision of several hundred … Continue reading
Posted in Uncategorized
Leave a comment
Logarithms as well
In the last post, I discussed computing the exponential function. With that being implemented, it’s not much work to do logarithms as well. If we can evaluate the exponential function, then we can compute $y = \log x$ by using … Continue reading
Posted in Uncategorized
Comments Off
Revisiting transcendental functions
The overwhelming majority of the time when I use arbitrary-precision arithmetic, I only need precision slightly higher than hardware precision; typically 30-40 digits, occasionally perhaps 100 digits, and only very rarely 1000 digits or more. About two years ago, I … Continue reading
Posted in Uncategorized
Comments Off
Algorithm selection for zeta(n)
In my last post, I mentioned using binary splitting to compute $\zeta(n)$ to extremely high precision for small $n$. I have now added a function to Arb for evaluating $\zeta(n)$ that selects between several different algorithms depending on both $n$ … Continue reading
Posted in Uncategorized
Comments Off