Actually, all I'm interested in is whether the 100 digit numbers have an exact integral root, or not. At the moment, because of accuracy concerns, I'm doing something like for root in powersp: nroot = round(bignum**(1.0/root)) if bignum==long(nroot)**root: ......... which is probably very inefficient, but I can't see anything better..... Tim -- http://mail.python.org/mailman/listinfo/python-list
- nth root Tim
- Re: nth root MRAB
- RE: nth root Tim Roberts
- Re: nth root Robert Kern
- Re: nth root Dan Goodman
- RE: nth root Tim Roberts
- RE: nth root Tim Roberts
- Re: nth root Paul Rubin
- RE: nth root Tim Roberts
- Re: nth root Paul Rubin
- Re: nth root casevh
- Re: nth root Mensanator
- Re: nth root casevh
- Re: nth root Mensanator
- Re: nth root casevh
- Re: nth root Mensanator
- Re: nth root Peter Pearson