It is an open problem if there is a language that can be recognized after 2|w|-1 iterations, but not after |w|-1 iterations. Afaik, it is even unknown if there is any language in NP that cannot be recognized after |w|-1 steps (obviously P!=NP would imply this). I'm surprised how far math has come, but how little we know about computational complexity.
Cellular Automata (1983) [pdf]
11–20 of 21 posts
Re: Cellular Automata (1983) [pdf]
#12Its really cool stuff and you'll no doubt love it if you're keen on that stuff. He's also got a youtube channel under his name that is really worth checking out.
https://direct.mit.edu/isal/proceedings/isal2020/32/13/98482
Re: Cellular Automata (1983) [pdf]
#13Some nice demonstrations of 2d cellular automata https://oeis.org/A139250/a139250.anim.html
Possibly of interest, some work I did with Ed Fredkin several years ago: http://busyboxes.org/?hash=PeciXwDuTA0
Re: Cellular Automata (1983) [pdf]
#14Only a few pages in. Had to try: https://gist.github.com/peheje/8076f619f6fbc1202954bc70720ef...
(width iterations) ← 127 64 ⍝ perfect size for a nice sierpinski
advance ← {2|-⌿¯1 1⊖⍤0 1⊢⍵} ⍝ on a torus
x←width⍴0 ⋄ x[⌊width÷2] ← 1
{⎕←' ⌹'[⍵]⋄advance ⍵}⍣iterations⊢x
And the random variant (not as pretty, but still has some nice triangles): {⎕←' ⌹'[⍵]⋄advance ⍵}⍣iterations ?width⍴2Re: Cellular Automata (1983) [pdf]
#15"I wonder which will become self-aware first -- Wolfram Alpha, or Stephen Wolfram." https://news.ycombinator.com/item?id=9798333
https://hn.algolia.com/?dateRange=all&page=0&prefix=true&que...
We detached this comment from https://news.ycombinator.com/item?id=26895428.
Re: Cellular Automata (1983) [pdf]
#162D cellular automata can also be used to recognize formal languages: Every character of a word forms an (initial) state. Finitely many additional non-character states are allowed. A word w is accepted iff the first cell indicates "yes" after |w|-1 iterations. It is an open problem if there is a language that can be recognized after 2|w|-1 iterations, but not after |w|-1 iterations. Afaik, it is even unknown if there…
Re: Cellular Automata (1983) [pdf]
#17Funny enough I started researching biology and computation 1 month ago and so far it has been a wild ride into topics such as biocomputation, emergent computation, evolutionary biology, evolutionary computation and artificial life.
As a warning, that stuff is a little controversial, to say the least.
Re: Cellular Automata (1983) [pdf]
#18Dave Ackley is using cellular automata for new computational architectures. Its really cool stuff and you'll no doubt love it if you're keen on that stuff. He's also got a youtube channel under his name that is really worth checking out. https://direct.mit.edu/isal/proceedings/isal2020/32/13/98482
Feel like a bit of an amateur with my previous landscape architecture art driven by a cellular automaton: https://hyperobjects.design/artwork/rule-30-city
Re: Cellular Automata (1983) [pdf]
#19Dave Ackley is using cellular automata for new computational architectures. Its really cool stuff and you'll no doubt love it if you're keen on that stuff. He's also got a youtube channel under his name that is really worth checking out. https://direct.mit.edu/isal/proceedings/isal2020/32/13/98482
Re: Cellular Automata (1983) [pdf]
#20Funny enough I started researching biology and computation 1 month ago and so far it has been a wild ride into topics such as biocomputation, emergent computation, evolutionary biology, evolutionary computation and artificial life.
Look up "New Kind Of Science" and the Wolfram Physics project and you are in for a ride. As a warning, that stuff is a little controversial, to say the least.
https://www.amazon.com/Cellular-Automata-F-Codd/dp/148321174...
by Edgar F. Codd the inventor of relational databases.