Takes a single input, "n", where "n" is the nth Fibonacci number.
Fibonacci = VAR n = MAX(<"n">) VAR GoldenRatio = (1+SQRT(5))/2 VAR Part1 = POWER(GoldenRatio,n) VAR Part2 = POWER(-1*DIVIDE(1,GoldenRatio),n) VAR Numerator = Part1-Part2 VAR Denominator = SQRT(5) RETURN DIVIDE(Numerator,Denominator)
eyJrIjoiNWU3NDFjMGYtYmNmNi00M2YwLWFjOWUtMDNlOWQ1MTk1YzllIiwidCI6IjRhMDQyNzQzLTM3M2EtNDNkMi04MjdiLTAwM2Y0YzdiYTFlNSIsImMiOjN9
Could you please give to me an explanation about when fibonacci could be usefull in Soccer? I need to aply fibonacci is soccer sport but i dont find an use case. Thanks in advance.