Это видео недоступно.
Сожалеем об этом.

Cellular Automata - Simulate life from chaos and code

Поделиться
HTML-код
  • Опубликовано: 27 янв 2024
  • Today, we're diving into the world of cellular automata. A digital playground of sorts where simple rules lead to astonishing complexity. where order can arise from chaos and collapse back into chaos just as quickly.
    First we have a look at One Dimensional Cellular Automata which were originally conceived by John Von Neumann in the 1950s.
    These cellular automata operate on a grid of cells, using each successive row of cells to create the next generation. A large amount of research into this was done by British-American scientist Stephen Wolfram - whose organisation Wolfram Research developed Wolfram Alpha - the computational knowledge engine and website. Wolfram (the person) devised a classification system for 1D CAs. It turns out there's quite a lot of them.
    Then we move onto two dimensional cellular automata, beginning with the familiar and popular Conway's Life. I look at some basic patterns such as the glider and then some more complex patterns including ones called methuselahs. Conway's Life is sufficiently complex that it is Turing Complete and able to simulate logic gates.
    Then I look at wireworld which is a kind of two dimensional cellular automata that simulates electricity flowing through wires. It is Turing Complete and can be used to create logic gates.
    The video then ends with me explaining how I wrote the code in the video myself as a learning exercise using the Python programming language and the PyGame graphics library.
    You can download my code from the github link below
    Links
    ====
    My Github - github.com/nco...
    Website - ncot.uk
    Credits
    ======
    Video by Taryn Elliott: www.pexels.com...
    Video by faycol bogonko: www.pexels.com...
    Video by MART PRODUCTION: www.pexels.com...
    Video by Ronald Hayward: www.pexels.com...
    Video by Pixabay: www.pexels.com...
    Video by Nitesh Kamboj: www.pexels.com...
    cba.mit.edu/ev...
    By Richard Ling - Own work; Location: Cod Hole, Great Barrier Reef, Australia, CC BY-SA 3.0, commons.wikime...
    Channel 4 news - • Storm Isha: Parts of U...
    seekingalpha.c...
    github.com/mdg...
    en.wikipedia.o...
    Contains a clip from "Jurassic Park" TM & © Universal Pictures (1993)
    Video by Egor Kunovsky: www.pexels.com...
    Video by Zlatin Georgiev: www.pexels.com...

Комментарии • 4

  • @nessnass9047
    @nessnass9047 5 месяцев назад

    Hurry up with your next video please. As a back in the day bedroom coder I really enjoy your content.

  • @ianneill9188
    @ianneill9188 6 месяцев назад

    Really enjoyed this video. CAs have always fascinated me, as does the “we live in a simulation” theory. Looking forward to digging into your repo, and to more on this subject.

  • @hollybrereton3140
    @hollybrereton3140 6 месяцев назад +2

    Really enjoying how your format and videos are evolving, not to mention the awesome tech content. more ;)

  • @lorensims4846
    @lorensims4846 6 месяцев назад +1

    I remember John Conway' Game of Life form the early '70s. I surprised I haven't heard more about it since.
    You lost me at Python. Assembly Language or C seems more historically accurate, if only for speed and efficiency. Back in the old days, speed and efficiency were paramount, given the limited computer resources.
    Python may be easy to write, but it is neither fast nor efficient.
    It's just not right using something like that for something like this.