<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2" -->
<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/"
	>

<channel>
	<title>k is one cat</title>
	<link>http://kisonecat.com</link>
	<description>research anecdotes.</description>
	<pubDate>Mon, 21 Jul 2008 21:32:40 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2</generator>
	<language>en</language>
			<item>
		<title>Solutions to Lights Out</title>
		<link>http://kisonecat.com/2008/07/21/solutions-to-lights-out/</link>
		<comments>http://kisonecat.com/2008/07/21/solutions-to-lights-out/#comments</comments>
		<pubDate>Mon, 21 Jul 2008 21:32:40 +0000</pubDate>
		<dc:creator>kisonecat</dc:creator>
		
		<category><![CDATA[Personal]]></category>

		<category><![CDATA[Mathematics]]></category>

		<guid isPermaLink="false">http://kisonecat.com/2008/07/21/solutions-to-lights-out/</guid>
		<description><![CDATA[I&#8217;ll briefly introduce the Lights Out puzzle: the game is played on an n-by-n grid of buttons which, when pressed, toggle between a lit and unlit state.  The twist is that toggling a light also toggles the state of its neighbors (above, below, right, left&#8212;although, on the boundary, lights have fewer neighbors).  All [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ll briefly introduce the <a href="http://en.wikipedia.org/wiki/Lights_Out_(game)">Lights Out puzzle</a>: the game is played on an <em>n</em>-by-<em>n</em> grid of buttons which, when pressed, toggle between a lit and unlit state.  The twist is that toggling a light <em>also</em> toggles the state of its neighbors (above, below, right, left&mdash;although, on the boundary, lights have fewer neighbors).  All the buttons are lit when the game begins, and the goal is to turn all the lights off.</p>

<p>There are two key observations:</p>

<ul>
<li>toggling a light twice amounts to doing nothing,</li>
<li>toggling light <img src='/latexrender/pictures/7fc56270e7a70fa81a5935b72eacbe29.gif' title='A' alt='A' align=absmiddle> and then light <img src='/latexrender/pictures/9d5ed678fe57bcca610140957afab571.gif' title='B' alt='B' align=absmiddle> has the same effect as toggling <img src='/latexrender/pictures/9d5ed678fe57bcca610140957afab571.gif' title='B' alt='B' align=absmiddle> and then toggling <img src='/latexrender/pictures/7fc56270e7a70fa81a5935b72eacbe29.gif' title='A' alt='A' align=absmiddle>.
</ul>

<p>As a result, <b>the order in which we press the buttons is irrelevant.</b>  So to solve the <em>n</em>-by-<em>n</em> puzzle, we just need to know whether a button needs to be pressed.  My old website had some pictures I made showing solutions for boards of various sizes&mdash;pictures where a white pixel meant &#8220;press&#8221; and a black pixel meant &#8220;don&#8217;t press.&#8221;  I assembled these pictures into a video, showing solutions to the Lights Out puzzle for <img src='/latexrender/pictures/eb73d5870f9adcb4d8657cd4a8f93672.gif' title='n \leq 200' alt='n \leq 200' align=absmiddle>:</p>

[See post to watch Flash video]

<p>For as cool as that looks, there&#8217;s not much to be discovered (as far as I can tell) from watching these frames flash by.  But it does look like about half the buttons have to be pressed to solve the puzzle: why is that?</p>

<p>The still frames of the movie are available <a href='http://kisonecat.com/wp-content/uploads/2008/07/solutions.zip' title='Solutions to the Lights Out game'>here as PNGs in a zipped archive</a>.  Here is a solution to the 400-by-400 board:</p>

<p><a href='http://kisonecat.com/wp-content/uploads/2008/07/lights-out-400-doublesize.png' title='Solution to 400x400 Lights Out'><img src='http://kisonecat.com/wp-content/uploads/2008/07/lights-out-400.png' alt='Solution to 400x400 Lights Out' /></a></p>

<p>Finding that solution involved row-reducing a <img src='/latexrender/pictures/fc6fae00ddd26d2808c3eb25977e380e.gif' title='(400 \cdot 400 + 1)' alt='(400 \cdot 400 + 1)' align=absmiddle>-by-<img src='/latexrender/pictures/b1f6db46cdb499495fdddb0230e91754.gif' title='400 \cdot 400' alt='400 \cdot 400' align=absmiddle> matrix&mdash;that&#8217;s a matrix with over 25 billion entries.  On the other hand, each entry is one bit, so that matrix fits (not coincidentally) in 3 gigabytes of memory.  One could surely do better, considering how sparse the matrix is: perhaps we could have a little contest for solving very large Lights Out games.</p>

<p>Besides the fact that all these pictures look awesome, Lights Out is a neat example to motivate some linear algebra over a finite field.  It illustrates how satisfying an &#8220;easy&#8221; local condition (each light must be turned off) might require a globally complicated solution&mdash;a lesson for mathematics and for life!</p>
]]></content:encoded>
			<wfw:commentRss>http://kisonecat.com/2008/07/21/solutions-to-lights-out/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Percolation.</title>
		<link>http://kisonecat.com/2008/07/20/percolation/</link>
		<comments>http://kisonecat.com/2008/07/20/percolation/#comments</comments>
		<pubDate>Sun, 20 Jul 2008 06:02:52 +0000</pubDate>
		<dc:creator>kisonecat</dc:creator>
		
		<category><![CDATA[Personal]]></category>

		<category><![CDATA[Questions]]></category>

		<category><![CDATA[Mathematics]]></category>

		<guid isPermaLink="false">http://kisonecat.com/2008/07/20/percolation/</guid>
		<description><![CDATA[I made a movie recently for my advisor.  The movie is so pretty, that I thought I&#8217;d share it here: may I present to you randomly drawn dots, where two dots are the same color when they touch!

[See post to watch Flash video]

I&#8217;ll be a bit more explicit: a dot is drawn at a [...]]]></description>
			<content:encoded><![CDATA[<p>I made a movie recently for my advisor.  The movie is so pretty, that I thought I&#8217;d share it here: may I present to you <b>randomly drawn dots, where two dots are the same color when they touch!</b></p>

[See post to watch Flash video]

<p>I&#8217;ll be a bit more explicit: a dot is drawn at a random location; if it does not overlap any previous dots, it gets a new color.  Otherwise, the dot takes the color of the component it touches.  Sometimes a new dot connects many components, and in this case, the new component takes on the color of the largest among the old components.</p>

<p>There&#8217;s a lot of neat questions to be asked about such a process: for instance, after drawing <em>n</em> dots, how many components should we expect to see?  As you can see in the movie, when you draw only a few dots, most of those dots are isolated and have their own color; but after drawing a ridiculously large number of dots, they are all connected and the same color.  And inbetween, something more interesting happens.</p>

<p>Here&#8217;s an example of &#8220;something more interesting&#8221; taken from a <a href='http://kisonecat.com/wp-content/uploads/2008/07/chart-25000.png' title='25000 random dots'>much larger picture</a> than the above movie:</p>

<p><a href='http://kisonecat.com/wp-content/uploads/2008/07/chart-25000.png' title='25000 random dots'><img src='http://kisonecat.com/wp-content/uploads/2008/07/chart-25000-zoomed.png' alt='25000 random points (close up)' /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://kisonecat.com/2008/07/20/percolation/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Possible homology of closed manifolds.</title>
		<link>http://kisonecat.com/2008/03/08/possible-homology-of-closed-manifolds/</link>
		<comments>http://kisonecat.com/2008/03/08/possible-homology-of-closed-manifolds/#comments</comments>
		<pubDate>Sun, 09 Mar 2008 01:10:21 +0000</pubDate>
		<dc:creator>kisonecat</dc:creator>
		
		<category><![CDATA[Questions]]></category>

		<category><![CDATA[Mathematics]]></category>

		<guid isPermaLink="false">http://kisonecat.com/2008/03/08/possible-homology-of-closed-manifolds/</guid>
		<description><![CDATA[In this fun paper,


   Kreck, Matthias An inverse to the Poincar&#233; conjecture.Festschrift: Erich Lamprecht. Arch. Math. (Basel)  77  (2001),  no. 1, 98&#8212;106.


it is pointed out that


    homology is a very basic invariant, and
    closed manifolds are very basic objects


and so a very basic question [...]]]></description>
			<content:encoded><![CDATA[<p>In this fun paper,</p>

<blockquote>
  <p><a href="http://www.ams.org/mathscinet-getitem?mr=1845679"> Kreck, Matthias <span class="title">An inverse to the Poincar&eacute; conjecture.</span>Festschrift: Erich Lamprecht. <em>Arch. Math. (Basel)</em>  77  (2001),  no. 1, 98&#8212;106.</a></p>
</blockquote>

<p>it is pointed out that</p>

<ul>
    <li><b>homology</b> is a very basic invariant, and</li>
    <li><b>closed manifolds</b> are very basic objects</li>
</ul>

<p>and so a very basic question is: what sequences of abelian groups are the homology groups of a closed simply connected manifold?</p>

<p>It isn&#8217;t very hard to realize any sequence of abelian groups <b>up to the middle dimension</b>, but that middle dimension is tricky (e.g., classify <img src='/latexrender/pictures/cee44a4736519848cd908612350c85fe.gif' title='(n-1)' alt='(n-1)' align=absmiddle>-connected <img src='/latexrender/pictures/21e2c0c0472b331622877accbe29b91b.gif' title='2n' alt='2n' align=absmiddle>-manifolds).</p>

<p>Anyway, I was wondering: is this realization question solvable for homology with coefficients in <img src='/latexrender/pictures/8f6cdfecdfbdbc0d7561b67c8a66fae4.gif' title='\Z/2\Z' alt='\Z/2\Z' align=absmiddle> or <img src='/latexrender/pictures/6c0dbad9f0e6bfffef168814eae154b3.gif' title='\Q' alt='\Q' align=absmiddle>?</p>
]]></content:encoded>
			<wfw:commentRss>http://kisonecat.com/2008/03/08/possible-homology-of-closed-manifolds/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Political relationships hidden in markets.</title>
		<link>http://kisonecat.com/2008/03/08/political-relationships-hidden-in-markets/</link>
		<comments>http://kisonecat.com/2008/03/08/political-relationships-hidden-in-markets/#comments</comments>
		<pubDate>Sat, 08 Mar 2008 23:44:38 +0000</pubDate>
		<dc:creator>kisonecat</dc:creator>
		
		<category><![CDATA[Economics]]></category>

		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://kisonecat.com/2008/03/08/political-relationships-hidden-in-markets/</guid>
		<description><![CDATA[I&#8217;m again applying Granger causality  to time series data from Intrade.  This time, however, I connect box A to box B with a


green arrow if A becoming more likely causes B to become more likely, and with a
red arrow if A becoming more likely causes B to become less likely.


Shorter arrows suggest stronger [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m again applying <a href="http://en.wikipedia.org/wiki/Granger_causality">Granger causality</a>  to time series data from <a href="http://intrade.com/">Intrade</a>.  This time, however, I connect box <i>A</i> to box <i>B</i> with a</p>

<ul>
<li><font color="#009900">green</font> arrow if <i>A</i> becoming more likely causes <i>B</i> to become more likely, and with a</li>
<li><font color="#990000">red</font> arrow if <i>A</i> becoming more likely causes <i>B</i> to become less likely.</li>
</ul>

<p>Shorter arrows suggest <b>stronger</b> relationships (technically, a lower <i>p</i>-value).</p>

<p>Running the algorithm on the market data since January 1, 2008 with a lag of two days produces the following graph:</p>

<p><img src='http://kisonecat.com/wp-content/uploads/2008/03/final3.png' alt='Two day lag since January 1, 2008' /></p>

<p>And so, we see that the market data is encoding some</p>

<ul>
<li><b>tautologies</b> (McCain&#8217;s nomination makes him more likely to be president, and McCain&#8217;s being president makes it more likely that a Republican is president) but also some</li>
<li><b>conventional wisdom</b> (a recession makes Clinton more likely to be nominated, but Obama less likely to be nominated; perhaps the perception that Obama would fare better in the general election explains the red arrows from &#8220;Democrat President&#8221; to Clinton, and the green arrows from &#8220;Democrat President&#8221; to Obama).</li>
</ul>

<p>It&#8217;s amazing to me (and hopefully also to you) that the <b>relationships between the prices of these Intrade contracts</b> manages to encode popular sentiments.</p>
]]></content:encoded>
			<wfw:commentRss>http://kisonecat.com/2008/03/08/political-relationships-hidden-in-markets/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Granger causality and Intrade data.</title>
		<link>http://kisonecat.com/2008/03/06/granger-causality-and-intrade-data/</link>
		<comments>http://kisonecat.com/2008/03/06/granger-causality-and-intrade-data/#comments</comments>
		<pubDate>Thu, 06 Mar 2008 19:31:09 +0000</pubDate>
		<dc:creator>kisonecat</dc:creator>
		
		<category><![CDATA[Economics]]></category>

		<category><![CDATA[Personal]]></category>

		<category><![CDATA[Computer Science]]></category>

		<category><![CDATA[Mathematics]]></category>

		<guid isPermaLink="false">http://kisonecat.com/2008/03/06/granger-causality-and-intrade-data/</guid>
		<description><![CDATA[Granger causality is a technique for determining whether one time series can be used to forecast another; since the Intrade market provides time series data for political questions, we can look at whether political outcomes can be used to forecast other political outcomes.

There&#8217;s a library for the statistical package R to do the Granger test, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://en.wikipedia.org/wiki/Granger_causality">Granger causality</a> is a technique for determining whether one time series can be used to forecast another; since the <a href="http://intrade.com/">Intrade</a> market provides time series data for political questions, we can look at whether political outcomes can be used to forecast other political outcomes.</p>

<p>There&#8217;s a library for the statistical package <a href="http://www.r-project.org/">R</a> to do the <a href="http://rss.acs.unt.edu/Rdoc/library/MSBVAR/html/granger.test.html">Granger test</a>, and <a href="http://intrade.com/">Intrade</a> produces <a href="http://en.wikipedia.org/wiki/Comma-separated_values">CSV</a> market data.  I fed the market data for various contracts since January 1, 2008 into R, and the output of that into <a href="http://www.graphviz.org/">GraphViz</a> to make a nice-looking visualization; in particular, I connect <img src='/latexrender/pictures/0cc175b9c0f1b6a831c399e269772661.gif' title='a' alt='a' align=absmiddle> to <img src='/latexrender/pictures/92eb5ffee6ae2fec3ad71c777531578f.gif' title='b' alt='b' align=absmiddle> if <img src='/latexrender/pictures/0cc175b9c0f1b6a831c399e269772661.gif' title='a' alt='a' align=absmiddle> Granger-causes <img src='/latexrender/pictures/92eb5ffee6ae2fec3ad71c777531578f.gif' title='b' alt='b' align=absmiddle> with <img src='/latexrender/pictures/83878c91171338902e0fe0fb97a8c47a.gif' title='p' alt='p' align=absmiddle>-value less than 0.05.  Darker arrows have smaller <img src='/latexrender/pictures/83878c91171338902e0fe0fb97a8c47a.gif' title='p' alt='p' align=absmiddle>-values.  This is all an <b>embarassing misuse of statistics</b> and <img src='/latexrender/pictures/83878c91171338902e0fe0fb97a8c47a.gif' title='p' alt='p' align=absmiddle>-values, but it is quick and easy to do, and the results are fun to see.</p>

<p>Here is the graph for a lag of one day (i.e., does yesterday&#8217;s value of <img src='/latexrender/pictures/0cc175b9c0f1b6a831c399e269772661.gif' title='a' alt='a' align=absmiddle> predict today&#8217;s value of <img src='/latexrender/pictures/92eb5ffee6ae2fec3ad71c777531578f.gif' title='b' alt='b' align=absmiddle>):</p>

<p><img src='http://kisonecat.com/wp-content/uploads/2008/03/final.png' alt='One day lagged granger causality graph' /></p>

<p>Here is the graph for a lag of two days (i.e., can the two previous days of data for <img src='/latexrender/pictures/0cc175b9c0f1b6a831c399e269772661.gif' title='a' alt='a' align=absmiddle> be used to forecast the next day of data for <img src='/latexrender/pictures/92eb5ffee6ae2fec3ad71c777531578f.gif' title='b' alt='b' align=absmiddle>):</p>

<p><img src='http://kisonecat.com/wp-content/uploads/2008/03/final1.png' alt='Two day lagged intrade granger causality graph' /></p>

<p>And here is the graph for a lag of three days:</p>

<p><img src='http://kisonecat.com/wp-content/uploads/2008/03/final2.png' alt='Three day lagged intrade granger causliaty graph' /></p>

<p>Don&#8217;t take this too seriously.  And one <b>word of warning:</b> an arrow from <img src='/latexrender/pictures/0cc175b9c0f1b6a831c399e269772661.gif' title='a' alt='a' align=absmiddle> to <img src='/latexrender/pictures/92eb5ffee6ae2fec3ad71c777531578f.gif' title='b' alt='b' align=absmiddle> does <b>not</b> mean that if <img src='/latexrender/pictures/0cc175b9c0f1b6a831c399e269772661.gif' title='a' alt='a' align=absmiddle> is more likely, then <img src='/latexrender/pictures/92eb5ffee6ae2fec3ad71c777531578f.gif' title='b' alt='b' align=absmiddle> is more likely&mdash;rather, it ought to mean that past knowledge of <img src='/latexrender/pictures/0cc175b9c0f1b6a831c399e269772661.gif' title='a' alt='a' align=absmiddle> can be used to forecast <img src='/latexrender/pictures/92eb5ffee6ae2fec3ad71c777531578f.gif' title='b' alt='b' align=absmiddle>.  I suppose it would be interesting to add some color for the direction of the relationship, and maybe I&#8217;ll do that when I have another free hour.</p>
]]></content:encoded>
			<wfw:commentRss>http://kisonecat.com/2008/03/06/granger-causality-and-intrade-data/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Movies of some neat cubical complexes.</title>
		<link>http://kisonecat.com/2008/02/24/movies-of-some-neat-cubical-complexes/</link>
		<comments>http://kisonecat.com/2008/02/24/movies-of-some-neat-cubical-complexes/#comments</comments>
		<pubDate>Mon, 25 Feb 2008 05:27:32 +0000</pubDate>
		<dc:creator>kisonecat</dc:creator>
		
		<category><![CDATA[Personal]]></category>

		<category><![CDATA[Mathematics]]></category>

		<guid isPermaLink="false">http://kisonecat.com/2008/02/24/movies-of-some-neat-cubical-complexes/</guid>
		<description><![CDATA[I made some movies of some of my favorite complexes: let  be the -dimensional cube, and let  be the  edges around the origin, and let  be the square face containing the edges  and .  Define a subcomplex  consisting of the squares  and all the squares in  [...]]]></description>
			<content:encoded><![CDATA[<p>I made some movies of some of my favorite complexes: let <img src='/latexrender/pictures/c18ecce5d8acace5fdf04008dbfe2955.gif' title='I^n' alt='I^n' align=absmiddle> be the <img src='/latexrender/pictures/7b8b965ad4bca0e41ab51de7b31363a1.gif' title='n' alt='n' align=absmiddle>-dimensional cube, and let <img src='/latexrender/pictures/927f2df15c5576d38ef36fbe56f7fcd3.gif' title='e_1, \ldots, e_n' alt='e_1, \ldots, e_n' align=absmiddle> be the <img src='/latexrender/pictures/7b8b965ad4bca0e41ab51de7b31363a1.gif' title='n' alt='n' align=absmiddle> edges around the origin, and let <img src='/latexrender/pictures/76041c5be823d0a90c47a869c15b12c2.gif' title='e_i e_j' alt='e_i e_j' align=absmiddle> be the square face containing the edges <img src='/latexrender/pictures/8dec559e201a7b6a0f99baeaa1731051.gif' title='e_i' alt='e_i' align=absmiddle> and <img src='/latexrender/pictures/b6f19bd9cacf5cb9b2c03d5615325e07.gif' title='e_j' alt='e_j' align=absmiddle>.  Define a subcomplex <img src='/latexrender/pictures/f8873e1ee27d2289134ba08fd567991b.gif' title='\Sigma^2_n \subset I^n' alt='\Sigma^2_n \subset I^n' align=absmiddle> consisting of the squares <img src='/latexrender/pictures/d526665bb0838c8db2f6bd9f1b2a67ee.gif' title='e_1 e_2, e_2 e_3, \ldots, e_{n-1} e_n, e_n e_1' alt='e_1 e_2, e_2 e_3, \ldots, e_{n-1} e_n, e_n e_1' align=absmiddle> and all the squares in <img src='/latexrender/pictures/c18ecce5d8acace5fdf04008dbfe2955.gif' title='I^n' alt='I^n' align=absmiddle> parallel to these.  <a href="http://kisonecat.com/2007/02/23/hurwitz/">It turns out</a> that <img src='/latexrender/pictures/eae53b4238fc3f0eaa9aceba098ef7d0.gif' title='\Sigma^2_n' alt='\Sigma^2_n' align=absmiddle> is a surface with a lot of symmetries.</p>

<p>In particular <img src='/latexrender/pictures/4399a8f7e97cb81fc20f3db7653d411f.gif' title='\Sigma^2_4' alt='\Sigma^2_4' align=absmiddle> is a torus in <img src='/latexrender/pictures/7ac2987b826877a406ebc456fbacba00.gif' title='\R^4' alt='\R^4' align=absmiddle>, and here is a 
<a href='http://kisonecat.com/wp-content/uploads/2008/02/four.mov' title='Torus in four space.'>quicktime movie</a> of it spinning:</p>

<p><embed src="http://kisonecat.com/wp-content/uploads/2008/02/four.mov" width="320" height="240" autoplay="true" loop="true"/></p>

<p>I&#8217;m particularly fond of this, as you can really see that four squares are coming together at each vertex (hence, it has zero curvature), and you can see the hole in the torus as it spins.</p>

<p>The complex <img src='/latexrender/pictures/f29a08232ab54febd92417d9110d31b8.gif' title='\Sigma^2_5' alt='\Sigma^2_5' align=absmiddle> is a genus five surface in <img src='/latexrender/pictures/4ec6e3e61ec62156cc595db5ce285ad5.gif' title='\R^5' alt='\R^5' align=absmiddle>, and here is a 
<a href='http://kisonecat.com/wp-content/uploads/2008/02/five.mov' title='Genus five surface in five space.'>quicktime movie</a> of it spinning:</p>

<p><embed src="http://kisonecat.com/wp-content/uploads/2008/02/five.mov" width="320" height="240" autoplay="true" loop="true"/></p>

<p>I represented the extra dimensions with color&mdash;not that it helps much!</p>
]]></content:encoded>
			<wfw:commentRss>http://kisonecat.com/2008/02/24/movies-of-some-neat-cubical-complexes/feed/</wfw:commentRss>
<enclosure url="http://kisonecat.com/wp-content/uploads/2008/02/four.mov" length="493035" type="video/quicktime" />
<enclosure url="http://kisonecat.com/wp-content/uploads/2008/02/five.mov" length="640715" type="video/quicktime" />
		</item>
		<item>
		<title>Books that are useless on a desert island.</title>
		<link>http://kisonecat.com/2008/01/31/books-that-are-useless-on-a-desert-island/</link>
		<comments>http://kisonecat.com/2008/01/31/books-that-are-useless-on-a-desert-island/#comments</comments>
		<pubDate>Fri, 01 Feb 2008 05:36:57 +0000</pubDate>
		<dc:creator>kisonecat</dc:creator>
		
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://kisonecat.com/2008/01/31/books-that-are-useless-on-a-desert-island/</guid>
		<description><![CDATA[Drew Hevle raises a very interesting question: suppose you are stranded on a desert island; what books would be entirely useless in this situation?

Here are a few books that I wouldn&#8217;t want to be stranded on an island with:


Federal Income Tax: Code and Regulations Selected Sections
A Million Random Digits with 100,000 Normal Deviates
Government Phone Book [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.hevle.com/">Drew Hevle</a> raises a very interesting question: suppose you are stranded on a <a href="http://en.wikipedia.org/wiki/Desert_island">desert island</a>; what books would be entirely <b>useless</b> in this situation?</p>

<p>Here are a few books that <b>I wouldn&#8217;t want to be stranded on an island with</b>:</p>

<ul>
<li><a href="http://www.amazon.com/exec/obidos/redirect?tag=therepubliofk-20&#038;path=ASIN/0808016903/">Federal Income Tax: Code and Regulations Selected Sections</a></li>
<li><a href="http://www.amazon.com/exec/obidos/redirect?tag=therepubliofk-20&#038;path=ASIN/0833030477/">A Million Random Digits with 100,000 Normal Deviates</a></li>
<li><a href="http://www.amazon.com/exec/obidos/redirect?tag=therepubliofk-20&#038;path=ASIN/0780803450">Government Phone Book USA 2000</a></li>
<li><a href="http://www.amazon.com/exec/obidos/redirect?tag=therepubliofk-20&#038;path=ASIN/0393732150">How to Build an Igloo: And Other Snow Shelters</a></li>
</ul>

<p>Do you have <b>other ideas for awful desert island reading?</b></p>
]]></content:encoded>
			<wfw:commentRss>http://kisonecat.com/2008/01/31/books-that-are-useless-on-a-desert-island/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Visualizing pineapple pancakes.</title>
		<link>http://kisonecat.com/2008/01/29/visualizing-pineapple-pancakes/</link>
		<comments>http://kisonecat.com/2008/01/29/visualizing-pineapple-pancakes/#comments</comments>
		<pubDate>Wed, 30 Jan 2008 01:04:53 +0000</pubDate>
		<dc:creator>kisonecat</dc:creator>
		
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://kisonecat.com/2008/01/29/visualizing-pineapple-pancakes/</guid>
		<description><![CDATA[The pineapple sauce pancake graph has English words as vertices, and a directed edge from  to  if the concatenation  is also an English word.  For instance, there is a vertex labeled pine, and a vertex labeled apple, and an edge from pine to apple.

Anyway, the graph is huge; and the usual [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://kisonecat.com/2006/10/07/pineapple-sauce-pancakes/">pineapple sauce pancake</a> graph has English words as vertices, and a directed edge from <img src='/latexrender/pictures/0cc175b9c0f1b6a831c399e269772661.gif' title='a' alt='a' align=absmiddle> to <img src='/latexrender/pictures/92eb5ffee6ae2fec3ad71c777531578f.gif' title='b' alt='b' align=absmiddle> if the concatenation <img src='/latexrender/pictures/187ef4436122d1cc2f40dc2b92f0eba0.gif' title='ab' alt='ab' align=absmiddle> is also an English word.  For instance, there is a vertex labeled <b>pine</b>, and a vertex labeled <b>apple</b>, and an edge from <b>pine</b> to <b>apple</b>.</p>

<p>Anyway, the graph is huge; and the usual visualization tool (<a href="http://www.graphviz.org/">Graphviz</a>) doesn&#8217;t work particularly well on the whole graph, so I took a few hundred vertices around pine, apple, sauce, pan, and cake.  The result was the following:</p>

<p><a href='http://kisonecat.com/wp-content/uploads/2008/02/pineapple.png' title='Big pineapple graph.'><img src='http://kisonecat.com/wp-content/uploads/2008/02/pineapple-small.png' alt='Small pineapple graph.' /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://kisonecat.com/2008/01/29/visualizing-pineapple-pancakes/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Clustering texts with an obvious grouping.</title>
		<link>http://kisonecat.com/2008/01/27/clustering-texts-with-an-obvious-grouping/</link>
		<comments>http://kisonecat.com/2008/01/27/clustering-texts-with-an-obvious-grouping/#comments</comments>
		<pubDate>Mon, 28 Jan 2008 00:22:30 +0000</pubDate>
		<dc:creator>kisonecat</dc:creator>
		
		<category><![CDATA[Personal]]></category>

		<category><![CDATA[Linguistics]]></category>

		<guid isPermaLink="false">http://kisonecat.com/2008/01/27/clustering-texts-with-an-obvious-grouping/</guid>
		<description><![CDATA[It was pointed out to me by Kenny Easwaran that I ought to try clustering texts that already have a natural grouping.

So I ran the clustering program on 15 texts written by three authors, and here is the result:



The largest eigenvalue is 25 times bigger than the next largest eigenvalue, and picks out the author [...]]]></description>
			<content:encoded><![CDATA[<p>It was pointed out to me by <a href="http://www.ocf.berkeley.edu/~easwaran/">Kenny Easwaran</a> that I ought to try <a href="http://kisonecat.com/2008/01/22/clustering-shakespeare/">clustering</a> texts that already have a natural grouping.</p>

<p>So I ran the clustering program on 15 texts written by three authors, and here is the result:</p>

<p><img src='http://kisonecat.com/wp-content/uploads/2008/01/clustered.png' alt='Clustering Jane Austen, Shakespeare, and Sir Arthur Conan Doyle.' /></p>

<p>The largest eigenvalue is 25 times bigger than the next largest eigenvalue, and picks out the author pretty well.  The top pile consists of Jane Austen&#8217;s books (with Emma split into three volumes).  The middle pile consists of Sir Arthur Conan Doyle&#8217;s books, with the Sherlock Holmes mysteries (Valley of Fear, Sign of Four, and Hound of the Baskervilles) grouped closer than the others.  The bottom pile are five of Shakespeare&#8217;s plays.</p>

<p><a href="http://kisonecat.com/2008/01/27/clustering-texts-with-an-obvious-grouping/#more-148" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kisonecat.com/2008/01/27/clustering-texts-with-an-obvious-grouping/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Clustering Shakespeare.</title>
		<link>http://kisonecat.com/2008/01/22/clustering-shakespeare/</link>
		<comments>http://kisonecat.com/2008/01/22/clustering-shakespeare/#comments</comments>
		<pubDate>Wed, 23 Jan 2008 04:23:57 +0000</pubDate>
		<dc:creator>kisonecat</dc:creator>
		
		<category><![CDATA[Personal]]></category>

		<category><![CDATA[Linguistics]]></category>

		<guid isPermaLink="false">http://kisonecat.com/2008/01/22/clustering-shakespeare/</guid>
		<description><![CDATA[I ran my clustering program (which I just ran on the New Testament) on Shakespeare&#8217;s plays&#8212;which were conveniently packaged into a text file by Open Source Shakespeare.

The result was the following graph:



I know little about Shakespeare, so I can&#8217;t say too much about the above image.  I&#8217;d love to know what you think: does [...]]]></description>
			<content:encoded><![CDATA[<p>I ran my clustering program (which I just ran on the <a href="http://kisonecat.com/2008/01/22/clustering-the-new-testament/">New Testament</a>) on <b>Shakespeare&#8217;s plays</b>&mdash;which were conveniently packaged into a text file by <a href="http://www.opensourceshakespeare.org/">Open Source Shakespeare</a>.</p>

<p>The result was the following graph:</p>

<p><img src='http://kisonecat.com/wp-content/uploads/2008/01/shakespeare.png' alt='Clustering of Shakespeare’s Plays' /></p>

<p>I know little about Shakespeare, so I can&#8217;t say too much about the above image.  I&#8217;d love to know what you think: <b>does this arrangement of his plays make any sense?</b></p>

<p>Given that modern processors are so good at vector and matrix calculations, I&#8217;m surprised that this sort of visualization tool doesn&#8217;t appear in more places.  For instance,</p>

<ul>
<li>Your blogs and email could be organized this way.  Imagine lasso-ing a bunch of similar emails to reply to them all at once!</li>
<li>News could be organized into nice piles.</li>
<li>Your desktop and personal files could be arranged automatically into relevant piles.</li>
</ul>

<p>Then again, maybe the idea of piles appeals to me more than most people&mdash;just look at how I organize the papers and books on my desk!</p>
]]></content:encoded>
			<wfw:commentRss>http://kisonecat.com/2008/01/22/clustering-shakespeare/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
