Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re^2: How to get better exponentiation?

by Athanasius (Archbishop)
on Jan 22, 2022 at 11:19 UTC ( [id://11140704]=note: print w/replies, xml ) Need Help??


in reply to Re: How to get better exponentiation?
in thread How to get better exponentiation?

Thanks, haukex, POSIX::cbrt is just what I need! But I’m disappointed to find that POSIX::pow has the same limitations as **. So the more general question remains open.

Thanks again,

Athanasius <°(((><contra mundum Iustus alius egestas vitae, eros Piratica,

Replies are listed 'Best First'.
Re^3: How to get better exponentiation? (updated)
by haukex (Archbishop) on Jan 22, 2022 at 11:58 UTC
    But I’m disappointed to find that POSIX::pow has the same limitations as **. So the more general question remains open.

    I like the module Math::Prime::Util::GMP a lot because of its many functions that also go beyond prime numbers.

    $ perl -MMath::Prime::Util::GMP=rootreal -le 'print rootreal(-8, 3)' -2.000000000000000000000000000000000000000

    Use 0+rootreal(...) to get just -2 in this case. powreal(-8, 1/3) suffers a bit from the floating-point inaccuracies in 1/3. Note both functions support an optional third argument to specify the number of significant digits, e.g. powreal(-8, 1/3, 5) is "-2.0000".

    Update: However, note the issues raised by vr and syphilis here!

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11140704]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (3)
As of 2024-04-19 04:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found