Can I skip Conway's Game of Life in ATBS?

For general discussion about Conway's Game of Life.
Post Reply
David40
Posts: 1
Joined: February 12th, 2021, 8:39 am

Can I skip Conway's Game of Life in ATBS?

Post by David40 » March 2nd, 2021, 12:14 am

I just started learning python with the famous book ATBS and after coming across Conway's Game of Life, I realized, "damn, I do not care about this project lol".. Pretty much I'm too lazy to try to understand it with my one braincell, I'd rather focus on something else. Will I miss anything important? Should I just push myself to do it? :|

EDITed by calcyman to remove spam links
Last edited by David40 on March 20th, 2021, 1:19 am, edited 1 time in total.

MathAndCode
Posts: 5142
Joined: August 31st, 2020, 5:58 pm

Re: Can I skip Conway's Game of Life in ATBS?

Post by MathAndCode » March 2nd, 2021, 12:57 am

How much something like this matters is subjective, but most of the people on this forum care about Conway's Game of Life a lot because that's what this forum is for, so they wouldn't be on it otherwise. I'm sure that the members of this forum will be willing to explain to you various features of Conway's Game of Life (I certainly am.), but for the purposes of understanding what the program is supposed to do, all you need to know is that it occurs on an infinite square array of pixels (called cells), a cell that is off turns on for the next frame if and only if exactly three of its eight neighbors are on, and a cell that is on turns off for the next generation if less than two of its eight neighbors are on or more than three of its eight neighbors are on.
I am tentatively considering myself back.

Dylan Chen
Posts: 114
Joined: March 27th, 2020, 8:07 am
Contact:

Re: Can I skip Conway's Game of Life in ATBS?

Post by Dylan Chen » March 2nd, 2021, 1:46 am

is python your first programming language ?

have you seen the OCTA meta-pixel ?

if any answer is 'no', perhaps it is not neccessary to force yourself do things you don't like. spent time on the project you really interested in, that is the good way learning programming.



if you'd like to check some Game of Life demostration video, perhaps you'll start to like it.


have a nice day
Tools should not be the limit.
Whether your obstacle is a script, an stdin, or Linux environment computing resouces.
check New rules thread for help.

Hunting
Posts: 4395
Joined: September 11th, 2017, 2:54 am

Re: Can I skip Conway's Game of Life in ATBS?

Post by Hunting » March 9th, 2021, 9:09 am

Dylan Chen wrote:
March 2nd, 2021, 1:46 am
is python your first programming language ?

have you seen the OCTA meta-pixel ?

if any answer is 'no', perhaps it is not neccessary to force yourself do things you don't like. spent time on the project you really interested in, that is the good way learning programming.



if you'd like to check some Game of Life demostration video, perhaps you'll start to like it.


have a nice day
For some reason, many were fascinated by the OTCA metapixel, which I'm not. Once you get the idea, it's fairly trivial to build a metapixel with logic gates, or a Snake game, or a digital clock, all three were unbelievably overrated.

User avatar
dvgrn
Moderator
Posts: 10669
Joined: May 17th, 2009, 11:00 pm
Location: Madison, WI
Contact:

Re: Can I skip Conway's Game of Life in ATBS?

Post by dvgrn » March 9th, 2021, 10:53 am

Hunting wrote:
March 9th, 2021, 9:09 am
For some reason, many were fascinated by the OTCA metapixel, which I'm not. Once you get the idea, it's fairly trivial to build a metapixel with logic gates, or a Snake game, or a digital clock, all three were unbelievably overrated.
Snake game? Do you mean the Quest for Tetris project?

They may have been "trivial", but that definitely doesn't mean that any of them were easy to complete. I doubt that it's a common opinion that any of these were "unbelievably overrated" -- but then, that's not a particularly nice label to apply to anyone's CA project, of any size or difficulty level.

User avatar
pcallahan
Posts: 854
Joined: April 26th, 2013, 1:04 pm

Re: Can I skip Conway's Game of Life in ATBS?

Post by pcallahan » March 10th, 2021, 12:41 am

dvgrn wrote:
March 9th, 2021, 10:53 am
They may have been "trivial", but that definitely doesn't mean that any of them were easy to complete. I doubt that it's a common opinion that any of these were "unbelievably overrated" -- but then, that's not a particularly nice label to apply to anyone's CA project, of any size or difficulty level.
People are motivated by different things in Conway's Game of Life, and I agree there's no call to be dismissive of anyone's interests. As I think you wrote on another thread, some CGOL hobbyists are engineers, not mathematicians. If something obviously can be done, then it may be "trivial" to a mathematician to do it, but not everyone sees it that way.

On a sort of related note, I found it interesting to see Coxeter's statement in Regular Polytopes that "J. Hermes wasted ten years of his life on {65537}" That is, producing an explicit compass and straight-edge construction of a regular 65537-gon. To be honest, it feels like a waste to me too, but ultimately that's a judgment. He must have felt it was worth doing explicitly.

A digital clock in Life is no less interesting than a real digital clock at this point (we have enough clocks on phones, computers, microwave ovens, and everywhere else) but it's fun sometimes. I think some of the other large constructions are more interesting when they point the way to self-replication--which they accomplish in CGOL, but I wonder what it would take to get non-living self-replication going in the real world. Even that is not mathematically very interesting, because we can see it's doable.
Last edited by pcallahan on March 10th, 2021, 11:08 am, edited 1 time in total.

User avatar
Macbi
Posts: 903
Joined: March 29th, 2009, 4:58 am

Re: Can I skip Conway's Game of Life in ATBS?

Post by Macbi » March 10th, 2021, 2:01 am

As I think you wrote on another thread, some CGOL hobbyists are engineers, not mathematicians. If something obviously can be done, then it may be "trivial" to a mathematician to do it, but not everyone sees it that way.
There are interesting CGoL problems for mathematicians too. One I've been thinking about recently is whether or not there exist finite population patterns which have a predecessor but which don't have a finite population predecessor.

User avatar
calcyman
Moderator
Posts: 2936
Joined: June 1st, 2009, 4:32 pm

Re: Can I skip Conway's Game of Life in ATBS?

Post by calcyman » March 10th, 2021, 8:34 am

Macbi wrote:
March 10th, 2021, 2:01 am
As I think you wrote on another thread, some CGOL hobbyists are engineers, not mathematicians. If something obviously can be done, then it may be "trivial" to a mathematician to do it, but not everyone sees it that way.
There are interesting CGoL problems for mathematicians too. One I've been thinking about recently is whether or not there exist finite population patterns which have a predecessor but which don't have a finite population predecessor.
These definitely exist in other rules (such as a single live cell in rule 90). I'd be very surprised if they exist in CGoL.
What do you do with ill crystallographers? Take them to the mono-clinic!

Post Reply