vote up 0 vote down star

Has arbitrary-precision arithmetic affected numerical analysis software?

I feel that most numerical analysis software keeps on using the same floats and doubles.

If I'm right, I'd love to know the reason, as in my opinion there are some calculations that can benefit from the use of arbitrary-precision arithmetic, particularly when it is combined with the use of rational number representation, as been done on the GNU Multi-Precision Library.

If I'm wrong, examples would be nice.

flag

4 Answers

vote up 6 vote down check

Arbitrary precision is slow. Very slow. And the moment you use a function that produces an irrational value (such as most trig functions), you lose your arbitrary precision advantage.

So if you don't need, or can't use that precision, why spend all that CPU time on it?

link|flag
This was my gut feeling too – Draemon Jul 30 at 21:49
3  
Yup. A lot of numerical analysis is not so much about getting the answer as getting it fast. It's used on some awfully big problems, and slowing it down by an order of magnitude or more isn't seen as feasible. – David Thornley Jul 30 at 21:51
That you for your answer, I assume speed is one factor, but I suspect that with today's fast computers, and a very optimized library (gmp), it isn't very slow. I believe that on irrational value you don't lose the arbitrary precision advantage, as you can store it as precise as you want it, more precise than on a fixed arbitrary. A better yet more complicated solution to irrational numbers arising from such trig functions can be to use symbolic computation. – Liran Orevi Jul 30 at 23:47
Symbolic computation isn't all-powerful, and although gmp may be well optimized, there's a world of difference between doing things in the integer unit one base-2^32 digit at a time, and doing things in the hardware floating-point unit. – bdonlan Jul 31 at 0:37
1  
Also, it is not the rational/irrational numbers which pose the issue, but the algebraic/transcendental distinction. One could easily compute sqrt(sqrt(2)), however, sqrt(sqrt(Pi))??? For work on Algebraic full precision, see the page of Chee Yap at Courant. As for the OP. 1) It is slow. 2) In science, we accept finite precision, so how and why can we expect better for a computer. – SplittingField Aug 1 at 15:37
vote up 0 vote down

It's very rare that you need an exact answer to a numerical problem - it's almost always the case that you need the result to some given accuracy. It's also the case that operations are most efficient if performed by dedicated hardware. Taken together that means that there is pressure on hardware to provide implementations that have sufficient accuracy for most common problems.

So economic pressure has created an efficient (ie hardware based) solution for the common cases.

link|flag
vote up 1 vote down

Arbitrary precision doesn't work well with irrational values. I think flip everything upside down would help numerical analysis software. Instead of figuring how what precision is needed for the calculation, you should tell the software what you want the final precision to be and it'll figure everything out.

This way it can use a finite precision type just large enough for the calculation.

link|flag
Just to reiterate, arbitrary precision computation can be done for algebraic numbers (such as sqrt(2)). The problem comes in when we want to compute transcendental numbers, such as sqrt(Pi). – SplittingField Aug 1 at 15:42
vote up 1 vote down

If you look at programs like Mathematica, I strongly suspect you'd find that they do not use floats and doubles for their work. If you look at cryptography, you will definitely find that they do not use floats and doubles (but they are mainly working with integers anyway).

It is basically a judgement call. The people who feel that their product will benefit from increased accuracy and precision use extended-precision or arbitrary-precision arithmetic software. Those who don't think the precision is needed won't use it.

link|flag
Yes, According to en.wikipedia.org/wiki/… some computer algebra software do use arbitrary-precision arithmetic (at least to some degree) – Liran Orevi Jul 30 at 23:22

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.