<?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>Daniel Steinbock &#187; Science Culture</title>
	<atom:link href="http://www.steinbock.org/blog/category/science/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.steinbock.org/blog</link>
	<description>futures grow from seeds of thought</description>
	<lastBuildDate>Mon, 05 Apr 2010 00:11:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>The road less promising</title>
		<link>http://www.steinbock.org/blog/2009/04/07/a-waste-of-computation/</link>
		<comments>http://www.steinbock.org/blog/2009/04/07/a-waste-of-computation/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 10:39:40 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[Science Culture]]></category>
		<category><![CDATA[ai]]></category>
		<category><![CDATA[artificial intelligence]]></category>
		<category><![CDATA[computer science]]></category>
		<category><![CDATA[grad student life]]></category>
		<category><![CDATA[np complete]]></category>

		<guid isPermaLink="false">http://www.steinbock.org/blog/?p=89</guid>
		<description><![CDATA[I used to be a computer scientist. I could respectably program in more than ten languages. I pondered the theoretical limits of computation and ways to overcome or exploit them. I tinkered solutions to arcane problems in artificial intelligence.

There's a kind of Holy Grail in computer science. No one has been able to write an algorithm that can solve a particularly hard set of problems (known as NP-complete) in a reasonable amount of time. A reasonable amount of time means less than a billion years.]]></description>
			<content:encoded><![CDATA[<div>
<p>I used to be a computer scientist. I could respectably program in more than ten languages. I pondered the theoretical limits of computation and ways to overcome or exploit them. I tinkered solutions to arcane problems in artificial intelligence. For a short time, I even searched for the Holy Grail.</p>
<p>You see, there&#8217;s a kind of Holy Grail in computer science. No one has been able to write an algorithm that can compute this particularly hard set of problems (known as <a href="http://en.wikipedia.org/wiki/Np_complete" rel="nofollow" >NP-complete</a>) in a reasonable amount of time. A reasonable amount of time means less than a billion years.</p>
<p>One example is the so-called <a href="http://en.wikipedia.org/wiki/Travelling_salesman_problem" rel="nofollow" >Traveling Salesman problem</a>. What is the most efficient route a traveling salesman can take to visit all the cities in his sales area, (efficient meaning the least amount of driving time)? You can figure out the optimal route for a handful of cities, but as soon as you get above ten or so, the complexity of the problem grows astronomical. Analogous problems show up for routing traffic on the internet, routing airplanes between airports, coloring world maps, or whenever you go on a run of errands and want to be efficient with your driving time.</p>
<p>The Holy Grail algorithm would make this optimization problem tractable. No one knows if it exists. No one has been able to prove that it doesn&#8217;t, though they&#8217;ve tried. What we do know is that if a solution is found to any of the NP-complete problems, we&#8217;ll be able to solve all of them. That would mean instant fame, fortune and a shiny pedestal in computer history.</p>
<p>I once worked for an eccentric and brilliant Computer Science professor (let&#8217;s call him Ben) who was determined, in his own way, to find the Holy Grail algorithm. Ben had a hilarious sense of humor, was a great teacher, and could read <a href="http://en.wikipedia.org/wiki/Yoga_sutras" rel="nofollow" >Yoga sutras</a> in the original Sanskrit. Working in the field of Artificial Intelligence, Ben had developed ingenious methods for getting computers to learn. He made money on the stock market with an automatic trading AI he&#8217;d written. He created a chess playing AI that started out with zero knowledge of the game but learned to play respectable chess after losing (and learning from) thousands and thousands of games. Most chess-playing AIs are pre-programmed with sophisticated models of chess strategy.</p>
<p>Yet despite all his practical successes in Artificial Intelligence solving heuristic problems that demanded <em>merely excellent</em> solutions as opposed to <em>optimal </em>ones, Ben had Holy Grail on the brain. He was obsessed with a particular NP-complete problem known as the 8-puzzle or <a href="http://en.wikipedia.org/wiki/N-puzzle" rel="nofollow" >N-puzzle</a>, the old sliding tile game where you have to slide the scrambled tiles back into order. Ben felt that existing algorithms weren&#8217;t making optimal use of past experience – they were ignoring valuable lessons learned in the early stages of problem solving that could more quickly lead to a solution later on. He called it a waste of computation. And he was convinced he could discover a new path to solving the 8-puzzle and thereby find the Grail.</p>
<p>Of all my time spent working in Computer Science, it was probably the series of months I spent working with Ben, searching for the Holy Grail algorithm, that led me to realize it wasn&#8217;t the field for me. This is not to say it wasn&#8217;t time well-spent. I actually loved the work. It was fascinating and fed the part of me that sought beauty in the mathematical and abstract. I just eventually came to the conclusion that I was more interested in human beings than computers. And of course, I continue to be fascinated by the combination of the two. Still, my time with Ben was illuminating, and I think it&#8217;s a story worth sharing.</p>
<p>We would meet once a week or so. In order to gain some new foothold in solving the 8-puzzle – which begins in a random state and ends up in exactly one solution state – I must have dreamt up and coded a million ways to map out its strange, mountainous landscape; to find a way to see the end from wherever you happened to be starting from. It&#8217;s sort of like being trapped inside a garden maze with someone calling to you from the exit. You follow the sound of the voice and seem to be making headway, but over and over you come to a dead end that stops just short of the exit. So you turn around and try a different route. In other words, the voice calling to you is not enough. You need to be able to look down a path <em>without walking down it</em> and somehow know if it&#8217;s promising or not. If you can figure out a way to do that, you&#8217;ve solved NP-complete and found the Holy Grail.</p>
<p>Each meeting with Ben went much the same. I would share what I&#8217;d tried that week and point out the flaw I&#8217;d discovered in our earlier reasoning. Over the course of an hour, we&#8217;d inevitably have a leap of insight into a promising new technique to try out. We were back on the brink of Eureka! As the meeting wound down, the conversation would drift&#8230; to chess, metaphysics, Sanskrit, stock market prediction, yoga, or the philosophy of <a href="http://en.wikipedia.org/wiki/Jiddu_Krishnamurti" rel="nofollow" >J. Krishnamurti</a>.</p>
<p>One afternoon in his office, we sat talking while chainsaws buzzed gratingly outside Ben&#8217;s window. Every ten minutes or so, an <em>enormous </em>redwood tree would come crashing down. They were clearcutting to make room for the brand new Engineering building. As it fell, each tree made the most horrific moaning sound, something like a blue whale dying, not a redwood. I made a remark about the beautiful and sad old trees. Ben turned and looked out the window.</p>
<p>&#8220;I know, it&#8217;s terrible. What a waste of computation.&#8221;</p>
<p>Later that week, I&#8217;d be up at night coding our latest wizardry, some little algorithmic sleight-of-hand we&#8217;d dreamed up. As always, without fail, another flaw in our reasoning would stare back from the terminal screen in the strange half-light of dawn. Another devil in the details. Another promising path that dead-ended just short of the exit.</p>
<p>The weeks slid by. During the drifting, philosophical epilogues to our meetings, I began to wonder if Ben secretly knew our Holy Grail search was futile. Was he playing a sophisticated joke on me? Was the 8-puzzle merely a kind of algorithmic Zen <em><a href="http://en.wikipedia.org/wiki/Koan" rel="nofollow" >koan</a></em> intended to reveal the limits of my own mind, in order for me to let go of it? Was our collaboration an allegory for the futility of striving after rational answers to absurd questions? Was he trying to tell me that life was purposeless?</p>
<p>After precisely one too many of those Holy Grail nights, I found myself at a crossroads. I took a good long look down the path I was about to take – without walking down it. And you know what? It didn&#8217;t look promising. A waste of computation, really.</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.steinbock.org/blog/2009/04/07/a-waste-of-computation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Edward Tufte&#8217;s Personal Utopia</title>
		<link>http://www.steinbock.org/blog/2006/12/03/edward-tufte-on-forever-knowledge-and-personal-utopia/</link>
		<comments>http://www.steinbock.org/blog/2006/12/03/edward-tufte-on-forever-knowledge-and-personal-utopia/#comments</comments>
		<pubDate>Mon, 04 Dec 2006 07:52:19 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Science Culture]]></category>
		<category><![CDATA[Visualization]]></category>
		<category><![CDATA[edward tufte]]></category>
		<category><![CDATA[information graphics]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[tufte]]></category>
		<category><![CDATA[utopia]]></category>

		<guid isPermaLink="false">http://www.steinbock.org/blog/2006/12/03/edward-tufte-on-forever-knowledge-and-personal-utopia/</guid>
		<description><![CDATA[Edward Tufte at Stanford Edward Tufte spoke at Stanford this afternoon and I had the pleasure of being in attendance. It was an unconventional talk, as far as academic lectures go, for Tufte was speaking &#8220;in the first person&#8221; about his own life: his origins in rural Nebraska, his education and formative years, his mentors [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; margin-left: 10px; margin-bottom: 5px;"><a href="http://www.flickr.com/photos/mindmob/313845896/" rel="nofollow" title="photo sharing" ><img style="border: solid 2px #000000;" src="http://static.flickr.com/118/313845896_97fcbbf724_m.jpg" alt="" /></a></p>
<p><span style="font-size: 0.9em; margin-top: 0px;"><br />
<a href="http://www.flickr.com/photos/mindmob/313845896/" rel="nofollow" >Edward Tufte at Stanford</a><br />
</span></div>
<p><a href="https://www.edwardtufte.com/tufte/" rel="nofollow" >Edward Tufte</a> spoke at Stanford this afternoon and I had the pleasure of being in attendance. It was an unconventional talk, as far as academic lectures go, for Tufte was speaking &#8220;in the first person&#8221; about his own life: his origins in rural Nebraska, his education and formative years, his mentors who influenced his thinking, and the turning points that signaled moments of profound reorientation. As Tufte noted, for a sample size of N=1, the estimated variance is infinite; so other sources should be consulted.</p>
<p>Tufte has had a remarkable career and speaks as someone who appears to have found the courage to follow his bliss, leaving a tenured professorship at Yale to self-publish his famous books on visual information, go on speaking tours, and make large-scale landscape art in his Connecticut backyard.</p>
<p>There were three big lessons I took away from his talk.</p>
<h3>Contribute to forever knowledge.</h3>
<p>The most important decision a researcher makes is choosing what problem to focus on. One should choose problems that are not only profoundly important, but ones for which good progress is possible. It&#8217;s worth nothing to work on grand problems and make no progress. Tufte&#8217;s own compass for this decision: contribute to Forever Knowledge. That is, create knowledge that will be universally useful to humankind in any time or place in human history. Tufte ditched his career as a political economy theorist because he found he was working on only temporarily important problems, things he decided were not worth his &#8220;time, energy, passion and mind.&#8221;</p>
<h3>Be self-exemplifying.</h3>
<p>In whatever one&#8217;s work, be not only a great communicator of ideas and practices, be an exemplar of those same practices and this will communicate the value of what you are saying far better than anything else. Tufte&#8217;s books are not only superb treatises on the visual display of information, they are also exemplary demonstrations of clear visual communication.</p>
<h3>Strive for personal utopia.</h3>
<p>Here again, Tufte is, as he presents it, self-exemplifying. While utopian cultures may be unattainable, you can pretty well approximate an ideal life through clarity of purpose, courage to act on that purpose, and, most importantly, doing what you love.</p>
<p>The poem Tufte opened his talk with was excerpted from <a href="http://www.ubriaco.com/fq.html" rel="nofollow" >T. S. Eliot&#8217;s Four Quartets</a>, fitting for a self-reflection.</p>
<blockquote><p>Time present and time past<br />
Are both perhaps present in time future<br />
And time future contained in time past.<br />
If all time is eternally present<br />
All time is unredeemable.<br />
What might have been is an abstraction<br />
Remaining a perpetual possibility<br />
Only in a world of speculation.<br />
What might have been and what has been<br />
Point to one end, which is always present.<br />
Footfalls echo in the memory<br />
Down the passage which we did not take<br />
Towards the door we never opened<br />
Into the rose-garden. My words echo<br />
Thus, in your mind.<br />
But to what purpose<br />
Disturbing the dust on a bowl of rose-leaves<br />
I do not know.<br />
Other echoes<br />
Inhabit the garden. Shall we follow?</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.steinbock.org/blog/2006/12/03/edward-tufte-on-forever-knowledge-and-personal-utopia/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Kama Sutra of information graphics</title>
		<link>http://www.steinbock.org/blog/2006/12/02/geomancy/</link>
		<comments>http://www.steinbock.org/blog/2006/12/02/geomancy/#comments</comments>
		<pubDate>Sun, 03 Dec 2006 07:59:56 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[Networks]]></category>
		<category><![CDATA[Science Culture]]></category>
		<category><![CDATA[Visualization]]></category>

		<guid isPermaLink="false">http://www.steinbock.org/blog/?p=22</guid>
		<description><![CDATA[This is a 1728 Geometry text. Geometry was the network science of its day, with its richly visual mathematical aesthetic. This is the sort of beautiful abstraction that would drive someone to spend years of life teasing out the endless permutations of a set of axioms. 1728 was the height of the Age of Enlightenment, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://en.wikipedia.org/wiki/Image:Table_of_Geometry%2C_Cyclopaedia%2C_Volume_1.jpg" rel="nofollow" ><img src="http://upload.wikimedia.org/wikipedia/commons/thumb/d/dc/Table_of_Geometry%2C_Cyclopaedia%2C_Volume_1.jpg/547px-Table_of_Geometry%2C_Cyclopaedia%2C_Volume_1.jpg" alt="1728 Geometry Text" /></a></p>
<p>This is a 1728 Geometry text.</p>
<p>Geometry was the network science of its day, with its richly visual mathematical aesthetic. This is the sort of beautiful abstraction that would drive someone to spend years of life teasing out the endless permutations of a set of axioms. 1728 was the height of the Age of Enlightenment, long before Godel came and tread on the dreams of the humble mathematical ascetic.</p>
<p>Today, researchers of all stripes learn an unspoken rule: beautiful visualization of data makes for &#8220;sexy&#8221; science. In other words, cool information graphics lead to tenure. It&#8217;s partly because visual communication is simply more compelling and has a wider mass appeal. That&#8217;s why networks research shows up in the New York times: because it has sexy graphics, not because it&#8217;s going to catch terrorists.</p>
<p>It&#8217;s no wonder that someone like <a href="https://www.edwardtufte.com/tufte/" rel="nofollow" >Edward Tufte</a>, an authority on the visual display of quantitative information, is a kind of cult hero. His books are the Kama Sutra of information graphics.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.steinbock.org/blog/2006/12/02/geomancy/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Daniel Steinbock in 100 words</title>
		<link>http://www.steinbock.org/blog/2006/09/30/daniel-steinbock-in-100-words/</link>
		<comments>http://www.steinbock.org/blog/2006/09/30/daniel-steinbock-in-100-words/#comments</comments>
		<pubDate>Sat, 30 Sep 2006 17:37:30 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[Science Culture]]></category>
		<category><![CDATA[Visualization]]></category>

		<guid isPermaLink="false">http://www.steinbock.org/blog/2006/09/30/daniel-steinbock-in-100-words/</guid>
		<description><![CDATA[Daniel Steinbock in 100 words The tag cloud displayed on my name tag at Stanford University&#8217;s H-STAR faculty retreat. I created tag clouds for every professor&#8217;s name tag to visualize their research interests based on research statements and resumes. It was such a treat to watch these great minds interacting and using the tag clouds [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; margin-left: 10px; margin-bottom: 10px;">
 <a href="http://www.flickr.com/photos/mindmob/256152498/" rel="nofollow"  title="photo sharing"><img src="http://static.flickr.com/88/256152498_5cfb142910_m.jpg" alt="" style="border: solid 2px #000000;" /></a><br />
 <br />
 <span style="font-size: 0.9em; margin-top: 0px;"><br />
  <a href="http://www.flickr.com/photos/mindmob/256152498/" rel="nofollow" >Daniel Steinbock in 100 words</a><br />
 </span>
</div>
<p>The tag cloud displayed on my name tag at Stanford University&#8217;s H-STAR faculty retreat.</p>
<p>I created tag clouds for every professor&#8217;s name tag to visualize their research interests based on research statements and resumes. It was such a treat to watch these great minds interacting and using the tag clouds as launching points for conversations.</p>
<p>I made the tag clouds at <a href="http://tagcrowd.com" rel="nofollow" >TagCrowd</a>. Check it out and play with creating your own clouds from your papers, resume, poetry, chat logs, or whatever suits your fancy.<br />
<br clear="all" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.steinbock.org/blog/2006/09/30/daniel-steinbock-in-100-words/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Do ethics apply to great data?</title>
		<link>http://www.steinbock.org/blog/2006/08/07/do-ethics-apply-to-great-data-2/</link>
		<comments>http://www.steinbock.org/blog/2006/08/07/do-ethics-apply-to-great-data-2/#comments</comments>
		<pubDate>Tue, 08 Aug 2006 01:35:53 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[Ethics]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[Science Culture]]></category>
		<category><![CDATA[Society]]></category>

		<guid isPermaLink="false">http://www.steinbock.org/blog/2006/08/07/do-ethics-apply-to-great-data-2/</guid>
		<description><![CDATA[AOL just unwittingly released private, personally-identifiable data for 650,000 of its subscribers when it posted a large chunk of its search logs (20 million queries, actually) to its research website as a service to the scientific community. Despite anonymizing user id&#8217;s, the search queries often include information that make it easy to associate them with [...]]]></description>
			<content:encoded><![CDATA[<p>AOL just <a href="http://www.techcrunch.com/2006/08/06/aol-proudly-releases-massive-amounts-of-user-search-data/" rel="nofollow" >unwittingly released</a> private, personally-identifiable data for 650,000 of its subscribers when it posted a large chunk of its search logs (20 million queries, actually) to its research website as a service to the scientific community.</p>
<p>Despite anonymizing user id&#8217;s, the search queries often include information that make it easy to associate them with a person. The query data include social security numbers, credit card numbers, porn queries, evidence of intent to engage in criminal activities, etc.</p>
<p>AOL has since removed the data, but it&#8217;s spreading like wildfire over the internet on mirrors and torrents. I was able retrieve a complete copy of it (2 gigabytes, uncompressed) in about an hour.</p>
<p>As a scientist who does research that could would really benefit from data like this, I can tell you: this is big. Big and dirty.</p>
<p>Ethically speaking&#8230;should we, as researchers, ignore that this data exists or deal with it pragmatically as an unfortunate accident?</p>
<p>On one hand this is extremely useful and compelling data for a host of social and computer sciences; on the other, it is an unequivocally criminal violation of ethical standards.</p>
<p>Given the Google subpoena, big brother NSA, and the ethical debates about scientific research this story is provoking in mass media, this feels like a watershed moment.</p>
<p>No one can ever create a &#8216;clean&#8217; version of this data since it could always be traced back to the original, identifiable information.</p>
<p>Here&#8217;s a possible scenario:</p>
<p>Most scientists will hesitate to research it, but some rebels will and no doubt find interesting, at-first-unpublishable, results. Sooner or later, something <em>will get published</em>, and then the floodgates will open. Because something can&#8217;t be unethical if everyone is doing it.</p>
<p><a href="http://www.prisonexp.org/" rel="nofollow" >Right</a>?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.steinbock.org/blog/2006/08/07/do-ethics-apply-to-great-data-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Decisions Decisions</title>
		<link>http://www.steinbock.org/blog/2006/01/11/decisions-decisions/</link>
		<comments>http://www.steinbock.org/blog/2006/01/11/decisions-decisions/#comments</comments>
		<pubDate>Wed, 11 Jan 2006 12:03:39 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[Research]]></category>
		<category><![CDATA[Science Culture]]></category>

		<guid isPermaLink="false">http://www.steinbock.org/blog/?p=14</guid>
		<description><![CDATA[Carlos Gershenson writes: Many people complain that nowadays there is too much choice. 20 ways of having your coffee, 50 types of ketchup, ten political parties in countries of less than 10 million [...] Too much choice overloads our cognitive abilities. Fifty years ago, George Miller published a paper showing that people tended to be [...]]]></description>
			<content:encoded><![CDATA[<p>Carlos Gershenson <a href="http://complexes.blogspot.com/2006/01/overwhelmed-by-choice.html" rel="nofollow" >writes</a>:</p>
<blockquote><p>Many people complain that nowadays there is too much choice. 20 ways of having your coffee, 50 types of ketchup, ten political parties in countries of less than 10 million [...] Too much choice overloads our cognitive abilities. Fifty years ago, George Miller <a href="http://www.well.com/user/smalin/miller.html" rel="nofollow" >published a paper</a> showing that people tended to be able to keep in their minds only seven plus-minus two things at a time. In other words, after more or less seven types of fries, we lose track of what is going on&#8230;</p></blockquote>
<div style="float: right; margin-left: 10px; margin-bottom: 10px;">
 <a href="http://flickr.com/photo_zoom.gne?id=49545547&#038;size=l" rel="nofollow"  title="Decisions Decisions"><img src="http://static.flickr.com/29/49545547_973ba1ce46_m.jpg" alt="" style="border: solid 2px #000000;" /></a><br />
 
</div>
<p>Another salient example of overwhelming choice is the simple over-abundance of possible life paths. For many young people growing up in this globalized age &#8212; where economic niches are more plentiful than ever, and where transportation could probably get you to 99% of the towns on Earth in less than a week &#8212; the question is a daunting one: where to place yourself in this wide world? Compare this plenitude of options with those of an average human a few centuries ago. Most likely, you would inherit the occupation of your parents. Most likely, you would never travel further than the next town. For us post-moderns, the <a href="http://www.edge.org/3rd_culture/kauffman03/kauffman_index.html" rel="nofollow" >adjacent possible</a> has expanded a million-fold and we are confronted with a dizzying array of decisions which, in sequence, will create our lives.</p>
<p>Is there something wrong with having a lot of possible niches? At first glance, it seems like a low-stress, non-competitive environment of abundance. <a href="http://flickr.com/photos/djames1313/sets/493663/" rel="nofollow" >Is this how the First World appears to the Third World?</a> At second glance, it taxes our cognitive resources to be forced to consider so many options all the time in our quest to maximize utility. A related question is: in a directed search where we uncover the options one-by-one, at what point should we give up and go with the best-so-far?</p>
<p>When am I better off just <a href="http://flickr.com/photos/djames1313/21201932/in/set-493663/" rel="nofollow" >picking my ketchup at random</a>? When should I stop comparison shopping and just buy? When should I stop searching for the &#8220;<a href="http://flickr.com/photos/thatianek/32709041/in/photostream/" rel="nofollow" >perfect woman</a>&#8221; and just settle down? It&#8217;s our old friend, the law of Diminishing Returns. At some point, the cost of evaluating more options will outweigh the possible slight increase in utility. </p>
<p>Take it from me, someone apt to be indecisive: better to eat than starve to death looking for the best deal. Better to be happy with a satisfactory decision than to stress out trying to make an optimal one.<br />
<br clear="all" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.steinbock.org/blog/2006/01/11/decisions-decisions/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>When do networks not matter?</title>
		<link>http://www.steinbock.org/blog/2005/11/18/when-do-networks-not-matter/</link>
		<comments>http://www.steinbock.org/blog/2005/11/18/when-do-networks-not-matter/#comments</comments>
		<pubDate>Fri, 18 Nov 2005 22:46:58 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[Networks]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[Science Culture]]></category>

		<guid isPermaLink="false">http://www.steinbock.org/blog/2005/11/18/when-do-networks-not-matter/</guid>
		<description><![CDATA[The question may have never occured to network researchers and enthusiasts. When you&#8217;ve found a paradigm that you love, it&#8217;s hard to see the boundaries of its utility. It&#8217;s the old &#8220;when you have a hammer, everything looks like a nail&#8221; story. But actually, the question which titles this post is an important networks question [...]]]></description>
			<content:encoded><![CDATA[<p>The question may have never occured to network researchers and enthusiasts. When you&#8217;ve found a paradigm that you love, it&#8217;s hard to see the boundaries of its utility. It&#8217;s the old &#8220;when you have a hammer, everything looks like a nail&#8221; story. But actually, the question which titles this post is an important networks question &#8212; not just a caution against overzealous methodologizing &#8212; because knowing when the network doesn&#8217;t matter means knowing when it does.</p>
<p>Network analysts use random networks as the standard by which to measure order in the networks they study. That&#8217;s because a random network is the graph-theoretic way of saying structure doesn&#8217;t matter. If the network structure you&#8217;re studying is significantly different from the random net, most likely it can&#8217;t be explained by chance alone; it has order, pattern, maybe even <em>complexity</em>. In other words, for the purposes of studying whatever system produced that structure, the network <em>matters</em>, i.e. it&#8217;s worth paying attention to.</p>
<p>And in the games of life and science, what matters most is knowing what is worthy of your thought and attention, and what is not.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.steinbock.org/blog/2005/11/18/when-do-networks-not-matter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Science: the quest for knowledge or tenure?</title>
		<link>http://www.steinbock.org/blog/2005/11/14/science-tenure/</link>
		<comments>http://www.steinbock.org/blog/2005/11/14/science-tenure/#comments</comments>
		<pubDate>Tue, 15 Nov 2005 01:33:47 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[Networks]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[Science Culture]]></category>

		<guid isPermaLink="false">/?p=1</guid>
		<description><![CDATA[Sometimes the social reality of science raises its ugly head: that we scientists aren't all simply altruistic seekers of knowledge, always giving credit where credit is due, but that we have self-interest and motivations of attaining prestige, career advancement and the like. 

For this reason and more...]]></description>
			<content:encoded><![CDATA[<p>Sometimes the social reality of science raises its ugly head: that we scientists aren&#8217;t all simply altruistic seekers of knowledge, always giving credit where credit is due, but that we have self-interest and motivations of attaining prestige, career advancement and the like. </p>
<p>For this reason and more, I have high hopes for the work <a href="http://cnls.lanl.gov/~marko/" rel="nofollow" >Marko Rodriguez</a> is doing around the scholarly communication process:</p>
<blockquote><p>The general purpose of the scholarly communication process is to support the creation and dissemination of ideas within the scientific community. [...] This paper describes an associative network composed of multiple scholarly artifacts that can be used as a medium for supporting the scholarly communication process.</p>
<p>- <a href="http://www.soe.ucsc.edu/~okram/papers/scholarly-network.pdf" rel="nofollow" ><em>A Multi-Graph to Support the Scholarly Communication Process</em></a></p></blockquote>
<p>My hope is that emerging scientific research tools such as these will help support a shift to a more <a href="http://www.answers.com/topic/meritocracy?method=5&#038;linktext=meritocracy#Wikipedia" rel="nofollow" >meritocratic</a> social system in science, where the incentives to research and publish are more closely aligned to the &#8220;true aims of science&#8221;. Specifically, I would hope that the future network structure of the scientific communication process will represent more a knowledge structure than a social structure.</p>
<p>A paper&#8217;s authors, acknowledgements and references are all relational data which point to people or artifacts which gave some contribution to the finished product. It&#8217;s for inconsistent, socially-constructed reasons that we separate and prioritize these resources. Like when decisions about who gets the first author slot are based on seniority instead of contribution. </p>
<p>Authors, references and acknowledgements are rightly distinguished as different types of resources but they all share the value of being a relational input to a paper. It seems to me that the network created by, for example, a single ranked list of each paper&#8217;s human and artifactual inputs, would more faithfully represent the living knowledge network instead of merely the social structure of the authors (coauthorship net) or the relatedness of topics (citation net). For instance, a reference may have been more valuable to the paper&#8217;s creation than one of the five co-authors, or an acknowledged party could have been more informative than many of the thirty references.</p>
<p>If the true aim of science is the quest for knowledge, not the quest for tenure, then it makes sense to give credit where credit is due, and accurately weight the importance of all information inputs to a given paper.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.steinbock.org/blog/2005/11/14/science-tenure/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
