<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>emergence &#8211; webmindset</title>
	<atom:link href="https://webmindset.net/category/emergence/feed/" rel="self" type="application/rss+xml" />
	<link>https://webmindset.net</link>
	<description>Content marketing and Content strategy</description>
	<lastBuildDate>Mon, 15 Aug 2016 19:00:28 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>John Conway and The Game of Life</title>
		<link>https://webmindset.net/john-conway-and-the-game-of-life-a-simple-presentation-of-complexity/</link>
		
		<dc:creator><![CDATA[Mohammadreza Shabanali]]></dc:creator>
		<pubDate>Sun, 27 Sep 2015 06:10:54 +0000</pubDate>
				<category><![CDATA[complexity]]></category>
		<category><![CDATA[emergence]]></category>
		<category><![CDATA[game of life]]></category>
		<category><![CDATA[John Conway]]></category>
		<guid isPermaLink="false">http://www.webmindset.net/?p=660</guid>

					<description><![CDATA[<p>In order to understand the concept behind the John Conway&#8217;s game of life, the best way would be starting from Stephen Wolfram and even John Von Neumann and cellular automaton. However, [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://webmindset.net/john-conway-and-the-game-of-life-a-simple-presentation-of-complexity/">John Conway and The Game of Life</a> appeared first on <a rel="nofollow" href="https://webmindset.net">webmindset</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p style="text-align: justify;">In order to understand the concept behind the John Conway&#8217;s game of life, the best way would be starting from <a href="https://en.wikipedia.org/wiki/Stephen_Wolfram">Stephen Wolfram</a> and even <a href="https://en.wikipedia.org/wiki/John_von_Neumann">John Von Neumann</a> and <a href="https://en.wikipedia.org/wiki/Cellular_automaton">cellular automaton</a>. However, I believe it would be much easier to grasp the concept of  cellular automaton if we make some experiments with John Conway&#8217;s game of life as one of the simple yet amazing implementations of the cellular automaton concept.</p>
<p style="text-align: justify;">John Horton Conway, a British mathematician, developed a very simple algorithm in the late 70s which got popular among computer programmers and mathematicians. The algorithm was called <em><strong>Game of Life.</strong></em></p>
<p style="text-align: justify;">Although it&#8217;s not so clear that why the word <em>game</em> is used in the title, but using the word <em>life</em> in the name of the game shows what he meant from developing this amazing algorithm.</p>
<p style="text-align: justify;">Here&#8217;s a very simple description of the algorithm:</p>
<p style="text-align: justify;">Let&#8217;s suppose that you have an infinite grid which each cell can be in two different possible states (you can call them 0/1 or on/off or whatever you like).</p>
<p style="text-align: justify;">The grid can also be finite but closed. It means you can consider the leftmost cell as the neighbour of the rightmost cell in the same row and make the same assumption for the cells in the highest and lowest line of the grid.</p>
<p style="text-align: justify;">You can fill the grid with some initial configuration. I have done it already and you can see my grid below:</p>
<p style="text-align: justify;"><a href="http://www.shabanali.com/en/wp-content/uploads/2015/09/conway-game-of-life-sample.jpg"><img fetchpriority="high" decoding="async" class="aligncenter size-full wp-image-668" src="http://www.shabanali.com/en/wp-content/uploads/2015/09/conway-game-of-life-sample.jpg" alt="Conway Game of life - sample rules" width="600" height="342" srcset="https://webmindset.net/wp-content/uploads/2015/09/conway-game-of-life-sample.jpg 600w, https://webmindset.net/wp-content/uploads/2015/09/conway-game-of-life-sample-300x171.jpg 300w, https://webmindset.net/wp-content/uploads/2015/09/conway-game-of-life-sample-250x143.jpg 250w, https://webmindset.net/wp-content/uploads/2015/09/conway-game-of-life-sample-150x86.jpg 150w" sizes="(max-width: 600px) 100vw, 600px" /></a></p>
<p style="text-align: justify;">John Conway suggests four different states for each cell:</p>
<h4 style="text-align: justify;"><strong>State I &#8211; Loneliness</strong></h4>
<p>In this state, an active cell has zero or one active neighbour. Such an active (or live) cell will die in the next stage.</p>
<h4><strong>State II &#8211; Steady state</strong></h4>
<p>In this state, an active cell has two or three active neighbours. Nothing happens and the cell remains active (live) for the next stage.</p>
<h4><strong>State III &#8211; Birth</strong></h4>
<p>In this state, a dead cell, has exactly three active neighbours. Such a cell will become active (live) in the next stage.</p>
<h4><strong>State IV- Death</strong></h4>
<p>This state can be considered as a kind of overpopulation. If a cell has four or more active neighbours, it will die in the next stage.</p>
<p>I have shown one sample of each stage in the above picture.</p>
<p>If you run the above algorithm on a simple initial setting, you will be amazed with the complex behaviors which appear there in the grid:</p>
<p style="text-align: justify;"><a href="http://www.shabanali.com/en/wp-content/uploads/2015/09/gosper.gif"><img decoding="async" class="aligncenter wp-image-667 size-full" src="http://www.shabanali.com/en/wp-content/uploads/2015/09/gosper.gif" alt="An animated gif showing the John Conway's game of life" width="481" height="313" /></a></p>
<p style="text-align: justify;">Many people have made different implementations of the game (you can check <a href="http://pmav.eu/stuff/javascript-game-of-life-v3.1.1/">this one</a>). Also, <a href="http://www.bitstorm.org/gameoflife/lexicon/">here</a> you can find a nice lexicon about many different species developed in the game of life.</p>
<p style="text-align: justify;">Besides all other applications of the game of life, there&#8217;s a very clear message in this game: in order to see a complex behavior, rules shall not be necessarily complex too. Even very simple rules can lead to very complex structures and behaviors if there be enough time for evolution and growth.</p>
<div class="wpcm-subscribe"><a href="javascript:void(0);"  class="wpcm-wrapper-link" data-get-id="660">Read Mode</a></div><p>The post <a rel="nofollow" href="https://webmindset.net/john-conway-and-the-game-of-life-a-simple-presentation-of-complexity/">John Conway and The Game of Life</a> appeared first on <a rel="nofollow" href="https://webmindset.net">webmindset</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Thomas Hobbes, Leviathan and the emergence concept</title>
		<link>https://webmindset.net/thomas-hobbes-leviathan-and-the-emergence-concept/</link>
		
		<dc:creator><![CDATA[Mohammadreza Shabanali]]></dc:creator>
		<pubDate>Thu, 20 Aug 2015 05:47:21 +0000</pubDate>
				<category><![CDATA[Book Review]]></category>
		<category><![CDATA[complexity]]></category>
		<category><![CDATA[emergence]]></category>
		<category><![CDATA[Leviathan]]></category>
		<category><![CDATA[Thomas Hobbes]]></category>
		<guid isPermaLink="false">http://www.webmindset.net/?p=637</guid>

					<description><![CDATA[<p>Emergence, referred to the new properties of an entity different from the properties of its components, is not a new concept. Even Aristotle in his classic book Metaphysics has some [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://webmindset.net/thomas-hobbes-leviathan-and-the-emergence-concept/">Thomas Hobbes, Leviathan and the emergence concept</a> appeared first on <a rel="nofollow" href="https://webmindset.net">webmindset</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Emergence, referred to the new properties of an entity different from the properties of its components, is not a new concept.</p>
<p>Even Aristotle in his classic book Metaphysics has some clear notions of the emergence concept:</p>
<blockquote>
<p style="text-align: justify;">As that which is compounded out of something so that the whole is one &#8211; not like a heap but like a syllable &#8211; the syllable is not its elements, ba is not the same as b and a, nor is flesh fire and earth&#8230;</p>
<p style="text-align: justify;">The syllable, no longer exist, but the elements of the syllable exist and so do fire and earth.</p>
<p style="text-align: justify;">(you can download the book from <a href="http://classics.mit.edu/Aristotle/metaphysics.mb.txt">here</a>)</p>
</blockquote>
<p style="text-align: justify;">However for anyone interested in both classic books and the concept of emergence, nothing would be more interesting and engaging than <a href="https://en.wikipedia.org/wiki/Leviathan_(book)">Leviathan</a>. I&#8217;ve bought the book couple of years ago and left it just after reading the first pages. Curiosity as a driving force was not enough to push me for reading more than a few pages.</p>
<p style="text-align: justify;">A couple of days ago, I saw the book again and after reading a few passages, couldn&#8217;t put down the book before finishing the last page.</p>
<p style="text-align: justify;">The reason was not my interest in political philosophy, as it&#8217;s still my least preferred topic. The clear image of the emergence concept in Hobbes&#8217; mind made me read the book.</p>
<p style="text-align: justify;">It&#8217;s amazing that an author had such a vivid image of the concept and it&#8217;s clearly stated in his book published in 1561. Hobbes approves a mechanistic view of the world but considers the whole system so complicated that the total behavior can&#8217;t be clearly described by the behavior of the components.</p>
<p style="text-align: justify;">Sure I&#8217;m not going to write a review or even a summary of a book categorized under title of the political philosophy, but I&#8217;ve decided to quote a few sentences of the book which I have found inspiring (You can read the whole book <a href="https://www.gutenberg.org/files/3207/3207-h/3207-h.htm">here</a>):</p>
<blockquote>
<p style="text-align: justify;">Nature&#8230; is by the art of man, as in many other things, so in this also imitated, that it can make an Artificial Animal.</p>
<p style="text-align: justify;">.</p>
<p style="text-align: justify;">For seeing life is but a motion of Limbs, the begining whereof is in some principall part within; why may we not say, that all Automata (Engines that move themselves by springs and wheeles as doth a watch) have an artificiall life?</p>
<p style="text-align: justify;">.</p>
<p style="text-align: justify;">Art goes yet further, imitating that Rationall and most excellent worke of Nature, Man.</p>
<p style="text-align: justify;">.</p>
<p style="text-align: justify;">For by Art is created that great LEVIATHAN&#8230; which is but an Artificiall Man; though of greater stature and strength than the Naturall, for whose protection and defence it was intended;</p>
<p style="text-align: justify;">.</p>
<p style="text-align: justify;">and in which, the Soveraignty is an Artificiall Soul, as giving life and motion to the whole body; The Magistrates, and other Officers of Judicature and Execution, artificiall Joynts; Reward and Punishment&#8230;are the Nerves, that do the same in the Body Naturall;</p>
<p style="text-align: justify;">.</p>
<p style="text-align: justify;">The Wealth and Riches of all the particular members, are the Strength&#8230;Counsellors, by whom all things needfull for it to know, are suggested unto it, are the Memory; Equity and Lawes, an artificiall Reason and Will; Concord, Health; Sedition, Sicknesse; and Civill War, Death. Lastly, the Pacts and Covenants, by which the parts of this Body Politique were at first made, set together, and united, resemble that Fiat, or the Let Us Make Man, pronounced by God in the Creation.</p>
<p style="text-align: justify;">.</p>
<p style="text-align: justify;">Much memory, or memory of many things, is called Experience [a collection of components makes a whole new entity].</p>
<p style="text-align: justify;">.</p>
<p style="text-align: justify;">But whatsoever is the object of any mans Appetite or Desire; that is it, which he for his part calleth Good: And the object of his Hate, and Aversion, evill; And of his contempt, Vile, and Inconsiderable. For these words of Good, evill, and Contemptible, are ever used with relation to the person that useth them: There being nothing simply and absolutely so; nor any common Rule of Good and evill, to be taken from the nature of the objects themselves; but from the Person of the man</p>
</blockquote>
<p>Since four centuries ago, the time has changed and we have &#8211; or believe to have &#8211; a much deeper and wider view of the world. But still it&#8217;s joyful to read thoughts of a man who has been far ahead of his age. Believing that we are all parts of nature and so we have no way to do anything un-natural. Believing that the humans as the components of the whole society called Leviathan have not any understanding of the big beast although they have made it by themselves and the most amazing: A man who has a mechanistic view of the world, understands the concept of the soul as an emerging property of the body and applies the same concept to the sovereign, the soul he considers for the society.</p>
<p>Reading the whole book invites us to re-think and re-evaluate our knowledge and wisdom. Seems that we have not gone so much further. Just coining new terms for the old thoughts.</p>
<div class="wpcm-subscribe"><a href="javascript:void(0);"  class="wpcm-wrapper-link" data-get-id="637">Read Mode</a></div><p>The post <a rel="nofollow" href="https://webmindset.net/thomas-hobbes-leviathan-and-the-emergence-concept/">Thomas Hobbes, Leviathan and the emergence concept</a> appeared first on <a rel="nofollow" href="https://webmindset.net">webmindset</a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
