So, I have to run a recursive function times but it's going to take too long to actually print out all the values. Thus, my professor recommended using Excel but I don't know Excel at all. I need help converting the code into Excel.
It's probably easy for someone who knows Excel.
def a(n):
k=3.8
if n==0:
return .5
else:
return k*a(n-1)*(1-a(n-1))
for i in range(100):
print(a(i))
All i know is that you use the lambda() function in excel