Editing Talk:2293: RIP John Conway

Jump to: navigation, search
Ambox notice.png Please sign your posts with ~~~~

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.
Latest revision Your text
Line 1: Line 1:
 
<!--Please sign your posts with ~~~~ and don't delete this text. New comments should be added at the bottom.-->
 
<!--Please sign your posts with ~~~~ and don't delete this text. New comments should be added at the bottom.-->
 
__NOTOC__
 
  
 
This is really very impressive.  The design of the stick figure to allow it to release a glider that ascends upwards (the "soul" rising to "heaven" or whatever) with the body decaying - that's a hard thing to get right using just the Game of Life rules. [[Special:Contributions/172.69.68.175|172.69.68.175]] 17:49, 13 April 2020 (UTC)
 
This is really very impressive.  The design of the stick figure to allow it to release a glider that ascends upwards (the "soul" rising to "heaven" or whatever) with the body decaying - that's a hard thing to get right using just the Game of Life rules. [[Special:Contributions/172.69.68.175|172.69.68.175]] 17:49, 13 April 2020 (UTC)
Line 11: Line 9:
 
:::::He probably started with the floater, and adjusted the rest so it wouldn't interfere. Most figures decay in the game of life (I learned when playing with it, decades ago) --[[Special:Contributions/162.158.111.79|162.158.111.79]] 10:45, 14 April 2020 (UTC)
 
:::::He probably started with the floater, and adjusted the rest so it wouldn't interfere. Most figures decay in the game of life (I learned when playing with it, decades ago) --[[Special:Contributions/162.158.111.79|162.158.111.79]] 10:45, 14 April 2020 (UTC)
 
:::::The Game of Life has been researched a lot.  One sub-problem is finding an arrangement of cells that cannot be produced by a prior arrangement of cells.  They are called Garden of Eden patterns, and the known ones are not small.  Glider generators are rather common, so it is most likely that the initial pattern was created by working backward from an existing glider generator.[[Special:Contributions/173.245.54.125|173.245.54.125]] 17:33, 14 April 2020 (UTC)
 
:::::The Game of Life has been researched a lot.  One sub-problem is finding an arrangement of cells that cannot be produced by a prior arrangement of cells.  They are called Garden of Eden patterns, and the known ones are not small.  Glider generators are rather common, so it is most likely that the initial pattern was created by working backward from an existing glider generator.[[Special:Contributions/173.245.54.125|173.245.54.125]] 17:33, 14 April 2020 (UTC)
:::I like the comment above by Hdjensofjfnen, where 2^60 is written using [https://en.wikipedia.org/wiki/Conway_chained_arrow_notation Conway’s chained arrow notation]. That’s a slick way to honor Conway.  Anyway, when the number of possible candidates is around 2^64 or less, you can find a desired solution by brute-force search if you have to, provided that the problem is relatively simple and well-defined (i.e. if you can write an efficient program). In this case, the number of the candidates of the initial state is very small, if it should be a tiny, pixel image of a stick figure. So, intuitively, an exhaustive search should be easy—at least it should be doable. (PS: I mean, the idea of this comic is cool and awesome; it’s not trivial at all for you to come up with this. But if you do come up with this problem, then the solution may not be so difficult.) [[User:Yosei|Yosei]] ([[User talk:Yosei|talk]]) 17:35, 20 April 2020 (UTC)
 
  
 
was there a placeholder comic posted before the gif went live?
 
was there a placeholder comic posted before the gif went live?
Line 29: Line 26:
 
::[[User:ProphetZarquon|ProphetZarquon]] ([[User talk:ProphetZarquon|talk]]) 22:17, 13 April 2020 (UTC)
 
::[[User:ProphetZarquon|ProphetZarquon]] ([[User talk:ProphetZarquon|talk]]) 22:17, 13 April 2020 (UTC)
 
:Golly uses a grid of arbitrary size by default. It can very easily be verified to at least ±2<sup>10000</sup>. (Note that it also includes finite rectangular and toroidal grids.) [[User:LegionMammal978|LegionMammal978]] ([[User talk:LegionMammal978|talk]]) 01:39, 14 April 2020 (UTC)
 
:Golly uses a grid of arbitrary size by default. It can very easily be verified to at least ±2<sup>10000</sup>. (Note that it also includes finite rectangular and toroidal grids.) [[User:LegionMammal978|LegionMammal978]] ([[User talk:LegionMammal978|talk]]) 01:39, 14 April 2020 (UTC)
:Winning Ways, p. 817 (3rd printing):  'Life is a "game" played on an infinite squared board.'--[[Special:Contributions/172.68.54.208|172.68.54.208]] 13:45, 17 April 2020 (UTC)
 
 
No computer [Citation Needed] can run an ''actual'' infinite grid, but with some intelligent bounding you can mitigate early signs of problems by maintaining "bubbles" of cells with offsets. You get into problems once you start machine-gunning out gliders (offsets will eventually overflow or awkwardly lose precision, depending on the var-types used; and maintaining a longer and longer bubble, or more and more bubbles just above glider-sized, is probably your other challenge) but it's probably good enough for most purposes. If you somehow have finite patterns that move out in huge (wasteless) cycles from the 'origin' and hold that path until enacting hugely-delayed doglegs (mathematically, it must be a point no further away than can be reasonably enumerated by the bits of information contained within each formation, and significantly less as it'd be a far less efficient count-down cycler than any folded LFSR, but it's ''imaginable'') to meet again at some arbitrary (though deterministic and replicable) distance out in the far far reaches of your abstracted bubble-land then it's possible you could ''pretend'' you have infinite space. [[Special:Contributions/162.158.91.101|162.158.91.101]] 22:26, 13 April 2020 (UTC)
 
No computer [Citation Needed] can run an ''actual'' infinite grid, but with some intelligent bounding you can mitigate early signs of problems by maintaining "bubbles" of cells with offsets. You get into problems once you start machine-gunning out gliders (offsets will eventually overflow or awkwardly lose precision, depending on the var-types used; and maintaining a longer and longer bubble, or more and more bubbles just above glider-sized, is probably your other challenge) but it's probably good enough for most purposes. If you somehow have finite patterns that move out in huge (wasteless) cycles from the 'origin' and hold that path until enacting hugely-delayed doglegs (mathematically, it must be a point no further away than can be reasonably enumerated by the bits of information contained within each formation, and significantly less as it'd be a far less efficient count-down cycler than any folded LFSR, but it's ''imaginable'') to meet again at some arbitrary (though deterministic and replicable) distance out in the far far reaches of your abstracted bubble-land then it's possible you could ''pretend'' you have infinite space. [[Special:Contributions/162.158.91.101|162.158.91.101]] 22:26, 13 April 2020 (UTC)
 +
 
[[User:ProphetZarquon|ProphetZarquon]], do you have a source for your claim that the main point of Conway's creation of Life was to study the edge effects? [https://conwaylife.com/wiki/Conway%27s_Game_of_Life The page for Life on its own wiki] describes the Life grid as "infinite" and only mentions edge effects as inaccuracies to be avoided, and [https://www.youtube.com/watch?v=R9Plq-D1gEk this Conway interview about Life's creation] doesn't mention edges at all.
 
