<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Rationality and social networks</title>
	<atom:link href="http://www.grok.in/blog/2007/05/05/rationality-and-social-networks/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.grok.in/blog/2007/05/05/rationality-and-social-networks/</link>
	<description>(ignorance killed the cat, curiosity was framed)</description>
	<lastBuildDate>Wed, 16 Jun 2010 18:48:41 +0000</lastBuildDate>
	
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: aditya</title>
		<link>http://www.grok.in/blog/2007/05/05/rationality-and-social-networks/comment-page-1/#comment-5</link>
		<dc:creator>aditya</dc:creator>
		<pubDate>Mon, 07 May 2007 18:47:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.grok.in/blog/2007/05/05/rationality-and-social-networks/#comment-5</guid>
		<description>Just after posting the previous comment I found a problem with my approach.
I&#039;ve explicitly given the ordering for the three elements. The comparison function actually states that Rock &lt; Paper &lt; Scissors &lt; Rock, therefore making the transitivity fail. I should look into this theory and maybe there are more (trivial) assumptions which I&#039;m missing.</description>
		<content:encoded><![CDATA[<p>Just after posting the previous comment I found a problem with my approach.<br />
I&#8217;ve explicitly given the ordering for the three elements. The comparison function actually states that Rock < Paper < Scissors < Rock, therefore making the transitivity fail. I should look into this theory and maybe there are more (trivial) assumptions which I&#8217;m missing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aditya</title>
		<link>http://www.grok.in/blog/2007/05/05/rationality-and-social-networks/comment-page-1/#comment-4</link>
		<dc:creator>aditya</dc:creator>
		<pubDate>Mon, 07 May 2007 18:34:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.grok.in/blog/2007/05/05/rationality-and-social-networks/#comment-4</guid>
		<description>Rock, Paper and Scissors

Assumptions:
The universe of comparison has only three elements; rock, paper and scissors. Each of them is defined as a vector of properties, in my case a 3-tuple (a,b,c).

Definitions:
Rock a=1, b=0, c=0
Paper a=0, b=1, c=0
Scissors a=0, b=0, c=1

Comparison function:
element comp (element i, element j)
{
  if (i.a*j.b &gt; j.a*i.b) return j;
  elseif (i.a*j.b &lt; j.a*i.b) return i; 
  else ;
  if (i.b*j.c &gt; j.b*i.c) return j;
  elseif (i.b*j.c &lt; j.c*i.c) return i;
  else ;
  if (i.c*j.a &gt; j.c*i.a) return j;
  elseif (i.c*j.a &lt; j.c*i.a) return i;
  print &quot;Not from my universe&quot;;
} 

Explanation:
The first assumption holds in this universe, the second does not. This happens because we are looking at each element as a single dimensional element, rather we are looking at each element as a multi-faceted (3 in this example) entity.</description>
		<content:encoded><![CDATA[<p>Rock, Paper and Scissors</p>
<p>Assumptions:<br />
The universe of comparison has only three elements; rock, paper and scissors. Each of them is defined as a vector of properties, in my case a 3-tuple (a,b,c).</p>
<p>Definitions:<br />
Rock a=1, b=0, c=0<br />
Paper a=0, b=1, c=0<br />
Scissors a=0, b=0, c=1</p>
<p>Comparison function:<br />
element comp (element i, element j)<br />
{<br />
  if (i.a*j.b > j.a*i.b) return j;<br />
  elseif (i.a*j.b < j.a*i.b) return i;<br />
  else ;<br />
  if (i.b*j.c > j.b*i.c) return j;<br />
  elseif (i.b*j.c < j.c*i.c) return i;<br />
  else ;<br />
  if (i.c*j.a > j.c*i.a) return j;<br />
  elseif (i.c*j.a < j.c*i.a) return i;<br />
  print &#8220;Not from my universe&#8221;;<br />
} </p>
<p>Explanation:<br />
The first assumption holds in this universe, the second does not. This happens because we are looking at each element as a single dimensional element, rather we are looking at each element as a multi-faceted (3 in this example) entity.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
