<?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>Wisdom and Wonder &#187; Fun</title>
	<atom:link href="http://www.wisdomandwonder.com/tag/fun/feed" rel="self" type="application/rss+xml" />
	<link>http://www.wisdomandwonder.com</link>
	<description>Science and Philosophy</description>
	<lastBuildDate>Wed, 25 Jan 2012 05:09:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>The Sloan Digital Sky Survey</title>
		<link>http://www.wisdomandwonder.com/link/5896/the-sloan-digital-sky-survey</link>
		<comments>http://www.wisdomandwonder.com/link/5896/the-sloan-digital-sky-survey#comments</comments>
		<pubDate>Sat, 27 Aug 2011 01:16:43 +0000</pubDate>
		<dc:creator>Grant</dc:creator>
				<category><![CDATA[Link]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Science]]></category>

		<guid isPermaLink="false">http://www.wisdomandwonder.com/?p=5896</guid>
		<description><![CDATA[The Sloan Digital Sky Survey (SDSS) is one of the most ambitious and influential surveys in the history of astronomy. Over eight years of operations (SDSS-I, 2000-2005; SDSS-II, 2005-2008), it obtained deep, multi-color images covering more than a quarter of the sky and created 3-dimensional maps containing more than 930,000 galaxies and more than 120,000 [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>The <a href="http://www.sdss.org/">Sloan Digital Sky Survey</a> (SDSS) is one of the most ambitious and influential surveys in the history of astronomy. Over eight years of operations (SDSS-I, 2000-2005; SDSS-II, 2005-2008), it obtained deep, multi-color images covering more than a quarter of the sky and created 3-dimensional maps containing more than 930,000 galaxies and more than 120,000 quasars. </p></blockquote>
<p>It is hard not to dream about exploring space when you see what Sloan has to offer.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wisdomandwonder.com/link/5896/the-sloan-digital-sky-survey/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>When is your math always wrong?</title>
		<link>http://www.wisdomandwonder.com/article/5790/when-is-your-math-always-wrong</link>
		<comments>http://www.wisdomandwonder.com/article/5790/when-is-your-math-always-wrong#comments</comments>
		<pubDate>Sun, 26 Jun 2011 03:27:43 +0000</pubDate>
		<dc:creator>Grant</dc:creator>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[Computational Science]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Learning]]></category>
		<category><![CDATA[mathematics]]></category>

		<guid isPermaLink="false">http://www.wisdomandwonder.com/?p=5790</guid>
		<description><![CDATA[Last year in my Applied Linear Algebra class we were assigned a homework that introduced Backward Substituation, Forward Substitution, Horner&#8217;s Method. Something really interesting happened though as a side effect of the assigned work. For one of the problems we were given the equation: P = @&#40;x&#41; &#40;x-2&#41;^9; Which produces this over [1.92, 2.08] One [...]]]></description>
			<content:encoded><![CDATA[<p>Last year in my Applied Linear Algebra class we were assigned a homework that introduced Backward Substituation, Forward Substitution, Horner&#8217;s Method. Something really interesting  happened though as a side effect of the assigned work. </p>
<p><span id="more-5790"></span></p>
<p>For one of the problems we were given the equation:</p>

<div class="wp_syntax"><div class="code"><pre class="matlab" style="font-family:monospace;">P = @<span style="color: #000000; font-weight: bold; ">&#40;</span>x<span style="color: #000000; font-weight: bold; ">&#41;</span> <span style="color: #000000; font-weight: bold; ">&#40;</span>x-<span style="color: #000000; ">2</span><span style="color: #000000; font-weight: bold; ">&#41;</span>^<span style="color: #000000; ">9</span>;</pre></div></div>

<p>Which produces this over [1.92, 2.08]</p>
<p><a href="http://www.wisdomandwonder.com/wordpress/wp-content/uploads/2011/06/PofX.png"><img src="http://www.wisdomandwonder.com/wordpress/wp-content/uploads/2011/06/PofX.png" alt="" title="PofX" width="560" height="420" class="aligncenter size-full wp-image-5793" /></a></p>
<p>One of the awesome things about MATLAB (or GNU Octave) is that it has a great graphing libraries and a REPL that lets you literally &#8220;play&#8221; with the problems you are working on. You can visualize it different ways, you can dig deep into different corners, there is really no limit. The net result is a very fun and educational learn-by-doing system very much in the spirit of <a href="http://www.htdp.org/">HtDP</a>. That said I wanted to play around with the function we were given. </p>
<p>Out of curiosity I multiplied out P into PEX:</p>

<div class="wp_syntax"><div class="code"><pre class="matlab" style="font-family:monospace;">PEX = @<span style="color: #000000; font-weight: bold; ">&#40;</span>x<span style="color: #000000; font-weight: bold; ">&#41;</span> <span style="color: #000000; font-weight: bold; ">...</span>
      <span style="color: #000000; font-weight: bold; ">&#40;</span>x^<span style="color: #000000; ">9</span><span style="color: #000000; font-weight: bold; ">&#41;</span>       - <span style="color: #000000; font-weight: bold; ">&#40;</span><span style="color: #000000; ">18</span> * x^<span style="color: #000000; ">8</span><span style="color: #000000; font-weight: bold; ">&#41;</span>   + <span style="color: #000000; font-weight: bold; ">&#40;</span><span style="color: #000000; ">144</span> * x^<span style="color: #000000; ">7</span><span style="color: #000000; font-weight: bold; ">&#41;</span>  - <span style="color: #000000; font-weight: bold; ">&#40;</span><span style="color: #000000; ">672</span> * x^<span style="color: #000000; ">6</span><span style="color: #000000; font-weight: bold; ">&#41;</span> <span style="color: #000000; font-weight: bold; ">...</span>
    + <span style="color: #000000; font-weight: bold; ">&#40;</span><span style="color: #000000; ">2016</span> *x^<span style="color: #000000; ">5</span><span style="color: #000000; font-weight: bold; ">&#41;</span> - <span style="color: #000000; font-weight: bold; ">&#40;</span><span style="color: #000000; ">4032</span> * x^<span style="color: #000000; ">4</span><span style="color: #000000; font-weight: bold; ">&#41;</span> + <span style="color: #000000; font-weight: bold; ">&#40;</span><span style="color: #000000; ">5376</span> * x^<span style="color: #000000; ">3</span><span style="color: #000000; font-weight: bold; ">&#41;</span> - <span style="color: #000000; font-weight: bold; ">&#40;</span><span style="color: #000000; ">4608</span> * x^<span style="color: #000000; ">2</span><span style="color: #000000; font-weight: bold; ">&#41;</span> <span style="color: #000000; font-weight: bold; ">...</span>
    + <span style="color: #000000; font-weight: bold; ">&#40;</span><span style="color: #000000; ">2304</span> * x<span style="color: #000000; font-weight: bold; ">&#41;</span>  - <span style="color: #000000; font-weight: bold; ">&#40;</span><span style="color: #000000; ">512</span><span style="color: #000000; font-weight: bold; ">&#41;</span>;</pre></div></div>

<p>Now you and I know that P and PEX are equivalent. What do you think will happen we we plot P and PEX together? I figured that we would get one line on top of the other since they are literally the same equation. Why did I want to do this? I can only attribute it to providence.</p>
<p>After thinking about it, go to the next page.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wisdomandwonder.com/article/5790/when-is-your-math-always-wrong/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>EiffelStudio: A Contract for Success</title>
		<link>http://www.wisdomandwonder.com/article/5485/eiffelstudio-a-contract-for-success</link>
		<comments>http://www.wisdomandwonder.com/article/5485/eiffelstudio-a-contract-for-success#comments</comments>
		<pubDate>Sun, 02 Jan 2011 06:54:36 +0000</pubDate>
		<dc:creator>Grant</dc:creator>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[Eiffel]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Programming Language]]></category>

		<guid isPermaLink="false">http://www.wisdomandwonder.com/?p=5485</guid>
		<description><![CDATA[A while back Eiffel Software (formerly ISE) held a contest to come up with a slogan for one of their products, EiffelStudio. I submitted: EiffelStudio: A Contract for Success &#8211; Grant Rettke And won! They gave me a one-year license for EiffelStudio in return for signing away the slogan. It was worth it&#8230; it is [...]]]></description>
			<content:encoded><![CDATA[<p>A while back <a href="http://eiffel.com/">Eiffel Software (formerly ISE)</a> held a contest to come up with a slogan for one of their products, <a href="http://eiffel.com/products/studio/">EiffelStudio</a>. </p>
<p>I submitted:</p>
<blockquote><p>EiffelStudio: A Contract for Success</p></blockquote>
<p>&#8211; Grant Rettke</p>
<p>And won!</p>
<p>They gave me a one-year license for EiffelStudio in return for signing away the slogan.</p>
<p>It was worth it&#8230; it is a great language!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wisdomandwonder.com/article/5485/eiffelstudio-a-contract-for-success/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Fun in the sun</title>
		<link>http://www.wisdomandwonder.com/link/4938/fun-in-the-sun</link>
		<comments>http://www.wisdomandwonder.com/link/4938/fun-in-the-sun#comments</comments>
		<pubDate>Fri, 25 Jun 2010 12:56:56 +0000</pubDate>
		<dc:creator>Grant</dc:creator>
				<category><![CDATA[Link]]></category>
		<category><![CDATA[Fun]]></category>

		<guid isPermaLink="false">http://www.wisdomandwonder.com/?p=4938</guid>
		<description><![CDATA[Here is a great article on how to safely have fun in the sun by minimizing your UV exposure. Perfect for summer and a fun little project. (via lifehacker)]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.instructables.com/id/Build-a-Sunburn-Alarm/">Here </a>is a great article on how to safely have fun in the sun by minimizing your UV exposure. Perfect for summer and a fun little project.</p>
<p>(via <a href="http://lifehacker.com/5572310/build-a-diy-electronic-sunburn-alarm">lifehacker</a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wisdomandwonder.com/link/4938/fun-in-the-sun/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>A Philosophy of Cool for Non-Living Things</title>
		<link>http://www.wisdomandwonder.com/link/4597/a-philosophy-of-cool-for-non-living-things</link>
		<comments>http://www.wisdomandwonder.com/link/4597/a-philosophy-of-cool-for-non-living-things#comments</comments>
		<pubDate>Fri, 19 Mar 2010 15:05:10 +0000</pubDate>
		<dc:creator>Grant</dc:creator>
				<category><![CDATA[Link]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[philosophy]]></category>

		<guid isPermaLink="false">http://www.wisdomandwonder.com/?p=4597</guid>
		<description><![CDATA[Cool can come from what a [thing] is or what it does. But at the core, Cool is about purity of expression, of material objects being infused with human energy, creativity and insight to make them more than just the sum of their parts. &#8211; Mark Hoyer, WHAT IS COOL?, Cycle World 2/2010 I love [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>
Cool can come from what a [thing] is or what it does. But at the core, Cool is about purity of expression, of material objects being infused with human energy, creativity and insight to make them more than just the sum of their parts.
</p></blockquote>
<p>&#8211; Mark Hoyer, <u>WHAT IS COOL?</u>, Cycle World 2/2010</p>
<p>I love Mark&#8217;s take on cool; from motorcycles to programming languages, it still makes sense. It makes me think about how great it is to be alive, living, in the present. It is a gift.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wisdomandwonder.com/link/4597/a-philosophy-of-cool-for-non-living-things/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Funny Java Standards</title>
		<link>http://www.wisdomandwonder.com/link/4512/funny-java-standards</link>
		<comments>http://www.wisdomandwonder.com/link/4512/funny-java-standards#comments</comments>
		<pubDate>Sun, 31 Jan 2010 18:18:13 +0000</pubDate>
		<dc:creator>Grant</dc:creator>
				<category><![CDATA[Link]]></category>
		<category><![CDATA[Clojure]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Programming Language]]></category>

		<guid isPermaLink="false">http://www.wisdomandwonder.com/?p=4512</guid>
		<description><![CDATA[Swing is the GUI standard for Java. Clojure is the awesomeness standard for Java. (via Stuart)]]></description>
			<content:encoded><![CDATA[<blockquote><p>Swing is the GUI standard for Java.  Clojure is the awesomeness standard for Java.</p></blockquote>
<p>(via <a href="http://stuartsierra.com/2010/01/02/first-steps-with-clojure-swing">Stuart</a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wisdomandwonder.com/link/4512/funny-java-standards/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Experience of the Delight of Learning</title>
		<link>http://www.wisdomandwonder.com/article/4475/the-experience-of-the-delight-of-learning</link>
		<comments>http://www.wisdomandwonder.com/article/4475/the-experience-of-the-delight-of-learning#comments</comments>
		<pubDate>Fri, 22 Jan 2010 23:35:49 +0000</pubDate>
		<dc:creator>Grant</dc:creator>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Learning]]></category>

		<guid isPermaLink="false">http://www.wisdomandwonder.com/?p=4475</guid>
		<description><![CDATA[The experience of the delight of learning is such a wonderful thing. Have you felt it lately? How?]]></description>
			<content:encoded><![CDATA[<p>The experience of the delight of learning is such a wonderful thing.</p>
<p>Have you felt it lately? How?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wisdomandwonder.com/article/4475/the-experience-of-the-delight-of-learning/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>What is your PS1?</title>
		<link>http://www.wisdomandwonder.com/article/4466/what-is-your-ps1</link>
		<comments>http://www.wisdomandwonder.com/article/4466/what-is-your-ps1#comments</comments>
		<pubDate>Fri, 22 Jan 2010 18:53:17 +0000</pubDate>
		<dc:creator>Grant</dc:creator>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Operating System]]></category>
		<category><![CDATA[UNIX]]></category>

		<guid isPermaLink="false">http://www.wisdomandwonder.com/?p=4466</guid>
		<description><![CDATA[Mine is: PS1='\u@\h:$pwd&#62;']]></description>
			<content:encoded><![CDATA[<p>Mine is:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #007800;">PS1</span>=<span style="color: #ff0000;">'\u@\h:$pwd&gt;'</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.wisdomandwonder.com/article/4466/what-is-your-ps1/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>What is a beautiful font for printed quotes?</title>
		<link>http://www.wisdomandwonder.com/article/4285/what-is-a-beautiful-font-for-printed-quotes</link>
		<comments>http://www.wisdomandwonder.com/article/4285/what-is-a-beautiful-font-for-printed-quotes#comments</comments>
		<pubDate>Wed, 30 Dec 2009 00:31:45 +0000</pubDate>
		<dc:creator>Grant</dc:creator>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[Fun]]></category>

		<guid isPermaLink="false">http://www.wisdomandwonder.com/?p=4285</guid>
		<description><![CDATA[Some time next month I plan to have a water bottle &#8220;pressed&#8221; with a custom logo on it. Part of the logo might contain a quote. I would like it to look great. What is a beautiful font for printed quotes?]]></description>
			<content:encoded><![CDATA[<p>Some time next month I plan to have a water bottle &#8220;pressed&#8221; with a custom logo on it. Part of the logo might contain a quote. I would like it to look great.</p>
<p>What is a beautiful font for printed quotes?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wisdomandwonder.com/article/4285/what-is-a-beautiful-font-for-printed-quotes/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Carl Sagan&#8217;s Apple Pie</title>
		<link>http://www.wisdomandwonder.com/link/4165/carl-sagans-apple-pie</link>
		<comments>http://www.wisdomandwonder.com/link/4165/carl-sagans-apple-pie#comments</comments>
		<pubDate>Sat, 21 Nov 2009 16:38:08 +0000</pubDate>
		<dc:creator>Grant</dc:creator>
				<category><![CDATA[Link]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Science]]></category>

		<guid isPermaLink="false">http://www.wisdomandwonder.com/?p=4165</guid>
		<description><![CDATA[I heard this joke a long time ago and somehow it never gets old, especially when the person telling the joke turns things around a bit. His recipe is a classic; his sense of humor is hard to resist: (image found via Neven)]]></description>
			<content:encoded><![CDATA[<p>I heard this joke a <em>long</em> time ago and somehow it never gets old, especially when the person telling the joke turns things around a bit.</p>
<p>His recipe is a classic; his sense of humor is hard to resist:</p>
<p><a href="http://www.wisdomandwonder.com/wordpress/wp-content/uploads/2009/11/Carl-Sagans-Apple-Pie.jpg"><img src="http://www.wisdomandwonder.com/wordpress/wp-content/uploads/2009/11/Carl-Sagans-Apple-Pie-300x200.jpg" alt="Carl-Sagan&#039;s-Apple-Pie" title="Carl-Sagan&#039;s-Apple-Pie" width="300" height="200" class="aligncenter size-medium wp-image-4166" /></a></p>
<p>(image found via <a href="http://nevenmrgan.blogspot.com/2006/03/carl-sagans-apple-pie-recipe.html">Neven</a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wisdomandwonder.com/link/4165/carl-sagans-apple-pie/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