[[User:ProphetZarquon|ProphetZarquon]], do you have a source for your claim that the main point of Conway's creation of Life was to study the edge effects? [https://conwaylife.com/wiki/Conway%27s_Game_of_Life The page for Life on its own wiki] describes the Life grid as "infinite" and only mentions edge effects as inaccuracies to be avoided, and [https://www.youtube.com/watch?v=R9Plq-D1gEk this Conway interview about Life's creation] doesn't mention edges at all.
 
[[Special:Contributions/108.162.241.24|108.162.241.24]] 23:34, 13 April 2020‎ (UTC)  
 
[[Special:Contributions/108.162.241.24|108.162.241.24]] 23:34, 13 April 2020‎ (UTC)  
Line 62: Line 59:
  
 
The game's popularization "to the general public" in Windows 3.1 really depends on your definition of popular - how many members of the general public had PCs then? I mention this to point out that it was really Martin Gardner's article in SciAm in October 1970 that showed the game to a pretty wide public, although admittedly few people were in a position to program it at the time. As I maintained the University of Cambridge's version on the PDP-7 (then their only computer with a graphics display) in 1971-72 I'm still astonished at how early this publication was. Gardner then did the same for the Mandelbrot Set (which originated in the Other Cambridge...) [[Special:Contributions/162.158.78.74|162.158.78.74]] 04:23, 16 April 2020 (UTC)
 
The game's popularization "to the general public" in Windows 3.1 really depends on your definition of popular - how many members of the general public had PCs then? I mention this to point out that it was really Martin Gardner's article in SciAm in October 1970 that showed the game to a pretty wide public, although admittedly few people were in a position to program it at the time. As I maintained the University of Cambridge's version on the PDP-7 (then their only computer with a graphics display) in 1971-72 I'm still astonished at how early this publication was. Gardner then did the same for the Mandelbrot Set (which originated in the Other Cambridge...) [[Special:Contributions/162.158.78.74|162.158.78.74]] 04:23, 16 April 2020 (UTC)
:Windows 3.1 was NOT an operating system, it was a Graphical User Interface to the underlying operating system - DOS. Windows did not become an OS until Windows 95 [[Special:Contributions/172.70.86.132|172.70.86.132]] 12:59, 28 July 2023 (UTC) Andy Owen
 
 
== Leaving the grid ==
 
