|
|
|
|
|
by rdtsc
847 days ago
|
|
I remember buying his A New Kind of Science book before it was available for free. It was interesting to read, and it was good enough to impress a college kid like me back then. But now, looking back, I wonder what fields of science has it advanced? It's been more than 20 years already, and with a title like that, we'd expect a completely upturned physics, biology, and other disciplines based on it. |
|
Anything that is Turing Complete is going to exhibit at least some degree of what I call "Turing Chaos", which is the sort of chaos you have in trying to understand what a given Turing Complete system is going to do in light of the fact that a Turing Complete system is going to include some equivalent of "if (something) { run this program } else { run that program }", which means that there is inevitably going to be uncertainty amplification in any attempt to understand a program. By "uncertainty amplification" I mean exactly what anyone who has every tried to understand a code base has been through; you can tell that your uncertainty about what the "something" value is gets amplified into the question of which entire program is being run, and that can iterate for quite a while. It's very chaotic.
However, for all that, and despite the famous way in which changing a single bit of a program may completely change how it operates, in practice with real human programs changing a single random bit is statistically most likely to have no user-visible impact. We spend a lot of time constraining our system's chaos. We have to. We can't work with systems in which literally every bit change completely changes the program.
However, CAs tend to work that way. A single bit flip will spread out at the relevant "speed of light" and change everything.
As a result, while they may be some of the simplest Turing Complete things, they are humanly useless. They are not useful for modeling processes; you have to be too precise with the initial states, and the thing you are modeling has to be too precise in its usage of the CA rules. They are not useful for engineering, which is precisely why we don't use them.
Or, to put it in a nutshell, while A New Kind Of Science is full of pretty pictures and legitimately interesting ideas... it's also in essence, comprehensively wrong. Not a "not even wrong"; it rises to the level of "real" wrongness. But it's comprehensively, from top to bottom, wrong about practical utility or any future practical utility.
(You can sit down and try to strip this characteristic from a sufficiently well-designed CA, but getting the precise balance of just the right amount of chaos is going to be difficult, and getting it to be also somehow useful afterwards raising the bar even higher. In the meantime, I've got von Neumann machines right here for people who want to do real work and the lambda calculus for people who want to work directly in mathematical abstractions without going insane, so... why?)