Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Newton Method solution in Clear category for Super Root by bukebuer
import math
def super_root(n):
x, n = math.log(n)+1, float(n)
while abs(x**x-n)>0.001:
x -= (x**x-n)/(x**x*(1+math.log(x)))
return x
July 2, 2014
Comments: