tim_hutton
Registered: Mar 2010
Posts: 4 |
The 2D Turing machine on page 186 is actually periodic
The 4-state 2-color 2D Turing machine on page 186 of NKS is described as "one example where the behavior seems in many respects completely random."
In fact the pattern is periodic. To verify this, load Golly and run this script, supplying the specification string for this Turing machine:
code: {{{1,'N',1},{0,'S',1}},{{1,'S',3},{0,'N',2}},{{1,'W',0},{1,'N',1}},{{1,'S',2},{0,'E',1}}}
The attached image shows the state after around 5 million timesteps. Two marks 'a' and 'b' indicate matching points. The period is 2,074,575.
It's not terribly significant of course but worth noting.
Perhaps more significant is that, contrary to the implication on p. 184, there are 3-state 2-color 2D Turing machines that exhibit complex behaviour. E.g.:
code: {{{0,'S',1},{1,'W',1}},{{1,'E',2},{1,'S',2}},{{1,'W',0},{0,'N',0}}}
Seemingly random for 15.5 million timesteps, before making a repetitive highway.
code: {{{0,'N',2},{1,'S',1}},{{0,'E',0},{0,'S',0}},{{1,'W',1},{1,'N',2}}}
Grows phenomenally slowly, presumably through some form of counting but it isn't obvious how and the pattern appears random.
Regards,
Tim
tim_hutton has attached this image:
Report this post to a moderator | IP: Logged
|