On Wed, Dec 22, 2010 at 9:15 PM, Santanu Sarkar <[email protected]> wrote: > How one can find 10-th root of a real number in Sage?
You can use the nth_root() method on real numbers: sage: f = 3.1415; f 3.14150000000000 sage: f.nth_root(10) 1.12127904623998 --Mike -- To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/sage-support URL: http://www.sagemath.org
