The Beauty of Math
Walk Method
A Walk is defined as a sequence of steps of connected graph vertices and graph edges. Functional Walks are generated by using a main function f(n) and an additional step function g(n): (1) We are at some point w(n) = (x(n),y(n)). For n = 0 we define w(0) = (0,0). (2) We divide the 360 degrees or 2π in N equal directions. (3) We calculate the direction for the next step by



(4) We move g(n) units in this direction and repeat the process.
This process can be summarized through the recursion



The walk is generated by adding steps, which may be represented as vectors.
The recursion yields for the position (x,y) at a given moment n



The hole walk is therefore given by W(f,g,N). Fascinating patterns emerge very quickly, e.g. by applying f(n) = n. But also a variety of challenges and research opportunities arises when explaining patterns, predicting walks, describing walks as curves or investigating further properties.
f(n) = 2*log(n)+4*n (mod 6), g(n) = 4*n+76
f(n) = 2*log(n)+5*n**3 (mod 10), g(n) = n**2+20
f(n) = 2*log(n)+1*n**3 (mod 6), g(n) = 3*n+57
f(n) = 9*n+23*n (mod 7), g(n) = n**2+28
f(n) = TAU(n)+9 (mod 5), g(n) = 26*cos(pi/2*n)+15
f(n) = 4*log(n)+100*cos(0.15*pi*n)+101 (mod 6), g(n) = 40
f(n) = 93*cos(1*pi*n)+187 (mod 3), g(n) = n**2+26
f(n) = 4*n**4+2*log(n) (mod 8), g(n) = n**2+29
f(n) = SIGMA(n)+1+19*n (mod 3), g(n) = 20
f(n) = 4*2**n+PRIME(n)+2 (mod 8), g(n) = n**2+29
f(n) = 4*n**2+5*log(n) (mod 9), g(n) = 50*cos(pi/2*n)+20
f(n) = TAU(n)+3+2*FLOOR(n/26) (mod 3), g(n) = 4*n+27
f(n) = 4*log(n)+25*n (mod 3), g(n) = 5*n+13
f(n) = PRIME(n)+10+5*log(n) (mod 7), g(n) = 30
f(n) = FIBO(n)+1+4*log(n) (mod 4), g(n) = 2*n+13
f(n) = 3*log(n)+17*n (mod 3), g(n) = n**2+16
f(n) = 2*log(n)+89*cos(0.15*pi*n)+191 (mod 5), g(n) = 30
f(n) = 21*n+4*log(n) (mod 4), g(n) = 28*cos(pi/2*n)+24
f(n) = FIBO(n)+8+FIBO(n)+6 (mod 5), g(n) = 1*n+38
f(n) = FIBO(n) (mod 7), g(n) = 50
f(n) = 16*n+TAU(n)+3 (mod 5), g(n) = 27*cos(pi/2*n)+14
f(n) = PRIME(n)+2+10*n (mod 6), g(n) = 20
f(n) = 90*cos(0.3*pi*n)+199+3*FLOOR(n/10) (mod 6), g(n) = 20
f(n) = FIBO(n)+3+3*2**n (mod 5), g(n) = 1*n+56
f(n) = 3*FLOOR(n/28)+1*FLOOR(n/13) (mod 4), g(n) = 10
f(n) = 86*cos(0.15*pi*n)+71+1*FLOOR(n/29) (mod 5), g(n) = 40