defining a recursive function
I need to define the function w(x,n). x is real (0<x<1), N is an integer. w(x,1)=xx; w(x,n)=xw(x,n−1)
I tried the following, the function definition didn't send an error message but the plot call did and failed:
def w(x,n):
if n==1:
return x^x
else:
return x^(w(x,n-1))
plot (w(x,n), (x, 0.01, 0.99) (n, 1, 10))