<blockquote>"However, any given Game of Life is on a finite grid, so once the glider leaves the grid, it has ceased to exist."</blockquote>
 
 
Maybe a philosophical nitpick, but I'd like to dispute this. I submit that it is not possible for anything to "leave the grid". A glider can certainly hit the boundary of a bounded grid, but at that point boundary conditions disrupt the pattern and it ''ceases to be a glider''; thus, gliders cannot leave the grid.
 
 
Additionally, the grid can be finite and yet still have no boundary; it is quite common for Life grids to wrap one side of the screen to the other. On such a grid, the glider would in fact persist indefinitely. [[User:Hawthorn|Hawthorn]] ([[User talk:Hawthorn|talk]]) 09:18, 16 April 2020 (UTC)
 
:Also we don't know if the grid maybe is larger than the screen shown in the comic. --[[User:Lupo|Lupo]] ([[User talk:Lupo|talk]]) 11:36, 16 April 2020 (UTC)
 
 
== Triple whammy ==
 
FYI: Richard Guy, who found the glider first, and is coauthor of Winning Ways with Conway, already died this March. In the biblical age of 103, so possibly nobody even bothered to check for the cause. (The third author, Elwyn Berlekamp, died a year ago.) [[Special:Contributions/141.101.77.32|141.101.77.32]] 18:02, 16 April 2020 (UTC)
 
 
== Conway was not a fan of his fame for Life ==
 
 
" He’d like to remembered for any of his accomplishments except the Game of Life. He once said he checked the index of every book and if it listed the Game of Life he would refuse to read it." -- https://twitter.com/standupmaths/status/1249105201992171522 [[Special:Contributions/172.69.22.146|172.69.22.146]] 00:04, 17 April 2020 (UTC)
 
 
== Conway died on a Doomsday ==
 
 
The thing I remember Conway for (in addition to Game of Life) is discovering the Doomsday rule/algorithm for determining days of the week (see https://en.wikipedia.org/wiki/Doomsday_rule).  Of course, I'm nowhere near anywhere as fast as he is (I'm happy if I can do it without making a mistake in 10 seconds, more if I'm calculating under the influence).  I find it fitting that Conway died on a Doomsday (Saturday for 2020).[[User:Tovodeverett|Tovodeverett]] ([[User talk:Tovodeverett|talk]]) 05:41, 17 April 2020 (UTC)
 
:Trivia:  I was introduced to Conway's Game of Life through the book "The Magic of Lewis Carroll", by John Fischer (1973).  One of the Life patterns was the "Cheshire Cat", which was a cat-like face that became a smile, then a paw-print (2x2 stable block).  Conway developed the Doomsday algorithm from Lewis Carroll's initial formula, primarily by noting the even month pattern (4/4, 6/6, 8/8, 10/10, 12/12) and the 9 to 5 at 7-11 mnemonic.[[Special:Contributions/172.69.63.191|172.69.63.191]] 13:17, 17 April 2020 (UTC)
 
:Trivia:  More trivia - April 11, 2020 was 42 days after Feb 29, 2020.[[User:Tovodeverett|Tovodeverett]] ([[User talk:Tovodeverett|talk]]) 04:39, 18 April 2020 (UTC)
 
 
== Symbolism of the evolving configuration ==
 
 
Should we perhaps add an explanation as to what the evolving configuration symbolizes, for the sake of readers with different cultural backgrounds? E.g., that it evokes the religious imagery related to Ecclesiastes 12:7 (KJV: "Then shall the dust return to the earth as it was: and the spirit shall return unto God who gave it."), that the glider can be viewed as representing the soul departing to heaven, etc. -- [[Special:Contributions/172.68.215.224|172.68.215.224]] 20:19, 29 September 2020 (UTC)
 
 
== Haunted page ==
 
This page just got haunted. Could we protect or semi-protect it? --[[User:ColorfulGalaxy|ColorfulGalaxy]] ([[User talk:ColorfulGalaxy|talk]]) 20:27, 12 January 2023 (UTC)
 
 
f :'(
 
 
conway will be missed
 
 
i also made a tribute to him: a text saying "rip john conway 1937-2020" that fades away in a cloud of stuff. of course it's in life [[User:An user who has no account yet|An user who has no account yet]] ([[User talk:An user who has no account yet|talk]]) 21:42, 6 September 2023 (UTC)
 

Please note that all contributions to explain xkcd may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see explain xkcd:Copyrights for details). Do not submit copyrighted work without permission!

To protect the wiki against automated edit spam, we kindly ask you to solve the following CAPTCHA:

Cancel | Editing help (opens in new window)