<?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>ideonexus.com</title>
	<atom:link href="http://ideonexus.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ideonexus.com</link>
	<description></description>
	<lastBuildDate>Mon, 06 May 2013 14:49:06 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Is Web Design All About Hacking or Kludging?</title>
		<link>http://ideonexus.com/2013/05/05/is-web-design-all-about-hacking-or-kludging/</link>
		<comments>http://ideonexus.com/2013/05/05/is-web-design-all-about-hacking-or-kludging/#comments</comments>
		<pubDate>Sun, 05 May 2013 17:20:07 +0000</pubDate>
		<dc:creator>Ryan Somma</dc:creator>
				<category><![CDATA[Geeking Out]]></category>

		<guid isPermaLink="false">http://ideonexus.com/?p=10436</guid>
		<description><![CDATA[So I decided to spend the weekend redesigning/modernizing my lifetime project, a citation-management tool memexplex, because the site is old and ugly looking and I wanted to play with some of the shiny new toys in CSS: The 00s Called, They Want Their Website Design Back So hundreds googlings and SOings and two sugar-driven all-nighter&#8217;s [...]]]></description>
				<content:encoded><![CDATA[<p>So I decided to spend the weekend redesigning/modernizing my lifetime project, a citation-management tool <a href="https://github.com/ideonexus/memexplex">memexplex</a>, because the site is old and ugly looking and I wanted to play with some of the shiny new toys in CSS:</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2013/05/mxplx_old.png" border="0" width="500" height="261" alt="The 00s Called, They Want Their Website Design Back"><br />
<b>The 00s Called, They Want Their Website Design Back</b>
</div>
<p>So hundreds googlings and SOings and two sugar-driven all-nighter&#8217;s later, I&#8217;ve got the new &#8220;<a href="http://www.w3schools.com/tags/att_input_placeholder.asp">placeholder</a>&#8221; tags in my inputs, nifty-gradient backgrounds in my divs, my inputs are modern-ish looking, and my checkboxes, buttons, and selects are all replaced with images. Yay!</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2013/05/mxplx_new.png" border="0" width="500" height="286" alt="Shiny New Website"><br />
<b>Shiny New Website</b>
</div>
<p><span id="more-10436"></span><br />
It&#8217;s nothing special. I&#8217;m not a web designer. I tried to become one in the 90s, but years of working UI only drilled into my head that I have awful awful awful aesthetic taste. I&#8217;m much happier immersed in code, but UIs are something we still have to deal with regularly and this little design sprint reminded me of why it&#8217;s such a bother.</p>
<p>Web design requires lots of hacking. CSS has come a very long way and isn&#8217;t anywhere near the agony to use that it once was, but the biggest difference between UI development and backend development is still the lack of control. On the backend, we have total control over everything. We know our database, our chosen language, and local environment. When developing a front end for the general public, you have no idea what the user is using to look at your site.</p>
<p>That doesn&#8217;t just mean old browsers, but new ones as well. I once lost a fantastic job opportunity because the interviewer looked at a site in my portfolio with the then-brand-new IE6 and it was completely broken. So UI designers aren&#8217;t just trying to build sites that degrade gracefully into old browsers, but having to keep up with the latest additions as well.</p>
<p>My weekend hackathon got inspired by this <a href="http://kaylarose.github.io/Glowform/">glowing form border</a>, which I ultimately didn&#8217;t use, but did apply some gradient backgrounds and animated highlighting from the demo. Because the gradient backgrounds in the demo don&#8217;t work in IE, I found a <a href="http://ie.microsoft.com/testdrive/graphics/cssgradientbackgroundmaker/">css gradient background generator</a> to produce gradient backgrounds (ironically hosted by Microsoft). </p>
<div class="cssGradientBackgroundExample"></div>
<style>
.cssGradientBackgroundExample
{
width:100%;
height:200px;
/* IE10 Consumer Preview */ 
background-image: -ms-radial-gradient(center, circle farthest-corner, #FFFFFF 0%, #96067E 100%);
/* Mozilla Firefox */ 
background-image: -moz-radial-gradient(center, circle farthest-corner, #FFFFFF 0%, #96067E 100%);
/* Opera */ 
background-image: -o-radial-gradient(center, circle farthest-corner, #FFFFFF 0%, #96067E 100%);
/* Webkit (Safari/Chrome 10) */ 
background-image: -webkit-gradient(radial, center center, 0, center center, 465, color-stop(0, #FFFFFF), color-stop(1, #96067E));
/* Webkit (Chrome 11+) */ 
background-image: -webkit-radial-gradient(center, circle farthest-corner, #FFFFFF 0%, #96067E 100%);
/* W3C Markup, IE10 Release Preview */ 
background-image: radial-gradient(circle farthest-corner at center, #FFFFFF 0%, #96067E 100%);
}
</style>
<p>Totally awesome right? But check out the CSS output:</p>
<p><code><br />
/* IE10 Consumer Preview */<br />
background-image: -ms-radial-gradient(center, circle farthest-corner, #FFFFFF 0%, #96067E 100%);</p>
<p>/* Mozilla Firefox */<br />
background-image: -moz-radial-gradient(center, circle farthest-corner, #FFFFFF 0%, #96067E 100%);</p>
<p>/* Opera */<br />
background-image: -o-radial-gradient(center, circle farthest-corner, #FFFFFF 0%, #96067E 100%);</p>
<p>/* Webkit (Safari/Chrome 10) */<br />
background-image: -webkit-gradient(radial, center center, 0, center center, 465, color-stop(0, #FFFFFF), color-stop(1, #96067E));</p>
<p>/* Webkit (Chrome 11+) */<br />
background-image: -webkit-radial-gradient(center, circle farthest-corner, #FFFFFF 0%, #96067E 100%);</p>
<p>/* W3C Markup, IE10 Release Preview */<br />
background-image: radial-gradient(circle farthest-corner at center, #FFFFFF 0%, #96067E 100%);<br />
</code></p>
<p>Six definitions for six different browsers, sharply illustrating why web design is still such an incredibly time-consuming headache. This isn&#8217;t a hack, this is just freakin&#8217; fugly, but state of things in the wild wild web make it a necessary evil.</p>
<p>Which raises the question in my mind: are design work tricks hacks or kludges? &#8220;Hack&#8221; implies an elegant solution, while &#8220;Kludge&#8221; suggests a patch or workaround. Into which category do all the little CSS, JavaScript, and HTML tricks used in design work fall?</p>
<p>Take this example for the Internet Explorer <a href="http://jonathanstegall.com/2009/01/15/ie-z-index-bug-with-css-dropdown-menu/">z-index bug</a>, where select input show through absolutely-positioned elements placed above them. So, if I have a pop-up div, and there&#8217;s a dropdown box beneath it, the box will come through like so:</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2013/05/DropDownCheckList_NeedForShim.gif" border="0" width="319" height="192" alt="Selectors Coming Through a Div"><br />
<b>Selectors Coming Through a Div</b>
</div>
<p>This bug wasn&#8217;t fixed until IE8, so it&#8217;s still out there in the wild. There are two solutions, one is to use JavaScript to hide all selectors in the page before showing the div. The other, JavaScript-less solution is to put an iframe beneath the div and make it visible at the same time to hide the content below. I can&#8217;t describe either of these solutions as &#8220;elegant;&#8221; however, they get the job done and are a response to an inelegant variable in the environment: an IE bug.</p>
<p>Here&#8217;s one specific to this weekend&#8217;s work. So I&#8217;ve got these list evenly-spaced (fixed min-height) items with various groups of information in each div, and I want them displaying uniformly. So I positioned the folksonomies (fancy word for &#8220;tags&#8221;) absolutely at the bottom of the div (rather than float, because fixed min-height), and the grouping of related object counts absolutely to the right.</p>
<p><code><br />
.folksonomies<br />
{<br />
	position:absolute;<br />
	bottom:4px;<br />
	width:70%;<br />
}</p>
<p>.objectcounts<br />
{<br />
	position:absolute;<br />
	bottom:4px;<br />
	right:4px;<br />
}<br />
</code></p>
<p>To produce the following effect (divs highlighted in red):</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2013/05/folksonomies.png" border="0" width="500" height="63" alt="Tag Positioning">
</div>
<p>If only it were so easy. Because I&#8217;ve positioned these two elements absolutely, they are now free to overlap with other elements in the div. So when my application outputs an object with too many folksonomies/tags to fit on one line, it pushes the folksonomies div up into the description text like so:</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2013/05/folksonomies_overlap.png" border="0" width="472" height="111" alt="Tag Positioning overlap">
</div>
<p>I found lots of recommended solutions to this, like <a href="http://stackoverflow.com/questions/12357242/stop-absolutely-positioned-div-from-overlapping-text">adding clearfixes to the div</a>, which wouldn&#8217;t work because I don&#8217;t know how many line breaks I need to add to account for the variable number of tags and characters in them. What I ended up doing was outputting the folksonomies content to the browser a second time, positioned normally, and then hiding it. This preserves an empty space with the same height as the visible element:</p>
<p><code><br />
.folksonomiesHeight<br />
{<br />
	width:70%;<br />
	visibility:hidden;<br />
}<br />
</code></p>
<p>On the &#8220;hack&#8221; end of the spectrum, I&#8217;ve now got evenly-heighted list items with sub-elements that are positioned identically in each row. Pushing this to the &#8220;kludge&#8221; side of the spectrum, I&#8217;m hiding (duplicated) semantic content on the page. I know Google and other search engines <a href="https://groups.google.com/forum/?fromgroups=#!topic/Google_Webmaster_Help-Indexing/_ZGoCZflMbI">frown upon this</a>. I&#8217;m leaning toward this being a kludge, but one that I&#8217;m a little proud of.</p>
<p>What do you think? How do you define &#8220;elegance&#8221; under-the-hood in web design? Is it inelegant to resort to JavaScript tricks? What about duplicating efforts for cross-browser support? </p>
<p><a href="https://news.ycombinator.com/item?id=5659289">Discussion at Hackernews.</a></p>
<hr width="90%" />
<p>If you&#8217;re curious, <a href="http://mxplx.com/">here&#8217;s the site in action</a>. It&#8217;s only really been tested in Chrome, with better cross-browser support pushed onto my future todo list. I&#8217;ve reopened the site for anyone to open an account, but it is really only intended for my personal use, so suggestions are welcomed, but please set up your own instance if a total lack of user-support is going to be a problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://ideonexus.com/2013/05/05/is-web-design-all-about-hacking-or-kludging/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Article on Gun Control Published in The Humanist</title>
		<link>http://ideonexus.com/2013/02/25/article-on-gun-control-published-in-the-humanist/</link>
		<comments>http://ideonexus.com/2013/02/25/article-on-gun-control-published-in-the-humanist/#comments</comments>
		<pubDate>Mon, 25 Feb 2013 17:41:53 +0000</pubDate>
		<dc:creator>Ryan Somma</dc:creator>
				<category><![CDATA[Enlightenment Warrior]]></category>

		<guid isPermaLink="false">http://ideonexus.com/?p=10420</guid>
		<description><![CDATA[March/April Humanist My article Never a Magic Bullet: The Personal and Public Dimensions of Gun Ownership and Gun Violence is appearing in the March/April edition of the Humanist. Much of the article is an appeal for rational, civil discourse on the subject, but I did have one dimension where I have a strong opinion. Not [...]]]></description>
				<content:encoded><![CDATA[<div style="float:right;">
<a href="http://thehumanist.org/march-april-2013/"><img src="http://ideonexus.com/wp-content/uploads/2013/02/IMG_6540.jpg" border="0" width="250" height="326" alt="March/April Humanist"></a><br />
<b>March/April <em>Humanist</em></b>
</div>
<p>My article <a href="http://thehumanist.org/march-april-2013/never-a-magic-bullet/">Never a Magic Bullet: The Personal and Public Dimensions of Gun Ownership and Gun Violence</a> is appearing in the <a href="http://thehumanist.org/march-april-2013/">March/April edition of <em>the Humanist</em></a>. Much of the article is an appeal for rational, civil discourse on the subject, but I did have one dimension where I have a strong opinion. Not surprisingly, it has to do with scientific integrity:</p>
<blockquote><p>
In 1996, Congress stripped the CDC’s National Center for Injury Prevention and Control of funding for research that “may be used to advocate or promote gun control.” In 2010 the NRA successfully lobbied to have restrictions placed on the ability of doctors to gather data about patient gun use into the Affordable Health Care for America Act. In 2012 the National Institutes of Health (NIH) was prohibited from spending money “to advocate or promote gun control.” Most egregiously, a 2011 bill signed into law by Florida Gov. Rick Scott made it illegal for doctors in the state to ask patients if they own guns, preventing even pediatricians from asking parents if their guns are stored safely away from children.
</p></blockquote>
<p><span id="more-10420"></span><br />
<em>The Humanist</em> website doesn&#8217;t link to sources, so I thought I would post my references here in the interest of transparency and for anyone seeking deeper information on anything:</p>
<div align="center">
<a href="http://thehumanist.org/march-april-2013/"><img src="http://ideonexus.com/wp-content/uploads/2013/02/spread01.png" border="0" width="550" height="360" alt="Never a Magic Bullet"></a><br />
<b>Never a Magic Bullet</b>
</div>
<h2>References</h2>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Sandy_Hook_Elementary_School_shooting">Details of the Sany Hook shooting</a>: Wikipedia.org (2013), Sandy Hook Elementary School Shooting.</li>
<li><a href="http://www.theblaze.com/stories/2012/12/14/conn-elementary-school-shooting-tragically-makes-list-of-worst-shooting-sprees-in-u-s-history/">List of recent mass shootings</a>: Adams, Becket (2012), The List of the Deadliest U.S. Shootings &#8211; and Where This Latest One Now Ranks, TheBlaze.com.</li>
<li><a href="http://www.gallup.com/poll/150353/self-reported-gun-ownership-highest-1993.aspx">40 and 47 percent of households have a gun</a>: Saad, Lydia (2011), Self-Reported Gun Ownership in U.S. Is Highest Since 1993, Gallup Politics.</li>
<li><a href="http://www.npr.org/2013/01/11/169172198/nra-head-registry-of-gun-owners-would-be-very-dangerous">FBI: 2011 728 murders due to beats VS 8,583 due to firearms</a>: Block, Melissa (2013), NRA Head: Registry Of Gun Owners Would Be Very Dangerous, NPR.org.</li>
<li><a href="http://www.unodc.org/unodc/en/data-and-analysis/homicide.html">Mexico firearms murder rate</a>: &#8220;2011 Global Study on Homicide&#8221;. United Nations Office on Drugs and Crime (UNODC). Retrieved 2012-12-18.</li>
<li><a href="http://www.washingtonpost.com/politics/nra-fingerprints-in-landmark-health-care-law/2012/12/30/e6018656-5066-11e2-950a-7863a013264b_story.html?hpid=z3">NRA pushed to prevent doctors from gathering data about patient gun use in Affordable Health Care Act</a>: Wallsten, Peter and Hamburger, Tom (2012), NRA fingerprints in landmark health-care law, Washington Post.</li>
<li><a href="http://www.hsph.harvard.edu/hicrc/firearms-research/">Harvard Injury Control Research Center: Firearms Research</a>.</li>
<li><a href="http://www.cdc.gov/mmwr/preview/mmwrhtml/rr5214a2.htm">CDC on effectiveness of the Assault Weapons Ban</a>: First Reports Evaluating the Effectiveness of Strategies for Preventing Violence: Firearms Laws, CDC, 3 Oct 2003.</li>
<li><a href="http://reason.com/archives/1997/04/01/public-health-pot-shots/singlepage">Congress stripped CDC of funding for research on gun-related injuries</a>: Don Kates, Henry E. Schaffer &#038; William B. Waters IV (1997), Public Health Pot Shots: How the CDC succumbed to the Gun &#8220;Epidemic&#8221;, Reason, April 1997.</li>
<li><a href="http://grants.nih.gov/grants/guide/notice-files/not-od-12-034.html">NIH Spending restrictions</a>: National Institutes of Health (2012), Notice of Legislative Mandates in Effect for FY2012.</li>
<li><a href="http://www.npr.org/2011/05/07/136063523/florida-bill-could-muzzle-doctors-on-gun-safety">Rick Scott Florida doctore/gun bill</a>: Allen, Gret (2011), Florida Bill Could Muzzle Doctors On Gun Safety, NPR.org.</li>
<li><a href="http://www.ncbi.nlm.nih.gov/pubmed">PubMed &#8220;gun violence&#8221; (in quotes) search results</a>.</li>
<li><a href="http://bjs.ojp.usdoj.gov/content/glance/tables/viortrdtab.cfm">Violent Crime Trends</a>: Bureau of Justic Statistics (2012), Key Facts At A Glance: Violent crime trends.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://ideonexus.com/2013/02/25/article-on-gun-control-published-in-the-humanist/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>In Defense of &#8220;The Big Bang Theory&#8221;</title>
		<link>http://ideonexus.com/2013/02/04/in-defense-of-the-big-bang-theory/</link>
		<comments>http://ideonexus.com/2013/02/04/in-defense-of-the-big-bang-theory/#comments</comments>
		<pubDate>Mon, 04 Feb 2013 05:00:51 +0000</pubDate>
		<dc:creator>Ryan Somma</dc:creator>
				<category><![CDATA[Geeking Out]]></category>

		<guid isPermaLink="false">http://ideonexus.com/?p=10390</guid>
		<description><![CDATA[Sheldon Fashion I love love love The Big Bang Theory (BBT). I love the intelligent science references, the highly-debatable geek-culture references, and the cameos only a nerd would enjoy. Most of all, the portrayal of idiosyncratic individuals who bare an incredible resemblance to people I&#8217;ve had to deal with for decades working in IT and [...]]]></description>
				<content:encoded><![CDATA[<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2013/02/sheldonshirts.jpg" border="0" width="500" height="690" alt="Sheldon Fashion"><br />
<b>Sheldon Fashion</b>
</div>
<p>I love love love <a href="http://www.cbs.com/shows/big_bang_theory/">The Big Bang Theory (BBT)</a>. I love the intelligent science references, the highly-debatable geek-culture references, and the cameos only a nerd would enjoy. Most of all, the portrayal of idiosyncratic individuals who bare an incredible resemblance to people I&#8217;ve had to deal with for decades working in IT and hanging out at Cons and Comic shops.</p>
<p>So it comes as a shock to me that <a href="https://www.google.com/search?q=big+bang+theory+sucks&#038;oq=big+bang+theory+sucks&#038;aqs=chrome.0.57j60j64j65j61l2.4512&#038;sourceid=chrome&#038;ie=UTF-8">there is a lot of hate for BBT</a> in geek culture. Many geeks seem to loathe the way the show portrays geek mannerisms, habits, and argue that the show invites normal people to laugh at geeks and encourages belittling them. The show is simply a televised extension of the bullying we had to endure in high school. Geeks see it as validating that abuse through the reactions of the &#8220;hot girl&#8221; Penny, who lives across the hall from the geeks and whose reactions to the geeks are a source of amusement for the audience.</p>
<p>I don&#8217;t see it, and I&#8217;m honestly offended at some of the opinions and parochialism being exhibited by some of my fellow geeks. Defending an opinion isn&#8217;t like defending a scientific position, I can&#8217;t cite journal papers and research to back it up, but I can use logic and anecdotal evidence. So here it goes&#8230;<br />
<span id="more-10390"></span></p>
<h2>My Nerd and Geek Cred</h2>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2013/02/nerdgeekdweebvenn.jpg" border="0" width="434" height="407" alt="Venn Diagram of Nerd, Geek, Dweeb Characteristics">
</div>
<div style="float:right;">
<img src="http://ideonexus.com/wp-content/uploads/2013/02/Halloween2004.jpg" border="0" width="200" height="245" alt="Me">
</div>
<p>Before we get into the criticisms of the show, I need to take a moment to address my qualifications and my definitions of the terms &#8220;nerd&#8221; and &#8220;geek,&#8221; of which I consider myself both. But these tendencies, for myself and others, fall along a spectrum. It&#8217;s like we need a <a href="http://en.wikipedia.org/wiki/Kinsey_scale">Kinsey homosexuality scale</a>, but for individuals along the nerd-geek spectrum.</p>
<p>What&#8217;s the difference? To me, the term <em>nerd</em> refers to the intellectual, academic bent. Straight-A students, Ph.D candidates, engineers, scientists, computer programmers and other professionally-focused individuals rank high on their nerdiness. <em>Geek</em> refers to the gamers, comic-book readers, the <a href="http://en.wikipedia.org/wiki/Doctor_Who_fandom">Whovians</a>, <a href="http://en.wikipedia.org/wiki/Cosplay">cosplayers</a>, <a href="http://en.wikipedia.org/wiki/Furry_fandom">furries</a>, <a href="http://en.wikipedia.org/wiki/Live_action_role-playing_game">LARPers</a>, and other individuals obsessively interested in knowing all the trivia of a fictional mythos. The difference between nerd and geek is the difference between left and right brain, type A and B personalities, empirical and artsy, conservative and liberal. It&#8217;s the difference between CP Snow&#8217;s <a href="http://en.wikipedia.org/wiki/The_Two_Cultures">Two Cultures</a>. Yeah, it&#8217;s a false dichotomy, but it’s a useful one.</p>
<p>I tend to straddle both worlds. On my nerd side, I&#8217;ve worked in Information Technology for 15 years, serving as Senior Software Developer at two organizations, into science and technology news, was fourth-chair on the high school chess club, and a member of <a href="http://ideonexus.com/2004/11/12/i-is-mensafied/">Mensa</a> through hard work and practice rather than natural talent. On my geek side, I grew up with <a href="http://en.wikipedia.org/wiki/Editions_of_Dungeons_%26_Dragons#Advanced_Dungeons_.26_Dragons">Advanced Dungeons &#038; Dragons (AD&#038;D)</a>, <a href="http://en.wikipedia.org/wiki/Star_Frontiers">Star Frontiers</a>, <a href="http://en.wikipedia.org/wiki/Gamma_World">Gamma World</a>, and <a href="http://en.wikipedia.org/wiki/Vampire:_The_Masquerade">Vampire</a>. I devoured books by <a href="http://en.wikipedia.org/wiki/Douglas_Adams">Douglas Adams</a>, <a href="http://en.wikipedia.org/wiki/Alan_Dean_Foster">Alan Dean Foster</a>, <a href="http://en.wikipedia.org/wiki/Terry_Brooks">Terry Brooks</a>, and <a href="http://en.wikipedia.org/wiki/Arthur_C._Clarke">Arthur C. Clarke</a>, turning to <a href="http://en.wikipedia.org/wiki/Isaac_Asimov">Isaac Asimov</a>, <a href="http://en.wikipedia.org/wiki/William_Gibson">William Gibson</a>, <a href="http://en.wikipedia.org/wiki/David_Brin">David Brin</a>, <a href="http://en.wikipedia.org/wiki/Greg_Bear">Greg Bear</a>, and <a href="http://en.wikipedia.org/wiki/Vernor_Vinge">Vernor Vinge</a> as an adult.</p>
<div align="center">
<a href="http://xkcd.com"><img src="http://ideonexus.com/wp-content/uploads/2013/02/nerdgeekvenn.jpg" border="0" width="406" height="307" alt="Venn of People with Strong Opinions About Nerds and Geeks"></a><br />
Credit: <a href="http://xkcd.com">xkcd</a>
</div>
<p>For years I volunteered at a comic and gaming shop. There I setup a computer lab for <a href="http://en.wikipedia.org/wiki/LAN_party">LAN tournaments</a>, and, when that failed, I continued to volunteer at watching the shop because I enjoyed being there so much. I ran and judged <a href="http://www.wizards.com/Magic/TCG/Events.aspx?x=events/magic/fnm">Friday Night Magic (FNM)</a> tournaments for years because the energy and enthusiasm of the players was so addictive. My geek side is pure fun and entertainment, but my nerd side is what I&#8217;m trying to do <strike>productively</strike> professionally with my life.</p>
<p>So these are my qualifications. Let&#8217;s move on to the problems many have with BBT.</p>
<h2>Criticisms of BBT</h2>
<p>These are the most common complaints I hear about BBT, and I&#8217;m going to work from the most valid to the most invalid to one complaint that is outright offensive and should be condemned every time it is brought up.</p>
<h3>Unrealistic Characters</h3>
<p>Okay. I&#8217;ll give you half credit for this one. Yes. The characters on the show are too nerdy to be that geeky. You can&#8217;t hold a job as published academic <em>and</em> have the time to play MMORPGs, obsess over movies, comics, cosplay, and hang out at comic shops all the time. As I mentioned above, when I&#8217;m geeking out, my nerdy starts to slip. I can&#8217;t maintain my ability to write elegant code and burn through video games, comics, and science fiction books at the same time. There&#8217;s gotta be a balance.</p>
<p>But the same criticism applies to <em>Sex and the City</em>, where the main character spends all her time on <a href="http://www.huffingtonpost.com/uloop/carrie-bradshaw_b_1351195.html">sex or drama or shoes or whatever the show is about</a>, because I&#8217;m pretty damn sure it&#8217;s not about her writing, despite the fact that writing is what a writer does, because <em>that would be boring</em>. Or how the characters on the show <em>Friends</em> never seem to be at the fulltime jobs they would need to maintain their large New York apartments. At least BBT spends time showing the characters in their labs and offices. Sure they are supergeeks and supernerds for being able to hold down such demanding jobs and play D&#038;D, <a href="http://en.wikipedia.org/wiki/Massively_multiplayer_online_role-playing_game">MMORPGs</a>, or enjoy <em>Star Trek</em> marathons, but we watch television to <em>escape</em> the mundane reality that we can’t do everything in life, but we can vicariously enjoy the BBT gang doing it all.</p>
<h3>The Laugh Track</h3>
<p><iframe width="420" height="315" src="http://www.youtube.com/embed/0IhzjuLr2Uk" frameborder="0" allowfullscreen></iframe></p>
<div align="center">
BBT without Laugh Track<br/><br />
(The reason it&#8217;s not funny is because the comedic timing is altered. So these videos really don&#8217;t demonstrate anything, despite there being hundreds of them on the YouTubes.)
</div>
<p>The show is filmed in front of a live audience. It&#8217;s not surprising that southern Californians, who I don&#8217;t stereotype as being very geeky, might laugh at inappropriate times or at the stereotype of geeks, but I could be wrong. They could be laughing for the same reason my wife and I like to see comedies in the theater on opening weekends, even stupid ones, because you pick up the energy of the crowd and even not-so-funny things quickly escalate to hilarity because you are in a room full of laughter. Yes, there&#8217;s something Pavlovian about it, and if it makes you feel superior to point that out, then that response demonstrates an addiction to feeling superior and that is Pavolovian as well. Bazinga. As UCLA physicist Dr. David Saltzberg explains from watching the process of taping the show, <a href="http://www.symmetrymagazine.org/article/march-2012/the-brain-behind-tvs-the-big-bang-theory">it&#8217;s very scientific</a>:</p>
<blockquote><p>
First of all, they tape in front of a live audience and they make changes based on whether the comedy works or not—whether people laugh. So I like to see which cut they went with. That&#8217;s kind of an interesting thing. Comedy is an empirical science. You can have a lot of theories about whether something&#8217;s funny or not, but in the end either the audience laughs or they don&#8217;t. So you can test your theory very quickly—quicker than the theorists get to do.
</p></blockquote>
<p>So let&#8217;s acknowledge the live audience as a useful tool to get viewers at home energized and put it aside.</p>
<h3>The Actors Aren’t Nerds</h3>
<p>So I&#8217;ve seen the amusing but uninspiring <a href="http://www.youtube.com/results?search_query=big+bang+theory+comic+con">BBT Panels at Comic-Con</a>, and smiled when the audience booed Jim Parsons (Sheldon) for not knowing what a TARDIS is. In the special features interviews, Parsons admits he <a href="http://www.npr.org/templates/story/story.php?storyId=130156625">really has to work to memorize his lines</a> because he has no idea what any of it means.</p>
<p>The only actor bringing academic credentials to the table is Mayim Bialik (Amy), who has a Ph.D. in Neuroscience, but <a href="http://www.wired.com/geekmom/2012/05/mayim-bialik-disappoints/">who is also anti-vaccine</a>, and that&#8217;s disturbing. I&#8217;m troubled with some of her anti-science positions, but then her offenses are fairly mild <a href="http://www.newyorker.com/reporting/2013/02/04/130204fa_fact_specter?currentPage=all">compared with Dr. Oz</a>, who could be the Carl Sagan of medicine if we would stop promoting dangerous unproven alternative medicines. I truly wish people would learn to go to the journals for their science and learn to take a critical eye to the research methodologies used in the peer-reviewed papers, but inadequate educational standards and a lack of open-access makes this just a wishful thinking. That beings said, I haven&#8217;t seen any unscientific opinions make it into the show.</p>
<p>So let&#8217;s accept that actors are meatpuppets who get far far too much admiration for their jobs than they deserve and move on.</p>
<h3>The Sexism</h3>
<p>io9 <a href="http://io9.com/5973907/the-big-bang-theory-asks-the-preposterous-question-what-if-girls-went-into-a-comic-store">got really offended and snarky</a> over the fact that BBT <em>was previewing</em> an episode where the female characters venture into the Comic Shop:</p>
<blockquote><p>
&#8230;in this Thursday&#8217;s episode, the show may have gone too far as it presents the utterly ludicrous premise that a girl — several of them, in fact! — would <em>willingly go into a comic book store</em>! Silly girls! There are no clothes or make-up in there! Just boys, who are unable to function socially with members of the opposite sex, to the point that merely seeing females puts them into a catatonic stupor! Because they&#8217;re <em>nerds</em>! Ha ha!
</p></blockquote>
<p>Funny thing is, I&#8217;ve personally seen firsthand what happens in the comic shop when hot girls walk in. You should have seen the hush fall over the Saturday Yu-Gi-Oh! players, watched their jaws drop, and heard one exclamation of &#8220;Whoa!&#8221; when my future wife paid a visit to me in the shop one day. You should have seen the uncomfortable silence and shoe-staring that went on one FNM when a group of six hot girls on their way to the nightclub down the block came into our shop to interrogate me about what we were up to every Friday night. The shop owner used to joke that people thought the store was a sex shop, since he&#8217;d named it <a href="https://www.google.com/search?q=duf's+playhouse&#038;oq=duf's+playhouse&#038;aqs=chrome.0.57j62l3.2532&#038;sourceid=chrome&#038;ie=UTF-8">Duf&#8217;s Playhouse</a> and there were &#8220;nothing but ugly guys hanging out there all day.&#8221;</p>
<p>So when Amy, Bernadette, and Penny walk into the comic shop on BBT and an uncomfortable hush falls over the geeks and they stop and stare, I <em>laughed my ass off</em>. But I totally understand why most geeks wouldn&#8217;t laugh. It&#8217;s not funny if you&#8217;re one of those stunned, lonely fellows and you have no humor about yourself (ie. 25% of the geeks at the shop). I didn&#8217;t date much in high school or college, but I&#8217;ve (almost) always been able to keep up a sense of humor about it.</p>
<p>This being said. Chuck Lorre, the show&#8217;s producer, is a misogynistic fratboy and I really have a hard time with the overt sexism in first few seasons of BBT&#8211;especially the Howard Wolowitz character. But the show evolved and grew more mature over the years. Howard became a sweetheart and, in one very touching episode, renounced his lecherous past and has abstained from crass jokes since. The show brought two very strong and intelligent female characters on permanently, and even started giving them their own storylines and side plots.</p>
<p>The show is actually much less sexist now in a lot of ways than actual nerd and geek culture, I&#8217;m sorry to say. When I was young, there were no, none, zero, zip, nada girls into comics and RPGs, but while I&#8217;m happy to say that&#8217;s changed with women getting into video games, anime, and even MtG, there is a lot of backlash from male geeks. Nowhere is this geek territorialism more appalling than in the <a href="http://knowyourmeme.com/memes/idiot-nerd-girl">idiot nerd girl</a> meme:</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2013/02/idiotnerdgirl.png" border="0" width="532" height="530" alt="Idiot Nerd Girl"><br />
<b>Idiot Nerd Girl</b>
</div>
<p>Not only is this meme offensive for the way it stereotypes and ostracizes, but the geeks making this stuff up are really putting their own ignorance on display with their tunnel-vision understanding of geek culture that reduces the vast world of geekdom down to their personal pet obsession (<em>Dragonball-Z</em>, <em>WoW</em>, <em>X-Box Live</em>). I don&#8217;t mind ignorance, and I love to share the history of science fiction memes and old-school anime with younger geeks, but the guys making up these offensively stupid images are the ones I have an uncontrollable need to publicly humiliate for their lack of depth. </p>
<p><b>Somma&#8217;s Rule of Knowledge:</b> <em>Public exclamations of shock at the ignorance of an individual concerning a piece of knowledge is actually a public display of personal ignorance of the vastness of human knowledge.</em> So if you think less of someone for not getting your <a href="http://en.wikipedia.org/wiki/Doctor_Who_fandom">Whovian</a>, <a href="http://en.wikipedia.org/wiki/Trekkie">Trekkie</a>, <a href="http://en.wikipedia.org/wiki/World_of_Warcraft">WoW</a>, <a href="http://en.wikipedia.org/wiki/Star_Wars">Star Wars</a>, <a href="http://en.wikipedia.org/wiki/LotR">LotR</a>, <a href="http://en.wikipedia.org/wiki/Mass_Effect">Mass Effect</a>, <a href="http://en.wikipedia.org/wiki/Starcraft">Starcraft</a>, <a href="http://en.wikipedia.org/wiki/Dragonball">Dragonball</a>, <a href="http://en.wikipedia.org/wiki/The_Walking_Dead_(comic_book)">Walking Dead</a>, <a href="http://en.wikipedia.org/wiki/A_Game_of_Thrones">Game of Thrones</a>, <a href="http://en.wikipedia.org/wiki/Foundation_series">Foundation</a>, <a href="http://en.wikipedia.org/wiki/X-men">X-men</a>, <a href="http://en.wikipedia.org/wiki/Batman">Batman</a>, <a href="http://en.wikipedia.org/wiki/Hulk_(comics)">Hulk</a>, <a href="http://en.wikipedia.org/wiki/Hellboy">Hellboy</a>, <a href="">D&#038;D</a>, <a href="http://en.wikipedia.org/wiki/Wheel_of_Time">Wheel of Time</a>, <a href="http://en.wikipedia.org/wiki/Pathfinder_Roleplaying_Game">Pathfinder</a>, <a href="http://en.wikipedia.org/wiki/Hitchhiker_guide">Hitchhiker&#8217;s</a>, <a href="http://en.wikipedia.org/wiki/Portal_(video_game)">Portal</a>, <a href="http://en.wikipedia.org/wiki/The_Legend_of_Zelda">Zelda</a>, <a href="http://en.wikipedia.org/wiki/Warhammer_40,000">Warhammer</a>, <a href="http://en.wikipedia.org/wiki/Vampire:_The_Masquerade">Vampire</a>, <a href="http://en.wikipedia.org/wiki/Red_vs_Blue">Red vs Blue</a>, <a href="http://en.wikipedia.org/wiki/Akira_(manga)">Akira</a>, <a href="http://en.wikipedia.org/wiki/Star_Frontiers">Star Frontiers</a>, <a href="http://en.wikipedia.org/wiki/MST3K">MST3K</a>, <a href="http://en.wikipedia.org/wiki/Stargate">Stargate</a>, <a href="http://en.wikipedia.org/wiki/Macross">Macross</a>, <a href="http://en.wikipedia.org/wiki/Farscape">Farscape</a>, or other reference, then <b>you have no comprehension of the vast scope of geek culture.</b> </p>
<p>Q.E. to the mother-#$%&#038;in&#8217; D.! </p>
<p>HANG YOUR HEAD IN SHAME!!!</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2013/02/idiotnerdgirlresponse.png" border="0" width="531" height="354" alt="Idiot Nerd Girl Response"><br />
<b>Idiot Nerd Girl Response</b>
</div>
<p>So kudos to BBT for letting girls into the clubhouse</p>
<h3>Ridiculing Nerds/Geeks</h3>
<p>Sam Lowry of <em>Discover Magazine</em> blog <em>Science Not Fiction</em> has a post <a href="http://blogs.discovermagazine.com/sciencenotfiction/2009/02/03/is-big-bang-theory-bad-for-science/#.UQ1rY6XC0vk">lamenting the sad portrayal of scientists</a> on BBT:</p>
<blockquote><p>
Three of the four main characters are scientists with limited romantic prospects.  Howard lives with his mother and inhabits an imaginary world where his Beatles haircut makes him irresistible to women. Raj finds himself unable to speak when the nerds’ sexy neighbor is in the apartment. Sheldon apparently has a sitcom version of Asperger’s Syndrome.
</p></blockquote>
<p>He goes on to say these negative portrayals reinforce stereotypes of nerds that dissuade kids from going into the sciences. I&#8217;m sure this is true to a degree, and that&#8217;s unfortunate, but then I read the comments in response to the criticisms and I find lots and lots of scientists and engineers like myself who find the show hilarious and really appreciate the technobabble that the writers took the time to make comprehensible to the nerds watching the show.</p>
<p>I&#8217;ve also seen comments on several threads comparing BBT to <a href="http://en.wikipedia.org/wiki/Amos_'n'_Andy">Amos and Andy</a>, in the way it stereotypes and demeans nerds and geeks. This is incredibly offensive to African Americans. Think about it. These people are equating the act of making fun of someone who&#8217;s quirky and occasionally bullied to making fun of someone who doesn&#8217;t have the right to vote or could be lynched for disrespecting the wrong person. Don&#8217;t ever compare the (very real) bullying of nerds and geeks to the total systematic oppression of a group of people based on their skin color.</p>
<p>BBT is to geeks what <em>Good Times</em> or <em>Jeffersons</em> was to African Americans, or <em>Queer Eye for the Straight Guy</em> for homosexuals, or <em>Seinfeld</em> for Jews. BBT makes geeks and nerds a little more <em>accessible</em> to the mainstream public. It&#8217;s a gateway show.</p>
<p>And geeks need that. We are fraking weird. I&#8217;m keenly familiar with the uncomfortable feeling of being cornered in a comic shop by a male 28-year-old <em>Sailor Moon</em> fanatic who insists on doing his impression of every single one of the Sailor shouts for me. I&#8217;ve spent <em>entire days</em> continually trying to politely excuse myself from a conversation where a MtG geek or Dragonball fan won&#8217;t stop talking about their interest despite the fact that <em>I have no idea what they&#8217;re talking about</em> and will even tell them so. I think it&#8217;s preferable for people to feel comfortable laughing at that than to react with fear, which some people do.</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2013/02/sports.jpg" border="0" width="550" height="391" alt="Sports">
</div>
<p>An example of such fear is a bookstore owner I was talking to about science fiction. She told me her son loved to collect <a href="http://en.wikipedia.org/wiki/Yu-Gi-Oh!">Yu-Gi-Oh!</a> cards. When I told her she should bring her son out to the weekly Saturday Yu-Gi-Oh! tournament, where he could meet other fans of the game and make some friends, she lamented that she would love to, &#8220;But there are some older men at that shop too. There&#8217;s something really creepy about a man in his sixties playing children&#8217;s games.&#8221;</p>
<p>I didn&#8217;t know how to respond at the time, but if I had it to do over, I would have told her that man is named Pat, and Pat hangs out in the shop all day because he is independently wealthy from working on the year-2000 bug and wants to spend his retirement playing all sorts of games. That&#8217;s because Pat is a gamer, and he&#8217;s one of the most brilliant people I&#8217;ve ever met in my life. Your son could learn a lot from hanging out with Pat, who does come across as a Monty Python flavor of insane, but that&#8217;s just his sense of humor and you learn to love it when you get used to it. The kids at the shop freakin&#8217; love Pat, and Pat would fit in perfectly with the BBT gang.</p>
<p>In all fairness, if we are to take a critical eye to BBT&#8217;s portrayal of nerds and geeks, then we also need to look at how the show portrays &#8220;norms&#8221; like Leonard&#8217;s love-interest Penny. The show had a great time with one of her boyfriends, Zack, an attractive, well-meaning man, who is also a total airhead. The quartet of nerds made fun of him endlessly right to his face with <a href="http://www.youtube.com/watch?NR=1&#038;v=VK-b1CtIATw">jokes that went over his head</a> (There&#8217;s also a great opening bit where the gang <a href="http://www.youtube.com/watch?v=-e5CtbbZL-k">reflects lasers off mirrors placed on the Moon</a> and Zack gets freaked out that science might destroy it (The Moon.)). </p>
<p>Then there&#8217;s Penny herself. A lot of people argue the show is making fun of nerds because we are supposed to identify with her character and share her reaction to their weirdness. This ignores the fact that Penny, while attractive, isn&#8217;t a role model. She&#8217;s ditzy, underemployed, promiscuous, drinks too much, and is superficial. If audience members who identify with her are laughing at me, then, when I watch Penny, <em>I am laughing at them</em>. Take this exchange as an example:</p>
<blockquote><p>
<b>Penny:</b> I&#8217;m a Sagittarius, which probably tells you way more than you need to know.</p>
<p><b>Sheldon:</b> Yes, it tells us that you participate in the mass cultural delusion that the sun&#8217;s apparent position relative to arbitrarily defined constellations at the time of your birth somehow affects your personality.</p>
<p><b>Penny:</b> Participate in the what?
</p></blockquote>
<p>Or consider Amy&#8217;s jab at Penny in comparing her to Leonard&#8217;s new girlfriend, &#8220;Granted, Penny, your secondary sexual characteristics are reasonably bodacious, but Priya is highly educated, she&#8217;s an accomplished professional, and she comes from the culture that literally wrote the book on neat ways to have sex. Whereas you on the other hand are a community college dropout who comes from the culture that wrote the book on tipping cows.&#8221;</p>
<p>Yeah. This is a show that helps stupid people laugh at nerds and geeks. &lt;sarcasm&gt;RIGHT.&lt;/sarcasm&gt;</p>
<h3>Making fun of &#8220;Special Needs&#8221; People</h3>
<p>One of the most offensive criticisms of BBT is the disturbing number of people who claim that <a href="http://butmyopinionisright.tumblr.com/post/31079561065/the-problem-with-the-big-bang-theory">Sheldon is autistic</a> and the show invites us to laugh at his illness:</p>
<blockquote><p>
The way that even the three guys laugh at Sheldon seems especially cruel. Yes, he’s painted as annoying, as an inconvenience and as just plain rude, however he is also read by many as autistic. So much so that my friend who works at a school for autistic children believed he had Asperger’s Syndrome and once asked me how they got away with ridiculing a character with special needs. I explained to her that no, Sheldon is not canonically autistic and she was shocked. She told me that he was a totally accurate portrayal of someone on the autistic spectrum and had many characteristics of someone with Asperger’s – specifically the inability to recognise sarcasm or understand human emotion as well as the obsession with “his spot” and his distress when routine is changed. Sheldon is consistently positioned as someone to be laughed at. It’s made to seem ok by the fact that his friends are laughing at him too and, of course, he isn’t technically autistic he’s just almost indistinguishable from someone who is.
</p></blockquote>
<p>If you think Sheldon is autistic, then you have never met an autistic person. We had an autistic kid who hung out at our shop on Saturdays. It was tough. He would bring boxes of toys in with him to pile up on one of the tables. The slightest thing could set him off into a screaming rage fit. His mom appreciated us because we didn&#8217;t think anything of it. What&#8217;s the difference between an autistic teenager throwing a temper tantrum over forgetting one of his toys and a geek teenager throwing a temper tantrum over his 8th level dwarven barbarian getting killed in a fictional barfight? (Yes, that actually happened one night.)</p>
<p>That last comparison bit is a joke, but autism is not a laughing matter. When you argue that Sheldon is a &#8220;totally accurate portrayal of someone on the autistic spectrum,&#8221; then you have broadened the definition of autism to the point where you have rendered the word meaningless. That seriously offends me. It offends me on behalf of the mothers and fathers who are living with autistic children who are now adults and still require constant supervision, are still in diapers, or still have violent humiliating outbursts in public. Go listen to <a href="http://www.thisamericanlife.org/radio-archives/episode/317/unconditional-love?act=2#play">this account of the daily trials of two parents living with an autistic child</a>, and you&#8217;ll understand how ignorant and disrespectful it is to compare the quirky physicist on a sitcom to someone with a seriously debilitating mental illness that consumes the lives of those caring for them. </p>
<p>While he does not have autism, Sheldon certainly does seem to have a mild/more-than-mild case of <a href="http://www.ncbi.nlm.nih.gov/pubmedhealth/PMH0001926/">Obsessive Compulsive Disorder (OCD)</a>, urging him to seek out the seat in the movie theater with optimal acoustics, secure a favorite seat in the apartment, perform actions in threes, agonize over keeping his comic book collection pristine, submit Leonard to an extensive legalistic roommate contract, or maintain a &#8220;five napkin system&#8221; at lunch. I don&#8217;t know if making fun of people with OCD is okay, but the <a href="http://en.wikipedia.org/wiki/Monk_(TV_series)">TV show Monk</a>, <a href="http://www.ew.com/ew/article/0,,299731,00.html">Howard Stern</a>, and films like <a href="http://en.wikipedia.org/wiki/As_Good_as_It_Gets"><em>As Good as It Gets</em></a> have been doing so for years. </p>
<p>But people claiming Sheldon qualifies for any <a href="http://en.wikipedia.org/wiki/Diagnostic_and_Statistical_Manual_of_Mental_Disorders">Diagnostic and Statistical Manual</a> illness are missing the most important criteria for diagnosing a mental disorder: Is the individual <em>suffering</em>? Sheldon is not suffering. He is proud. He is genuinely <em>superior</em> to those around him and has no problems pointing it out. I&#8217;ve got 15 years working in Information Technology; I&#8217;ve met plenty of fully-functional, perfectly happy and incredibly irritating OCD people over the years. So I&#8217;m not laughing <b>at</b> Sheldon, I&#8217;m laughing <b>with</b> the characters who have to deal with him because I&#8217;ve been there.</p>
<h2>Why I Love BBT</h2>
<h3>The Intro</h3>
<p>My 18-month-old son <b>loves</b> this intro, and so do I. There&#8217;s just so much going on, it takes many viewings to appreciate it. I&#8217;m not a Bare Naked Ladies fan, but this song is awesome (TMBG <em>would</em> be better though, sorry):</p>
<p><iframe width="560" height="315" src="http://www.youtube.com/embed/6NpmjgA6bS0" frameborder="0" allowfullscreen></iframe></p>
<h3>The Science References and Cameos</h3>
<p>A search for scientific inaccuracies in BBT turned up this <a href="http://www.tv.com/shows/the-big-bang-theory/forums/scientific-inaccuracies-76634-2330521/">single example</a>:</p>
<blockquote><p>
I was re-watching Big Bang and noticed that on Season 3, Episode 3, The Gothowitz Deviation, they completely screwed up their reference to and use of operant conditioning. The core tools of operant conditioning, are either positive (delivered following a response), or negative (withdrawn following a response). In Big Bang theory they use the popular forms of &#8220;positive&#8221; and &#8220;negative,&#8221; as in, it&#8217;s a &#8220;positive&#8221; experience to get yummy chocolate and a &#8220;negative&#8221; experience to be electrocuted, however by the rules of operant conditioning both of these things would be positive because they add stimulus following a behavior.
</p></blockquote>
<p>True. BBT got that wrong, but thanks to <a href="http://askville.amazon.com/TV-show-Big-Bang-Theory-actual-real-physics-researchers-consultants/AnswerViewer.do?requestId=16821918">Dr. Saltzberg</a>, the show gets much much more right. Schrodinger&#8217;s Cat, Isaac Newton, Richard Feynman, Occam&#8217;s Razor, Sheldon <a href="http://www.youtube.com/watch?v=k0xgjUhEG3U">getting caught in an infinite loop</a> of his own algorithm, the list of accurate science references that provide an additional level of humor for those in the know or those willing to hit Wikipedia to get in the know goes on and on.</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2013/02/doppler.jpg" border="0" width="500" height="250" alt="Sheldon's "Doppler Effect" costume."><br />
<b>Sheldon&#8217;s &#8220;Doppler Effect&#8221; costume.</b>
</div>
<p>Then there&#8217;s the cameos. Niel DeGrasse Tyson, Stephen Hawking, Ira Flatow, and many other big names in science popularization appear on the show, humanizing science in the process. This scene making fun of popular science author Brian Greene is hilarious, puts a human face on quantum physics, and provides in-jokes for those of use immersed in science culture:</p>
<p><iframe width="560" height="315" src="http://www.youtube.com/embed/w5VVEw4ZSRI" frameborder="0" allowfullscreen></iframe></p>
<p>Another example is Sheldon&#8217;s comment to Nobel laureate George Smoot when arguing over whose name should take precedence on a research work, &#8220;You won the Nobel prize, what, three years ago? So you must deal with a whole lot of &#8220;what has Smoot done lately?&#8221; My thought is we continue my research as team, you know, Cooper-Smoot, alphabetical. When we win the Nobel Prize, you&#8217;ll be back on top.&#8221;</p>
<h3>The Jokes</h3>
<p>Here are more concrete examples of what I keep talking about. These are funny jokes, but they are only funny <b>if you understand enough of the technobabble to get the joke</b>:</p>
<p>Accurate Technobabble: &#8220;Yes! Well, I&#8217;m polarized tree sap and you&#8217;re inorganic adhesive, so whatever verbal projectile you launch in my direction it&#8217;s reflected off of me, returns on its original trajectory and adheres to you.&#8221;</p>
<p>Leonard remarks that a Tequila Sunrise is a &#8220;wonderful example of how liquids with different specific gravities interact in a cylindrical container.&#8221;</p>
<p>On Star Trek transporters: &#8220;Assuming a device could be invented, which would identify the quantum state of matter of an individual in one location and transmit that pattern to a distant location for reassembly. You would not have actually transported the individual, you would have destroyed him in one location and recreated him in another.&#8221;</p>
<blockquote><p>
<b>Wolowitz:</b> Have you tried rebooting him? <br/><br />
<b>Leonard:</b> No, I think it&#8217;s a firmware problem.
</p></blockquote>
<p>Evolutionary adaptation: &#8220;If influenza was only contagious after symptoms appear, it would have died out thousands of years ago. Somewhere between tool using and cave painting, Homo habilis would have figured out to kill the guy with the runny nose.&#8221;</p>
<p>&#8220;We have to take in nourishment, expel waste, and inhale enough oxygen to keep our cells from dying. Everything else is optional.&#8221;</p>
<p>In response to the question, &#8220;why is this letter in the trash?&#8221;: &#8220;Well, there&#8217;s always the possibility that a trash can spontaneously formed around the letter, but Occam&#8217;s Razor would suggest that someone threw it out.&#8221;</p>
<p>&#8220;I trusted you with my e-mail address, and you betrayed that trust by sending me Internet banality.&#8221;</p>
<blockquote><p>
<b>Sheldon:</b> It&#8217;s a bust of Sir Isaac Newton.<br/><br />
<b>Penny:</b> Oh sure, sure. Very Christmasy.<br/><br />
<b>Sheldon:</b> Well, excuse me, it&#8217;s much more Christmasy than anything you put on the tree.<br/><br />
<b>Leonard:</b> Here we go&#8230;<br/><br />
<b>Sheldon:</b> December 25th, 1642. Julian calendar. Sir Issac Newton is born. Jesus, however, was actually born in the summer. His birthday was moved to coincide with the traditional pagan holiday that celebrates the winter solstice with lit fires and slaughtered guts, which frankly sounds like more fun than twelve hours of Church with my mother, followed by fruit cake.
</p></blockquote>
<p>That reminds me, BBT is the only show on television that I’m aware of having an unabashed atheist as its most popular character. That’s awesome too.</p>
<h2>The Pain of Being a Geek</h2>
<p>If there is one complaint I have about BBT, is that it does make light of the fact that oftentimes <em>it&#8217;s really painfully lonely to be a geek</em>. Being a Geek means being ostracized, demeaned, and bullied, and it&#8217;s very difficult to let that go. &#8220;Geeks have scars.&#8221; as one commenter succinctly noted.</p>
<p>It seems to me that a lot of the resentment toward BBT and the new wave of nerd-girls stems from this pain. It&#8217;s not fair, many geeks reason, that people are being let into the club without paying their dues. Like Hipsters with their &#8220;I was into X before X was cool.&#8221; There&#8217;s a division between the geeks who grew up playing pencil and paper RPGs, programming C64s, BBSing, and put together model space ships, versus the new wave of geeks into the highly-commercialized anime, superhero movies, and video games with a very low entry bar to indulgence. I can understand the anger at our former bullies suddenly wanting to be geeks. People who are into &#8220;Watching movies based on comics instead of reading the comics,&#8221; as one commenter put it.</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2013/02/Monty-Python-vs-Gangnam-Style.jpg" border="0" width="364" height="600" alt="Monty Python, Gundam before Gundam">
</div>
<p>Today there are so many subcultures of geek, we are all geeks in relation to other geeks. I respect Dr. Who, but I don&#8217;t have the time to watch it. I&#8217;ve recently become obsessed with the science fiction worlds of <a href="http://masseffect.wikia.com/wiki/Mass_Effect_Wiki">Mass Effect</a>, but that&#8217;s geekery I must keep to myself. Fantasy-dorks <a href="http://ideonexus.com/2007/08/20/science-fiction-vs-fantasy/">are geeks to me</a> because science fiction is sooooo much more rewarding. I&#8217;m fairly over superhero comics, so there are some more geeks to me, but I love a select few independent, limited-run stories. In the end, however, I respect all of my fellow geeks, even if I don&#8217;t share their particular sub-genre interests.</p>
<p>I admit, I hold a bit of envy for the kids who get to watch the mainstream anime on &#8220;Toonami,&#8221; and even share their enjoyment of those cartoons in conversations with girls at school, while the only way I could get anime growing up was through an underground network of grainy, untranslated VHS bootlegs. I remember observing in my 30s that my sister&#8217;s high school friends were into anime and comic books, thinking, <em>How times have changed</em>, and wishing I could have grown up at time when I could share my geeky interests with attractive girls&#8211;but then, maybe my personality would have driven me away from anime as too mainstream, and pushed me into the new Maker culture, tinkering with arduinos, or something equally esoteric.</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2013/02/VickyRogue.jpg" border="0" width="499" height="165" alt="My wife Vicky as Rogue after letting her gray grow out."><br />
<b>My wife Vicky as Rogue after letting her gray grow out.</b>
</div>
<p>I&#8217;m very familiar with the uncomfortable furrowed-brow a woman would give me when I accidentally slipped from cool, mature Ryan who works out at the gym into excited, animated <em>Star Trek</em> fanboy Ryan. I lucked out and found a nerdy woman who loves me and is very enthusiastic about watching <em>Star Trek</em>, checking out the latest special-effects scifi movie in the theaters, or reading the occasional gem of a science fiction novel I get excited about. Introverts get their energy from <a href="http://twentytwowords.com/2012/08/29/a-simple-explanation-of-how-to-interact-with-introverts/">ideas and not people</a>, where the dating scene is all about people getting energy from people. Geeks are about ideas, so it&#8217;s very hard for them to find love.</p>
<p>BBT acknowledges that loneliness and pain, but maybe its offense is that it doesn&#8217;t take it seriously enough&#8211;and I don&#8217;t know how it could approach the subject seriously. The nerds get bullied, but I&#8217;m not laughing with the bully, I&#8217;m laughing sympathetically with the nerds because I&#8217;ve been there. The nerds are awkward with women, but I&#8217;m not laughing at their loneliness, again I&#8217;m laughing with the sympathy of someone who&#8217;s been there&#8211;and as someone who knows that <b>it gets better</b>.</p>
<p>It really does, and maybe that&#8217;s how BBT appropriately handles the very real downsides of being a nerd or geek, by showing how nerds and geeks are ultimately superior to the norms. Laugh at Sheldon all you want, his character is rolling in cash he doesn&#8217;t even need. Go ahead and laugh at Howard, but his character got to look down on you from the ISS. Laugh at all of them, but they are traveling the world and living life to the fullest. BBT portrays the fact that the nerds seriously begin to outpace the norms at the game of life the older we get. Beauty fades, popularity becomes trivial, the life of a &#8220;norm&#8221; is often one of stasis, but intellectual pursuits only become more rewarding as we grow older. BBT celebrates that, and I think that’s a good thing.</p>
<div align="center">
<a href="http://www.smbc-comics.com/?id=2125"><img src="http://ideonexus.com/wp-content/uploads/2013/02/20110115.gif" border="0" width="540" height="780" alt="SMBC comic"></a><br />
<b>SMBC comic</b>
</div>
<p><b>Update:</b> This post kicked off a lively debate <a href="http://news.ycombinator.com/item?id=5163887">over at HackerNews</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://ideonexus.com/2013/02/04/in-defense-of-the-big-bang-theory/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Carnival of Evolution #54: A Walkabout Mount Improbable</title>
		<link>http://ideonexus.com/2012/12/01/carnival-of-evolution-54-a-walkabout-mount-improbable/</link>
		<comments>http://ideonexus.com/2012/12/01/carnival-of-evolution-54-a-walkabout-mount-improbable/#comments</comments>
		<pubDate>Sat, 01 Dec 2012 09:09:12 +0000</pubDate>
		<dc:creator>Ryan Somma</dc:creator>
				<category><![CDATA[Ionian Enchantment]]></category>

		<guid isPermaLink="false">http://ideonexus.com/?p=10322</guid>
		<description><![CDATA[Mount Ranier Panorama Credit: Tyler Foote I hope everyone enjoyed their holiday dinosaur this Thanksgiving, and thank you joining me in this delightful excursion out into the wide wonderful world of ideas and expressions in evolution. Chronicle Canyon History in the layers and controversies in the stories they tell. How did we eradicate Malaria in [...]]]></description>
				<content:encoded><![CDATA[<style>
div.articlebox { 
border:2px solid;
border-radius:25px;
padding:15px; 
font-family: Verdana;
font-size: 16px;
line-height: 25px;}
</style>
<div align="center">
<a href="http://www.flickr.com/photos/templesbytyler/6181542014/"><img src="http://ideonexus.com/wp-content/uploads/2012/11/MtRainer.png" border="0" width="500" height="749" alt="Mount Ranier Panorama"></a><br />
<b>Mount Ranier Panorama</b><br />
Credit: <a href="http://www.flickr.com/photos/templesbytyler/6181542014/">Tyler Foote</a>
</div>
<p>I hope everyone enjoyed their <a href="http://www.ucmp.berkeley.edu/museum/events/bigdinos2005/turkey.html">holiday dinosaur</a> this Thanksgiving, and thank you joining me in this delightful excursion out into the wide wonderful world of ideas and expressions in evolution.<br />
<span id="more-10322"></span><br />
<br/><br />
<h2>Chronicle Canyon</h2>
<p>History in the layers and controversies in the stories they tell.</p>
<div class="articlebox" style="border-color:#ff00ff;">
<b><em>How did we eradicate Malaria in the United States?</em></b> A thought-provoking guest post from <b>Daniel Parker</b> titled <em><a href="http://ecodevoevo.blogspot.com/2012/10/social-malaria.html">Social Malaria</a></em>, which puts forth a compelling argument that we can get a better return on our anti-malarial investment by focusing on socioeconomic factors rather than dusting Africa in DDT (Via <b>Anne Buchanan</b> of <a href="http://ecodevoevo.blogspot.com/">The Mermaid&#8217;s Tale</a>).
</div>
<div class="articlebox" style="border-color:#ff00ff;">
<b>Romeo Vitelli</b> of <a href="http://drvitelli.typepad.com/providentia/">Providentia</a> brings us a bizarre human interest story in <em><a href="http://drvitelli.typepad.com/providentia/2012/10/the-evolution-of-charlotte-bach.html">The Evolution of Charlotte Bach</a></em>, who I can only describe as a &#8220;quack&#8221; of an evolutionary theorist who wrote numerous books, gave public talks, and hid a very dark side of her life that was only uncovered after her death.
</div>
<div class="articlebox" style="border-color:#ff00ff;">
<b>Bradly Alicea</b> at <a href="http://bradly-alicea.tumblr.com">Tumbld thoughts</a> post<br />
<em><a href="http://bradly-alicea.tumblr.com/post/36006843652/i-was-going-through-some-of-my-hard-copy-magazines">I was going through some of my hard-copy magazines&#8230;</a></em> recreates a <a href="">SEED Magazine</a> &#8220;field trajectory&#8221; graph for <a href="http://en.wikipedia.org/wiki/Group_selection">group selection theory</a> that ends with Nowak, Tarnita, and Wilson&#8217;s 2010 <em>Nature</em> publication &#8220;The evolution of eusociality&#8221; at the end of the trend and asking the reader to discuss the future trajectory of the research field.
</div>
<p><br/><br />
<h2>MicroCosmos Pond</h2>
<p>The smooth surface hides a tiny world packed with ideas.</p>
<div class="articlebox" style="border-color:#0000ff;">
<b>S.E. Gould</b>, of the <a href="http://blogs.scientificamerican.com/lab-rat/">Lab Rat</a> blog, has posted <em><a href="http://blogs.scientificamerican.com/lab-rat/2012/11/25/how-the-animals-lost-their-sensors/">How the animals lost their sensors</a></em>, refering to the &#8220;Two Component System&#8221; (TCS) of molecular signal and response found in archaea, bacteria, eukaryotes, plants, fungi, and several protazoa&#8211;<em>but not animals</em>. (Via <b>Bjørn Østman&#8217;s</b> of <a href="http://pleiotropy.fieldofscience.com">Pleiotropy</a>)
 </div>
<div class="articlebox" style="border-color:#0000ff;">
From <b>Lucas Brouwers</b> of <a href="http://blogs.scientificamerican.com/thoughtomics/">Thoughtomics</a> comes <em><a href="http://blogs.scientificamerican.com/thoughtomics/2012/11/20/animal-vision-evolved-700-million-years-ago/">Animal vision evolved 700 million years ago</a></em> detailing scientists on the trail of the evolutionary history of <a href="http://en.wikipedia.org/wiki/Opsin">opsin</a>, a light-sensitive protein that makes vision possible, tracing it back to an ancient ancestor that was itself incapable of detecting light with the protein. (Via <b>Bjørn Østman&#8217;s</b> of <a href="http://pleiotropy.fieldofscience.com">Pleiotropy</a>)
</div>
<div class="articlebox" style="border-color:#0000ff;">
<div align="center">
<a href="http://blogs.scientificamerican.com/compound-eye/2012/11/26/starving-to-be-social-the-odd-life-of-dictyostelium-slime-molds/"><img src="http://ideonexus.com/wp-content/uploads/2012/11/Dictyostelium9-M.jpg" border="0" width="500" height="333" alt="Slime Molds Against a Pink Background"></a><br />
<b>Slime Molds Against a Pink Background</b><br />
Credit: <a href="http://blogs.scientificamerican.com/compound-eye/2012/11/26/starving-to-be-social-the-odd-life-of-dictyostelium-slime-molds/">Alex Wild</a><br />
This image is copyrighted, posted here as fair use. You can order prints of these photographs at: <a href="http://www.alexanderwild.com/Professional/Dictyostelium-discoideum/26771201_mjgqPs#!i=2241130677&#038;k=qXTcPNj">Alex Wild Photography</a>
</div>
<p><b>Alex Wild</b> of <a href="http://blogs.scientificamerican.com/compound-eye/">Compound Eye</a> brings us <em><a href="http://blogs.scientificamerican.com/compound-eye/2012/11/26/starving-to-be-social-the-odd-life-of-dictyostelium-slime-molds/">Starving to be Social: The Odd Life of Dictyostelium Slime Molds</a></em> that features a photo essay of slime molds he took from a visit to  <a href="http://strassmannandquellerlab.wordpress.com/">Joan Strassmann and David Queller&#8217;s lab</a> at Washington University in St. Louis. You can also see more his spine-tingling photos and order prints at <a href="http://www.alexanderwild.com/Professional/Dictyostelium-discoideum/26771201_mjgqPs#!i=2241130677&#038;k=qXTcPNj">Alex Wild Photography</a>. (Via <b>Bjørn Østman&#8217;s</b> of <a href="http://pleiotropy.fieldofscience.com">Pleiotropy</a>)
</div>
<p><br/><br />
<h2>Adaptation Ascent</h2>
<p>A tough climb challenges your fitness.</p>
<div class="articlebox" style="border-color:#00ffff;height:355px;">
<div style="float: left;padding:5px;">
<a href="http://www.flickr.com/photos/tambako/6318135894/"><img src="http://ideonexus.com/wp-content/uploads/2012/11/hyena.png" border="0" width="200" height="299" alt="Walking striped hyena"></a><br />
<b>Walking striped hyena</b><br />
Credit: <a href="http://www.flickr.com/photos/tambako/6318135894/">Tambako the Jaguar</a>
</div>
<p>Guest blogger at <a href="http://scientificamerican.com">Scientific American</a> <b>Kate Shaw&#8217;s</b> <em><a href="http://blogs.scientificamerican.com/guest-blog/2012/11/29/how-aggressive-hyena-moms-give-their-kids-a-boost/">How Aggressive Hyena Moms Give Their Kids a Boost</a></em> takes the reader through the social hierarchy of hyena clans, which she has spent countless hours studying in person, to help us understand why the females of the species are so masculinized, even having &#8220;pseudopenises that mimic male genitalia.&#8221; (Via <b>Bjørn Østman&#8217;s</b> of <a href="http://pleiotropy.fieldofscience.com">Pleiotropy</a>)
</div>
<div class="articlebox" style="border-color:#00ffff;">
Author <b>Jerry A. Coyne&#8217;s</b> <em><a href="http://whyevolutionistrue.wordpress.com/2012/11/12/why-is-one-sex-mimetic-rather-than-the-other/">Why is one sex mimetic rather than the other?</a></em> explores the question of why only the males or females of some species use mimicry to deter predators while members of the opposite sex do not. (Via <b>Bjørn Østman&#8217;s</b> of <a href="http://pleiotropy.fieldofscience.com">Pleiotropy</a>)
</div>
<div class="articlebox" style="border-color:#00ffff;height:370px;">
<div  style="float: right;padding:5px;">
<a href="http://www.flickr.com/photos/templesbytyler/6181542014/"><img src="http://ideonexus.com/wp-content/uploads/2012/11/IAD.png" border="0" width="200" height="339" alt="innovation-amplification-divergene model (IAD)"></a><br />
<b>IAD Model</b>
</div>
<p><b>Bjørn Østman&#8217;s</b> post <em><a href="http://pleiotropy.fieldofscience.com/2012/10/pleiotropy-saves-day-for-evolving-new.html">Pleiotropy saves the day for evolving new genes</a></em> explores the origin of new genes via Näsvall et al&#8217;s innovation-amplification-divergene model (IAD), where a gene &#8220;becomes pleiotropic, is copied, followed by divergence, and then loss of pleiotropy.&#8221;
</div>
<div class="articlebox" style="border-color:#00ffff;">
<b>Joachim</b> of <a href="http://historiesofecology.blogspot.de">Mousetrap</a> presents <em><a href="http://historiesofecology.blogspot.de/2012/11/on-testing-red-queen-hypothesis.html">On testing the Red Queen hypothesis Part I</a></em> and <em><a href="http://historiesofecology.blogspot.de/2012/11/on-testing-red-queen-hypothesis-part-2.html">Part 2</a></em> exploring the general Red Queen hypothesis that &#8220;hosts, parasites, predators, or competitors&#8221; are pushing species into an arms race of constant adaptation, and the problem of Hamiltonian parasites, parasites that have shorter lifespans and evolve faster than their hosts&#8211;like bacteria on an elephant, which we would expect to out-pace their hosts and kill them.
</div>
<div class="articlebox" style="border-color:#00ffff;">
<a href="http://www.genome-engineering.com">Genome Engineering&#8217;s</a> <b>Suzanne Elvidge&#8217;s</b> brings us three posts this month covering recent research in genetics and evolution. Her summaries are provided. </p>
<p><em><a href="http://www.genome-engineering.com/bringing-genes-and-fossils-together-in-evolutionary-biology.html">Bringing genes and fossils together in evolutionary biology</a></em>:</p>
<blockquote><p>
While the links between the study of rocks and fossils and the high-tech field of genetics are not necessarily obvious at first glance, a recent review in the Journal of Vertebrate Paleontology shows that the connection is perhaps closer than you would think. While paleontology looks at what happened in evolution, developmental genetics can help researchers to unpack how it happened, and so each discipline can feed into and support the other.
</p></blockquote>
<p><em><a href="http://www.genome-engineering.com/a-step-in-the-evolution-of-the-human-brain.html">A step in the evolution of the human brain</a></em>:</p>
<blockquote><p>
An international team of researchers, including researchers from China, Germany, and the University of Edinburgh in Scotland, has discovered a new piece of genetic information that could give a clue to how the human brain evolved, and what makes humans and apes different from each other.
</p></blockquote>
<p><em><a href="http://www.genome-engineering.com/1000-genome-project-reveals-our-genetic-diversity.html">1000 Genome Project reveals our genetic diversity</a></em>:</p>
<blockquote><p>
Researchers from the 1000 Genome Project have sequenced the genomes of 1092 people from 14 ethnic groups, from Africa to Asia and from Europe to the Americas, using a combination of low-coverage whole-genome and exome sequencing. This has created what the team has described as the largest and most detailed catalogue of human genetic variation.
</p></blockquote>
</div>
<p><br/><br />
<h2>Disputation Pass</h2>
<p>Don&#8217;t lose your way at this rocky intersection.</p>
<div align="center">
<a href="http://www.flickr.com/photos/agrinberg/3822834455/"><img src="http://ideonexus.com/wp-content/uploads/2012/12/pass.jpg" border="0" width="500" height="333" alt="The Trail to Forester Pass"></a><br />
<b>The Trail to Forester Pass</b><br />
Credit: <a href="http://www.flickr.com/photos/agrinberg/3822834455/">Alan Grinberg</a>
</div>
<div class="articlebox" style="border-color:#00ff00;">
<b>Ken Weiss</b> from <a href="http://ecodevoevo.blogspot.com">The Mermaid&#8217;s Tale</a> provides a very even-handed assessment of the conspiracy theories anti-evolutionists hold concerning scientists and the habits of the scientific community that sometime seem to affirm those conspiracy theories in his article <em><a href="http://ecodevoevo.blogspot.com/2012/11/a-vast-conspiracy-of-scientists-well-it.html">&#8220;A vast conspiracy of scientists&#8221;? Well, it depends.</a></em> (Via <b>Randall Hayes</b> of <a href="http://variationselectioninheritance.podbean.com">Variation Selection Inheritance</a>)
</div>
<div class="articlebox" style="border-color:#00ff00;">
<b>Jason Collins</b> of <a href="http://www.jasoncollins.org">Evolving Economics</a> blog, provides a very compelling and evidence-based critique of the Gerald Crabtree papers on the evolutionary decline of human intelligence over the last 3,000 years that has <a href="http://www.independent.co.uk/news/science/human-intelligence-peaked-thousands-of-years-ago-and-weve-been-on-an-intellectual-and-emotional-decline-ever-since-8307101.html">gained so much attention in the press recently</a>. Collins&#8217; article, titled <em><a href="http://www.jasoncollins.org/2012/11/the-decline-in-intelligence/">The decline in intelligence?</a></em>, is well worth the read if you want to understand the flaws in Crabtree&#8217;s logic. Collins&#8217; also has a critique of <em><a href="http://www.jasoncollins.org/2012/11/boyd-and-richersons-group-selection/?fb_source=pubv1">Boyd and Richerson&#8217;s Group Selection</a></em>, where he confronts what he perceives as the nebulous use of &#8220;group selection&#8221; as it applies to Puritanical and cannibalistic societies used as examples in the work. (Via <b>Bradly Alicea</b> of <a href="http://bradly-alicea.tumblr.com">Tumbld thoughts</a>)
</div>
<div class="articlebox" style="border-color:#00ff00;">
<b>GunnarDW</b> of <a href="http://beastbardbot.wordpress.com">The Beast, the Bard and the Bot</a> also provides some thoughtful challenges to Crabtree&#8217;s papers concerning the definition of intelligence and specific cognitive abilities in his article <em><a href="http://beastbardbot.wordpress.com/2012/11/19/our-dwindling-intelligence-and-einsteins-brain/">Our Dwindling Intelligence and Einstein’s Brain</a></em>.
</div>
<div class="articlebox" style="border-color:#00ff00;">
<b>Randall Hayes</b> of <a href="http://variationselectioninheritance.podbean.com">Variation Selection Inheritance</a> describes his personal attempts to get his students to practice the scientific method in <em><a href="http://variationselectioninheritance.podbean.com/2012/11/18/the-difference-between-screwing-around-and-science/">The difference between screwing around and science</a></em>.
</div>
<p><br/><br />
<h2>Unique Overlook</h2>
<p>Take a breather here and stretch your mind.</p>
<div class="articlebox" style="border-color:#ffff00;">
Via <a href="http://scienceblogs.com/gregladen/"><b>Greg Laden</b></a>, we have <em><a href="http://scienceblogs.com/gregladen/2012/11/18/a-remarkable-convergence-of-species-the-deadliest-sea-snake/">A Remarkable Convergence of Species: The Deadliest Sea Snake</a></em>, which previews a paper on the species <em>Enhydrina schistosa</em> found through DNA evidence to be two distinct species that are remarkably alike morphologically.
</div>
<div class="articlebox" style="border-color:#ffff00;">
<div style="float: right;padding:5px;">
<img src="http://ideonexus.com/wp-content/uploads/2012/11/treeofanimallife.png" border="0" width="200" height="309" alt="Tree of Animal Life"><br />
<b>Tree of Animal Life</b>
</div>
<p><b>David Morrison</b> of <a href="http://phylonetworks.blogspot.se">The Genealogical World of Phylogenetic Networks</a> has an article up on <em><a href="http://phylonetworks.blogspot.se/2012/11/family-trees-pedigrees-and.html">Family trees, pedigrees and hybridization networks</a></em>, illuminating the fact that a &#8220;family tree&#8221; is actually a pedigree, a hybridization network, where branches fuse at points as a result of inbreeding. He then starkly illustrates this using the family tree of the Spanish Habsburgs royal family.</p>
<p>While family trees are really networks, <b>Morrison</b> also provides many examples of <em><a href="http://phylonetworks.blogspot.com/2012/11/relationship-trees-drawn-like-real-trees.html">Relationship trees drawn like real trees</a></em> throughout history.
</div>
<div class="articlebox" style="border-color:#ffff00;">
<b>Bradly Alicea</b> of <a href="http://syntheticdaisies.blogspot.com">Synthetic Daisies</a> has a post close to my heart, but rather deep to follow (I hope I don&#8217;t mangle it), <em><a href="http://syntheticdaisies.blogspot.com/2012/11/artificial-life-meets-geodynamics-evogeo.html">Artificial Life meets Geodynamics (EvoGeo)</a></em>, which covers a computer model based on a computational tool for fluid mechanics adapted for automata diffusion, adding a dynamic topology to simulate environmental changes such as those produced by plate tectonics, and finally applying a fitness function to the automata to restrict the flow of genes through the environment. It&#8217;s a fascinating project at the crossroads of evolutionary studies and computer science.
</div>
<div class="articlebox" style="border-color:#ffff00;">
<b>Stephen McCanny</b> of <a href="http://stephen.mccanny.ca">Ecoknowledge</a> has an intriguing post titled <em><a href="http://stephen.mccanny.ca/?p=95">Limits of natural selection</a></em>, where he explores what he perceives as &#8220;three limits to natural selection&#8221; in contributing to the origin of species, prevention of species extinction, and predicting the results of selection.
</div>
<p><br/><br />
<h2>Editor&#8217;s Parking Lot</h2>
<p>For the ride home.</p>
<div class="articlebox" style="border-color:#ff0000;">
The <a href="http://slashdot.org/">Slashdot Community</a> was very excited last month to <a href="http://interviews.slashdot.org/story/12/10/18/1329231/ask-richard-dawkins-about-evolution-religion-and-science-education">ask questions of Richard Dawkins</a>, which he replied to in one video covering <a href="http://science.slashdot.org/story/12/10/24/2357245/dr-richard-dawkins-on-education-innocence-of-muslims-and-rep-paul-broun">Education, &#8216;Innocence of Muslims,&#8217; and Rep. Paul Broun</a> and a second video explaining <a href="http://science.slashdot.org/story/12/10/26/0230247/dr-richard-dawkins-on-why-disagreeing-with-religion-isnt-insulting">Why Disagreeing With Religion Isn&#8217;t Insulting</a>.
</div>
<div class="articlebox" style="border-color:#ff0000;height:255px">
<div style="float: left;padding: 0px 10px 0px 0px; ">
<a href="http://carnivalofevolution.blogspot.com/"><img src="http://ideonexus.com/wp-content/uploads/2012/12/CoEButton.png" border="0" width="250" height="250" alt="Carnival of Evolution Logo"></a>
</div>
<li>Be sure to check out CoE #55 at <a href="http://www.genome-engineering.com/">Genome Engineering</a> on January 2, 2012! Be sure to <a href="http://blogcarnival.com/bc/submit_5028.html">get your submissions in</a>!</li>
<li><a href="https://www.facebook.com/pages/Carnival-of-Evolution/181930561831085">CoE on Facebook</a></li>
<li><a href="https://twitter.com/#!/CarnyEvolution">CoE on Twitter</a></li>
<li><a href="http://carnivalofevolution.blogspot.com/">CoE blog</a></li>
</div>
]]></content:encoded>
			<wfw:commentRss>http://ideonexus.com/2012/12/01/carnival-of-evolution-54-a-walkabout-mount-improbable/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>The Science of Mindfulness Meditation and Practice for the Rational Skeptic</title>
		<link>http://ideonexus.com/2012/08/27/the-science-of-mindfulness-meditation-and-practice-for-the-rational-skeptic/</link>
		<comments>http://ideonexus.com/2012/08/27/the-science-of-mindfulness-meditation-and-practice-for-the-rational-skeptic/#comments</comments>
		<pubDate>Mon, 27 Aug 2012 05:00:10 +0000</pubDate>
		<dc:creator>Ryan Somma</dc:creator>
				<category><![CDATA[Ionian Enchantment]]></category>

		<guid isPermaLink="false">http://ideonexus.com/?p=10260</guid>
		<description><![CDATA[Jump to: The Science Fiction of Meditation Mindfulness Meditation Science of Mindfulness Meditation Experimentally-Observed Benefits of Mindfulness Meditation How to Meditate References The Science Fiction of Meditation Star Wars: The Phantom Menace was a deeply flawed movie on many levels, but there was one moment in the film that I thought was brilliant. The Jedi [...]]]></description>
				<content:encoded><![CDATA[<p>Jump to:<br />
<a href="http://ideonexus.com/2012/08/27/the-science-of-mindfulness-meditation-and-practice-for-the-rational-skeptic/#sciencefiction">The Science Fiction of Meditation</a><br />
<a href="http://ideonexus.com/2012/08/27/the-science-of-mindfulness-meditation-and-practice-for-the-rational-skeptic/#MindfulnessMeditation">Mindfulness Meditation</a><br />
<a href="http://ideonexus.com/2012/08/27/the-science-of-mindfulness-meditation-and-practice-for-the-rational-skeptic/#science">Science of Mindfulness Meditation</a><br />
<a href="http://ideonexus.com/2012/08/27/the-science-of-mindfulness-meditation-and-practice-for-the-rational-skeptic/#experiments">Experimentally-Observed Benefits of Mindfulness Meditation</a><br />
<a href="http://ideonexus.com/2012/08/27/the-science-of-mindfulness-meditation-and-practice-for-the-rational-skeptic/#HowtoMeditate">How to Meditate</a><br />
<a href="http://ideonexus.com/2012/08/27/the-science-of-mindfulness-meditation-and-practice-for-the-rational-skeptic/#References">References</a></p>
<p><a name="sciencefiction"></a></p>
<h2>The Science Fiction of Meditation</h2>
<p><em>Star Wars: The Phantom Menace</em> was a deeply flawed movie on many levels, but there was one moment in the film that I thought was brilliant. The Jedi master Qui-Gon Jinn is in the heat of a duel with the Sith lord Darth Maul, when a force field comes in between them, momentarily pausing their battle. Darth Maul impatiently paces back and forth along the shield, staring at his opponent with murderous rage. Qui-Gon, in contrast, drops to his knees and begins meditating.</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/08/Qui-GonJinn.jpg" border="0" width="500" height="400" alt="Qui-Gon Jinn Meditating"><br />
<b>Qui-Gon Jinn Meditating</b><br />
Credit: 20th Century Fox / Lucasfilm
</div>
<p>I recently spent a Saturday morning at a meditation workshop hosted by <a href="http://www.karunamayi.org/">Amma Sri Karunamayi</a>, where I followed a warm-up yoga session taught by my brother (yes, the same one from <a href="http://ideonexus.com/2007/02/28/ryan-vs-darin-round-1/">this epic debate of religion vs science</a>), who was also her devote, with three straight hours of mindfulness meditation interrupted every half hour with my need to change sitting positions in order to restore feeling to my legs. As a skeptic, I had to resist the urge to roll my eyes when they spoke of magical energies stirred by the yogic practice, feeding jade idols butter, and sitting in the presence of a woman who is supposedly the latest incarnation of some Hindu goddess, but also as a skeptic <b>I am open to new experiences</b> and practicing mindfulness meditation for three hours in a group setting where social pressures would help keep me focused was something I strongly desired to try, and I confess I came out of the experience fairly high. I felt like I was floating, calmly detached from the world around me. The feeling carried me through an hour of beltway traffic and I remained non-stressed for the rest of the day. </p>
<p>It was a high very similar to one I would get as a youth from immersing myself in a good book or going deep on a programming task for several hours. Not surprisingly, I was also discovering <em>Star Trek</em> at that time in my life, and was idolizing Mr. Spock for his emotional detachment the cool logic I hoped would help me survive middle school and admired later in life for the idealization of mental discipline. Vulcans are often portrayed in a state of meditation, and Trekkers describe three types of <a href="http://syvak.wordpress.com/krakroa-whltri/">Vulcan meditation</a>:</p>
<blockquote><p>
Mental meditations have the purpose of developing the intellect. One might consider doing a logic puzzle or studying a foreign language a mental meditation, albeit a simple one. Emotional meditations explore the breadth and flavor of our emotions: for one cannot hope to control a thing without first understanding it. Physical meditations consist of various strenuous exercises done in a particularly mindful manner.
</p></blockquote>
<p>I do like the idea of mental and physical meditations, and do practice such disciplines in real life, but the definition here of &#8220;emotional meditations&#8221; is highly lacking. It doesn&#8217;t make sense that one would &#8220;explore the breadth and flavor&#8221; of something one wants mastery over, but is it possible to cognitively master one&#8217;s emotional states and calm the mind of all its chatter?<br />
<span id="more-10260"></span><br />
<a name="MindfulnessMeditation"></a></p>
<h2>Mindfulness Meditation</h2>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/08/BeHereNow.jpg" border="0" width="550" height="412" alt="Be Here Now"><br />
<b>Be Here Now</b><br />
Credit: <a href="http://www.flickr.com/photos/debschultz/4606574541/">debs</a>
</div>
<p>The scientific mind can &#8220;entertain a thought without accepting it,&#8221; to quote Aristotle. So I can consider meditation, a practice that &#8220;has been employed as spiritual and healing practice for more than 5,000 years&#8221; objectively based on what scientific scrutiny is out there (Chiesa, 2011). Just because something has been around five millennia, doesn&#8217;t mean it&#8217;s not nonsense, and just because something finds its origins in religion doesn&#8217;t mean it is nonsense.</p>
<p>The word &#8220;meditation&#8221; invokes mental images of Buddhist monks, drums, gongs, and mountaintops. In fact, the Dalai Lama has done much to promote this stereotype by <a href="http://www.bbc.co.uk/news/world-us-canada-12661646">submitting monks to scientific scrutiny</a> as they meditate. However, as a skeptic, if there are cognitive benefits to meditation, then I want just the secular essence of the practice, trimming away as much ritual and philosophy as possible. For this reason, science is primarily interested in <a href="http://en.wikipedia.org/wiki/Mindfulness_(psychology)">mindfulness meditation</a> as defined by psychologists, which is properly defined, not by the spiritual dimensions of its religious origins, but the observable measurable cognitive and behavioral changes it produces in the practitioner:</p>
<blockquote><p>
Across religions and practices, it is generally believed that meditation leads to a minimization of or reduction of thinking and conceptual activity that allows the practitioner to experience the world without cognitive bias, filters, or models built up from past experience. For example, after meditation, the practitioner should be able to approach a typically stressful situation, such as getting stuck in traffic, with a new perspective or response, such as realizing that being stuck gives him or her extra time to talk with his or her child in the backseat. The idea is that the automatic and typical reaction, such as swearing and brooding about disdain for the driver coming up the breakdown lane, now becomes a choice as opposed to an inevitability (<a href="http://www.thaicam.go.th/attachments/364_R2010062808.pdf">Wenk-Sormaz, 2005</a>).
</p></blockquote>
<p>So mindfulness meditation (MM) should help us overcome our &#8220;cognitive bias, filters, or models built up from past experience.&#8221; In Zen Buddhism, this is known as the concept of <a href="http://en.wikipedia.org/wiki/Shoshin"><em>Shoshin</em> or &#8220;Beginners Mind&#8221;</a>:</p>
<blockquote><p>
Rather than observing experience through the filter of our beliefs, assumptions, expectations, and desires, mindfulness involves a direct observation of various objects as if for the first time &#8230;mindfulness practice should facilitate the identification of objects in unexpected contexts because one would not bring preconceived beliefs about what should or should not be present (<a href="http://www.jimhopper.com/pdfs/Bishop2004.pdf">Bishop, 2004</a>).
</p></blockquote>
<p>By eliminating preconceptions, MM should open the mind to see things to which our experiential biases would normally blind us. In much of the literature studying MM the concept of &#8220;automation,&#8221; our kneejerk reactions to stimuli and tasks we perform without thinking, is studied:</p>
<blockquote><p>
Both Deikman and proponents of early models of automaticity described automatization as the process that occurs with the repetition of an action or behavior wherein the intermediate steps of the behavior disappear from consciousness awareness.
</p></blockquote>
<p>This is also known as the <a href="http://en.wikipedia.org/wiki/Einstellung_effect">Enstellung effect</a> or the &#8220;creation of a mechanized state of mind,&#8221; demonstrated with Luchins’and Luchins’ <a href="http://en.wikipedia.org/wiki/Einstellung_effect#Luchins_and_Luchins.27_Water_Jar_Experiment">Water Jar Experiment</a> where subjects got into the habit of using the same algorithm to solve all problems, when some problems could be solved with simpler more efficient steps. I personally fall into this trap all the time working on the computer, copying-and-pasting things manually for an hour when I could write a simple script or use a spreadsheet formula to streamline a task or neglecting keyboard shortcuts for the habit of using the much more inefficient mouse to navigate the user interface.</p>
<p>Although it was not listed in the peer-reviewed articles I read, another reason for pursuing Mindfulness Meditation could be to <em>practice seeing the world in a clearer light</em>, without the perceptual illusion of existence distinctive from the world around us. Susan Blackmore, in her book <em>The Meme Machine</em>, describes <a href="http://mxplx.com/Meme/299/">something very akin to Mindfulness Meditation</a> as a means of overcoming the <em>selfplex</em>, the illusion that there is a <a href="http://en.wikipedia.org/wiki/Dualism_(philosophy_of_mind)">conscious self inside our heads distinct from the physical world</a>:</p>
<blockquote><p>
If my understanding of human nature is that there is no conscious self inside then I must live that way&#8211;otherwise this is a vain and lifeless theory of human nature. But how can &#8216;I&#8217; live as though I do not exist, and who would be choosing to do so?</p>
<p>One trick is to concentrate on the present moment&#8211;all the time&#8211;letting go of any thoughts that come up. This kind of &#8216;meme-weeding&#8217; requires a great concentration but is most interesting in its effect. If you can concentrate for a few minutes at a time, you will begin to see that in any moment there is no observing self. Suppose you sit and look out of the window. Ideas will come up but these are all past- and future-oriented; so let them go, come back to the present. Just notice what is happening. The mind leaps to label objects with words, but these words take time and are not really in the present. So let them go too. With a lot of practice the world looks different; the idea of a series of events gives way to nothing but change, and the idea of a self who is viewing the scene seems to fall away.</p>
<p>Another way is to pay attention to everything equally. This is an odd practice because things begin to lose their &#8216;thingness&#8217; and become just changes. Also, it throws up the question of who is paying attention (Blackmore 1995). What becomes obvious, in doing this task, is that attention is always being manipulated by things outside yourself rather than controlled by you. The longer you can sit still and attend to everything, the more obvious it becomes that attention is dragged away by sounds, movements, and most of all thoughts that seem to come from nowhere. These are the memes fighting ti out to grab the information-processing resources of the brain they might use for their propagation. Things that worry you, opinions that you hold, things you want to say to someone, or wish you hadn&#8217;t&#8211;these all come and grab the attention to everything disarms them and makes it obvious that you never did control the attention; it controlled&#8211;and created&#8211;you.</p>
<p>These kinds of practices begin to wear away at the false self. In the present moment, attending equally to everything, there is no distinction between myself and the things happening. It is only when &#8216;I&#8217; want something, respond to something, believe something decide to do something, that &#8216;I&#8217; suddenly appear. This can be seen directly through experience with enough practice at just being.</p>
<p>This insight is perfectly compatible with memetics. In most people the selfplex is constantly being reinforced. Everything that happens is referred to the self, sensations are referred to the observing self, shifts of attention are attributed to the self, decisions are described as being made by the self, and so on. All this reconfirms and sustains the selfplex, and the result is a quality of consciousness dominated by the sense of &#8216;I&#8217; in the middle&#8211;me in charge, me responsible, me suffering. The effect of one-pointed concentration is to stop the processes that feed the selfplex. Learning to pay attention to everything equally stops self-related memes from grabbing the attention; learning to be fully in the present moment stops speculation about the past and future of the mythical &#8216;I&#8217;. These are tricks that help a human person (body, brain and memes) to drop the false ideas of the selfplex. The quality of consciousness then changes to become open, and spacious, and free of self. The effect is like waking up from a state of confusion&#8211;or waking from the meme dream.
</p></blockquote>
<p>Similar to Blackmore&#8217;s above concept of losing the &#8220;I&#8221; illusion is the concept of &#8220;decentering&#8221; in psychological circles:</p>
<blockquote><p>
A shift in one’s cognitive perspective known as decentering or disidentification is thought to lead to a change in one’s relationship to negative thoughts and feelings such that one can see negative thoughts and feelings simply as passing events in the mind rather than reflections of reality (Lau, 2006).
</p></blockquote>
<p>Professor J. H. Flavell observed that children do not think about thinking, and coined the term <a href="http://en.wikipedia.org/wiki/Metacognition">metacognition</a> to describe the phenomena of adults being able to pause and evaluate <em>why</em> we feel certain ways. This &#8220;cognition about cognition&#8221; is an important piece of an adult&#8217;s emotional maturity. &#8220;Cognitive strategies are invoked to make cognitive progress,&#8221; Flavell writes, &#8220;metacognitive strategies to <em>monitor</em> it (Flavell, 1979).&#8221;</p>
<p>So mindfulness meditation is a kind of metacognition, but also the practice of eliminating cognition. It is the practice of not thinking, but when a thought arises, as our brains have evolved to do, we observe it and let it go. This practice of becoming a blank slate is hypothesized to alleviate our biases, restore our plasticity of mind, allow us to perceive the world more clearly, and improve our emotional well-being.</p>
<p><a name="science"></a></p>
<h2>Science of Mindfulness Meditation</h2>
<p>When we look at the iconic photo of Thich Quang Duc&#8217;s self-immolation, we cannot help but feel his decades of meditative practice gave him the strength to so stoically endure such a gruesome death.</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/08/self-immolation.jpg" border="0" width="512" height="333" alt="Journalist Malcolm Browne's photograph of Thich Quang Duc during his self-immolation."><br />
<b>Journalist Malcolm Browne&#8217;s photograph of Thich Quang Duc during his self-immolation.</b><br />
Credit: <a href="http://en.wikipedia.org/wiki/Th%C3%ADch_Qu%E1%BA%A3ng_%C4%90%E1%BB%A9c">wikipedia</a>
</div>
<p>How do scientists quantify the emotional and cognitive benefits of meditative practices that are taking place entirely inside the practitioner&#8217;s head? When people work out, scientists can observe the growth in their muscles and performance at physical tasks after observing their nutritional intake and workout practices. When people study, scientists can subject them to intelligence and subject matter tests throughout the process to see how effectively they are learning based on source materials and study habits. </p>
<p>Studies on meditation tend fall into two categories: the effects of short-term Mindfulness-Based Stress Reduction (MBSR) courses on the abilities of individuals to perform various tests and the effects of long-term disciplined meditative practice on the physiological structure of the brain.</p>
<p>A justifiable skepticism in the scientific community concerning MM studies because meditation has its origins in religion and is therefore subject to selection bias. Studies must eliminate the religion bias by using secular meditation and random subjects (<a href="http://www.thaicam.go.th/attachments/364_R2010062808.pdf">Wenk-Sormaz, 2005</a>). An additional problem with studies involving long-term meditators is that results are only corollary, as we don&#8217;t know if meditative practice results in improved cognition or if individuals with better cognitive skills are drawn to meditative practice. The problem with short-term subjects taking part in a weekend retreat is that we don&#8217;t get to measure the long-term effects of MM; additionally, since most studies are performed by psychology college professors, they are also subject to the selection bias of <a href="http://psycnet.apa.org/journals/cap/7a/2/115/">using college students</a>, the &#8220;white rat&#8221; of human experimentation (Smart, 1966). None of the studies I read on this subject seemed to really get away from these biases, so their findings need to be considered in that light.</p>
<p>Another issue in studying the effects of mindfulness meditation is establishing a consensus definition of what it means to practice it. MM is Incorporated into Mindfulness Based Stress Reduction (MBSR), Mindfulness Based Cognitive Therapy (MBCT), Dialectical Behavior Therapy (DBT), Acceptance and Commitment Therapy (ACT), each with their own slightly different take on it. So what is the essence of MM? Here&#8217;s one summary of the literature:</p>
<blockquote><p>
The first component of mindfulness is usually referred to as a mental state characterized by full attention to internal and external experiences as they occur in the present moment. The second component is usually described as a particular attitude characterized by non-judgment of, and openness to, current experience, which is supposed to lead to higher levels of exposure to negative stimuli and emotions as well as to higher acceptance and concurrent reduction of experiential avoidance (Cheisa, 2010).
</p></blockquote>
<p>There is also the issue of <em>quantification</em>. What are we to measure in the MM practitioner? Meditation must result in a distinctive and reproducible state with reportable phenomena, the state must develop specific traits, there must be measurable progress in the practices (<a href="http://brainimaging.waisman.wisc.edu/~lutz/Meditation_Neuroscience_2005_AL_JDD_RJD_2.pdf">Lutz, 2007</a>). Here is a survey of different results various studies have attempted to measure in subjects:</p>
<blockquote><p>
A number of processes have been proposed to underlie training in mindfulness. The most commonly cited of these is <em>relaxation</em> (Dunn, Hartigan, &#038; Mikulas, 1999), although it has been suggested that this is at most a beneficial side effect of mindfulness practice, rather than an inherent process (Baer, 2003). Another hypothesized process is a <em>reduction in over-general autobiographical memory</em> (Williams, Teasdale, Segal, &#038; Soulsby, 2000). There may also be an <em>erosion of the use of literal, evaluative language</em> (Hayes, 2003; Hayes &#038; Shenk, 2004). Acknowledging rather than evaluating thought processes circumvents the usual cognitive defenses which attempt to prolong or avoid such processes. This results in an increased range and flexibility of actions (Hayes, 2003) and has been termed <em>cognitive flexibility</em> (Roemer &#038; Orsillo, 2003). Mindfulness training may also facilitate <em>metacognitive insight</em> (Bishop et al., 2004; Mason &#038; Hargreaves, 2001; Teasdale, 1999; Teasdale, Segal, &#038; Williams, 1995). This represents a transition toward viewing thoughts as ephemeral mental events, rather than as direct representations of reality. Such &#8220;decentering&#8221; somewhat distances us from our problematic thoughts and emotions, allowing us to address them consciously rather than merely reacting to them (Chambers,2008).
</p></blockquote>
<p>How are these measured? With a wide variety of psychological assessment tools such as the <a href="http://socrates.berkeley.edu/~kihlstrm/TAS.htm">Tellegen Absorption Scale (TAS)</a>, <a href="http://www.sciencedirect.com/science/article/pii/S1053810001905069">Situational Self-Awareness Scale (SSAS)</a>, <a href="http://www.yorku.ca/rokada/psyctest/cogfail.doc">Cognitive Failures Questionnaire (CFQ)</a>, <a href="http://en.wikipedia.org/wiki/Dissociative_Experiences_Scale">Dissociative Experiences Scale (DES)</a>, <a href="http://en.wikipedia.org/wiki/Revised_NEO_Personality_Inventory">NEO-Five Factor Inventory (NEO_FFI)</a>, <a href="http://en.wikipedia.org/wiki/Psychological_mindedness">Psychological Mindedness Scale (PMS)</a>, <a href="http://www.paultrapnell.com/measures/RRQ.RTF">Rumination-Reflection Questionnaire (RRQ)</a>, <a href="http://www.psychbytes.com/Quizzes/Social%20Desirability/Social%20Desirability%20Scale.htm">Marlow-Crowne Social Desirability Scale</a>, <a href="http://personality-testing.info/tests/KIMS.php">Kentucky Inventory of Mindfulness Scale (KIMS)</a>, <a href="http://www.mindfulnessandacceptance.vcu.edu/documents/MAAS.pdf">Mindful Attention Awareness Scale (MAAS)</a>, <a href="http://www.awakemind.org/quiz.php">Mindfulness Questionare (MQ)</a>, <a href="http://www.outcomesdatabase.org/node/548">Revised Cognitive and Affective Mindfulness Scale (CAMS-R)</a>, and many others (Where possible, I have attempted to link to actual versions of tests, then wikipedia articles, and finally abstracts on them).</p>
<p>One very common test is the <a href="http://en.wikipedia.org/wiki/Stroop_effect">stroop task</a> for measuring deautomization, where participants identify the color of a word that identifies a different color.</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/08/strooptest.jpg" border="0" width="300" height="292" alt="Stroop Task"><br />
<b>Stroop Task</b>
</div>
<p>The stroop task is a favorite for measuring deautomation because:</p>
<blockquote><p>
The automatic semantic activation of the word meaning must be overridden in order for participants to respond correctly when faced with incongruent words. As reading is automatic for proficient readers less attentional resources are required for reading irrelevant (neutral) words than for ink colour naming. Consequently, the reading of the word appears obligatory and results in an increase in reaction times and errors when attempting to process incongruent colour words. Increasing the performance in this task would therefore require the reinvestment of attention (deautomatisation) and a non-habitual response (<a href="http://psy.fgu.edu.tw/web/wlchou/perceptual_psychology/class_pdf/Advanced%20Perceptual/2011/2011week7_HaoChen_paper.pdf">Moore, 2009</a>).
</p></blockquote>
<p>Other tests are intended to measure <a href="http://en.wikipedia.org/wiki/Autobiographical_memory">autobiographical memory</a>, which &#8220;works by first recalling a generalized memory, then specific events are recalled from that generalization. If the process is interrupted, then we are left with only the overgeneralized memory (OGM).&#8221; Subjects are tested on their ability to recall details of past events, requiring focus, reflection, and emotional stability.</p>
<p>Still others test subjects&#8217; attention. For instance the <a href="http://www.cse.iitk.ac.in/users/se367/papers/simons-ambinder-05_change-blindness.pdf">Change Blindness Flickering Task</a> flashes the same photo twice with one difference between the two instances (ie. the height of a railing behind a couple), or the <a href="http://www.youtube.com/watch?v=vJG698U2Mvo">Gorrilla Video</a>, where the subject is tasked with counting dribbles and passes of basketball players in a video and a person in a gorilla suit walks behind the scene, but 22% of participates don&#8217;t notice (<a href="http://www.wcupa.edu/_academics/healthsciences/stressreductioncenter/whymindfulnessnow/documents/Attentionandmeditation2010.pdf">Hodgins, 2010).</p>
<p><a name="experiments"></a></p>
<h2>Experimentally-Observed Benefits of Mindfulness Meditation</h2>
<h3>Cognitive Flexibility</h3>
<p>A picture&#8211;or in this case a scatter plot graph&#8211;paints a thousand words, so check out how meditators do against non-meditators on the stroop and concentration tasks:</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/08/MeditatorsVSNonMeditators.png" border="0" width="398" height="777" alt="Meditators VS Non-Meditators"><br />
<b>Meditators VS Non-Meditators</b><br />
(<a href="http://psy.fgu.edu.tw/web/wlchou/perceptual_psychology/class_pdf/Advanced%20Perceptual/2011/2011week7_HaoChen_paper.pdf">Moore, 2009</a>)
</div>
<p>These near-linear results explained:</p>
<blockquote><p>
Positive correlations were found with the d2-scores TN (r = .510, p < .001), TN _ E (r = .620, p < .01), CP (r = .667, p < .01) and the Stroop-score TNP (r = .331, p < .05). This indicates that high levels of mindfulness are correlated with high processing speed, good attentional and inhibitory control, and a good coordination of speed with concurrent accurate performance. Negative correlations were found with the d2-errors E (r = +/-.527, p < .001), E1 (r = +/-.493, p < .001), E2 (r = +/-.398, p < .01) and the Stroop error SE (r = +/-.780, p < .001), signifying that higher levels of mindfulness are linked to reduced errors across measures, suggesting greater attentional control, accuracy of visual scanning, inhibitory control, carefulness, cognitive ?exibility and quality of performance. These results support the hypothesis that mindfulness would correlate positively with task performance. (<a href="http://psy.fgu.edu.tw/web/wlchou/perceptual_psychology/class_pdf/Advanced%20Perceptual/2011/2011week7_HaoChen_paper.pdf">Moore, 2009</a>)
</p></blockquote>
<p>The sample-size for the above study was small however, consisting of 25 Buddhist meditators and 25 non-meditators recruited from a local credit management company. So the study doesn&#8217;t isolate the meditative practice from the religious practice, but it is interesting that the Buddhists outperformed &#8220;telephone operatives, team leaders, IT technicians, finance workers, account managers, upper management and marketing executives,&#8221; as these are professionals whose jobs demand high-levels of concentration.</p>
<p>Another small sample size of 20 &#8220;Western meditation practitioners&#8221; found &#8220;meditation is associated with increased thickness in a subset of cortical regions related to somatosensory, auditory, visual and interoceptive processing&#8221; in participates who practiced meditation for an average of nine years for six hours a week (<a href="http://surfer.nmr.mgh.harvard.edu/pub/articles/Lazar_Meditation_Plasticity_05.pdf">Lazar, 2005</a>):</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/08/CorticalThickeningInMeditators.png" border="0" width="297" height="602" alt="Cortical Thickening in Meditators"><br />
<b>Cortical Thickening in Meditators</b><br />
(<a href="http://surfer.nmr.mgh.harvard.edu/pub/articles/Lazar_Meditation_Plasticity_05.pdf">Lazar, 2005</a>)
</div>
<p>In addition to the small sample size, the authors remind us that &#8220;correlation is not causation.&#8221; It might be possible that individuals with a pre-existing thickening of these cortical regions are drawn to meditation; however, looking at the scatter plot, it is interesting to see the way the blue-circles (meditators) and red-squares (non-meditators) diverge with age. As we grow older we <a href="http://www.ncbi.nlm.nih.gov/pubmed/17046669">lose our plasticity of mind</a>, and if this cortical thickening is not pre-existing, then meditative practice would appear to provide another tool in the kit of strategies for staving off this cognitive decline as we grow older.</p>
<p>Another more recent experiment that included a mixture of experienced meditators and individuals interested in learning meditation, some given actual mindfulness training and a control group, found meditators experienced reduced cognitive rigidity in tests:</p>
<blockquote><p>
following repetitive experience with a complex problem solving method, experienced mindfulness meditators were less blinded by experience and were better able than pre-meditators to identify the simple novel solution&#8230; similar results were obtained following mindfulness training in which participants were randomly assigned to mindfulness training vs. waiting list groups. These findings lend support to the notion that mindfulness involves cultivation of a &#8220;beginner’s mind,&#8221; and demonstrate that mindfulness practice reduces cognitive rigidity via the tendency to overlook simple novel solutions to a situation due to rigid and repetitive thought patterns formed through experience (<a href="http://www.plosone.org/article/info%3Adoi%2F10.1371%2Fjournal.pone.0036206">Greenberg, 2012</a>).
</p></blockquote>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/08/word_nonword_brainactivations.png" border="0" width="550" height="477" alt="Brain Regions Activated by Seeing Words and Non-Words"><br />
<b>Brain Regions Activated by Seeing Words and Non-Words</b><br />
(<a href="http://www.plosone.org/article/info%3Adoi%2F10.1371%2Fjournal.pone.0003083">Pagnoni, 2008</a>)
</div>
<p>Brain scans of meditators and controls performing tests for automated thinking, distinguishing words from non-words, in another study found experienced meditators had <a href="http://www.plosone.org/article/info%3Adoi%2F10.1371%2Fjournal.pone.0003083">faster reaction times</a> in distinguishing words from non-words in tests where texts were flashed at them at random, suggesting meditative practice improves the brain&#8217;s ability to switch tasks by suppressing its tendency to wander into spontaneous thought:</p>
<blockquote><p>
While behavioral performance did not differ between groups, Zen practitioners displayed a reduced duration of the neural response linked to conceptual processing in regions of the default network, suggesting that meditative training may foster the ability to control the automatic cascade of semantic associations triggered by a stimulus and, by extension, to voluntarily regulate the flow of spontaneous mentation. (<a href="http://www.plosone.org/article/info%3Adoi%2F10.1371%2Fjournal.pone.0003083">Pagnoni, 2008</a>)
</p></blockquote>
<h3>Memory</h3>
<p>Studies have also found meditation to improve memory specificity:</p>
<blockquote><p>
Compared to matched controls, MBCT participants showed increased autobiographical memory specificity, decreased overgenerality, and improved cognitive flexibility capacity and capacity to inhibit cognitive prepotent responses. Mediational analyses indicated that changes in cognitive flexibility partially mediate the impact of MBCT on overgeneral memories. (<a href="http://www.ecsa.ucl.ac.be/personnel/heeren/BRT2047-1.pdf">Heeren, 2009</a>)
</p></blockquote>
<p>My understanding of this science is shallow, but it appears that when we try to remember events from our lives, we are able to locate the general memory quite easily, but if other thoughts get in the way, we aren&#8217;t able to go deeper to summon specific details about the event. This might be because feelings get in the way or spontaneous cognition interrupts the process. MBCT may improve autobiographical memory by encouraging:</p>
<blockquote><p>
&#8230;patients  to  practice  noticing  elements of their experience and to do so in a nonjudgmental  way.  In  this  way,  it  encourages  not  only  more  specific  encoding  of  events but  also  more specific retrieval  of past  events by  reducing  the  tendency  for  individuals  to  abort  the  search  process.  Further  research will  be  needed  to  establish  how  much  of  the  change  in  memory comes about as a result of the MBCT&#8217;s effect on encoding  versus  retrieval. (<a href="http://oxfordmindfulness.org/wp-content/uploads/Williams-et-al-2000-OGM-in-MBCT.pdf">Williams, 2000</a>)
</p></blockquote>
<h3>Cognitive Well-Being</h3>
<p>Finally, mindfulness meditation is found to promote an overall improved sense of well-being and emotional maturity. One of the most challenging finds came from a study that found meditators were capable of overcoming their sense of personal offense in a situation and accept what was best for themselves. In a study of the <a href="http://en.wikipedia.org/wiki/Ultimatum_game">Ultimatum Game</a>, where an acquaintance is given $20 and told to share it with you, if you decline what they offer, neither of you get any money. When offered $1, most people will reject the offer to punish the person&#8217;s selfishness, even though this isn&#8217;t a rational decision. Meditators were much more likely to make the rational decision to accept the offer of $1 (<a href="http://www.roanoke.com/news/roanoke/wb/312964">Jones, 2012</a>).</p>
<p>I did not read the research into MBCT being used for treating mental disorders such as depression, but summaries of the research did find positive results in specific cases (Chiesa, 2010). Additionally, more experienced Meditators had more curiosity and a higher level of decentering (Lau, 2006). Mindfulness training reduces maladaptive ruminative thinking and increases adaptive ruminative thinking (<a href="http://www.ecsa.ucl.ac.be/personnel/heeren/mindfulness_rumi.pdf">Heeren, 2011</a>). Subjects given mindfulness training &#8220;demonstrated significant improvements in self-reported mindfulness, depressive symptoms, rumination, and performance measures of working memory and sustained attention, relative to a comparison group who did not undergo any meditation training (Chambers,2008).&#8221;</p>
<p><a name="HowtoMeditate"></a></p>
<h2>How to Meditate</h2>
<p>Meditation is focus, a balance between not letting the mind become bored or falling asleep and not letting the mind become too excited and run away into daydreams. You are cultivating two faculties: &#8220;a meta-awareness that recognizes when one’s attention is no longer on the breath, and an ability to redirect the attention without allowing the meta-awareness to become a new source of distraction (<a href="http://brainimaging.waisman.wisc.edu/~lutz/Meditation_Neuroscience_2005_AL_JDD_RJD_2.pdf">Lutz, 2007</a>).&#8221; Err on the side of focus starting out, focusing on the present moment and on your breath until you are able to focus on nothing and pursue the goal of thinking nothing at all.</p>
<p>But it is also practicing the meta-awareness of your thoughts:</p>
<blockquote><p>
Although mindfulness, or insight meditation, also includes some concentrative practices, the focus of attention is unrestricted such that the meditator develops an awareness of one’s present experience, including thoughts, feelings, or physical sensations as they consciously occur on a moment-by-moment basis (Lau, 2006).
</p></blockquote>
<p>This is <em>cognitive diffusion</em> &#8220;the ability of recognizing thoughts as thoughts and not necessarily as an accurate readout of reality.&#8221; It is looking at our thoughts in the third-person, so instead of thinking &#8220;I am a bad person,&#8221; you observe yourself having the thought &#8220;I am having the thought that I&#8217;m a bad person (Chiesa, 2011).&#8221;</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/08/vulcan_meditation_lamp.jpg" border="0" width="550" height="469" alt="Vulcan Meditation Lamp"><br />
<b>Vulcan Meditation Lamp</b><br />
Credit: Paramount
</div>
<p>Although it sounds easy, meditation is an exercise in <b>self-regulation</b>. It&#8217;s very similar to physical exercises in that the longer your session goes, the harder it is to maintain. Just as you reach a point of exhaustion at the gym, where even the lightest weights become too heavy to lift or the slowest pace on the treadmill becomes too difficult to run, there is a point of mental exhaustion during a meditation session. It seems to me that this cognitive weariness is probably related to the fact that we appear to have a <a href="http://greatergood.berkeley.edu/article/item/yes_you_can">limited reservoir of willpower</a> in our brains, but we can strengthen that area of the brain with practice just like anything else.</p>
<p>The goal of meditation is to carry over the state of mind from the act of meditation into the non-meditative daily life (<a href="http://brainimaging.waisman.wisc.edu/~lutz/Meditation_Neuroscience_2005_AL_JDD_RJD_2.pdf">Lutz, 2007</a>). That&#8217;s why, like exercise, you have to work it into your daily life and not just when you escape to retreats removed from the world. It&#8217;s easy to be mindful and at peace when you don&#8217;t have the stress of the everyday world on your shoulders. What&#8217;s tough is remaining mindful and relaxed despite work deadlines, traffic jams, slow fast food lines with a grumbling stomach, irritating peers, political attack ads, and the thousand little cuts that push us into ruminative thinking and automated behaviors.</p>
<h3>Science Koans</h3>
<p>Zen meditation has the practice of &#8220;focusing on a koan, a specific riddle that is unsolvable by logic, which is said to lead the practitioner to an insight into the true nature of reality (Chiesa, 2011).&#8221; Scientists don&#8217;t need riddles like the &#8220;sound of one hand clapping&#8221; or falling trees making sounds in forests, we have the riddles of reality to meditate on. Here are some &#8220;science koans&#8221; to deeply consider at the opening of a meditation session to ease you into deeper meta-awareness:</p>
<ul>
<li>Erwin Schrodinger: Life <a href="http://mxplx.com/Meme/2388/">Feeds on Negative Entropy</a>, &#8220;sucking orderliness from its environment.&#8221;</li>
<li>Carl Sagan: The Cosmos is <a href="http://mxplx.com/Meme/2379/">just right intellectually</a>, where things are knowable, making existence bearable for thinking beings, but complex enough to offer us seemingly endless challenges.</li>
<li>Lord Kelvin: Atoms are so small that if you poured a glass of water into the ocean and gave them time to distribute evenly, when you later took a glass from the ocean you would <a href="http://mxplx.com/Meme/2387/">find a hundred of the original molecules within it</a>.
<li><a href="http://mxplx.com/Meme/2368/">Lewis Fry Richardson</a>: &#8220;Big whorls have little whorls / Which feed on their velocity / And little whorls have lesser whorls, / And so on to viscosity.</li>
<li>Willem de Sitter: We live in a Universe where gravity pulls galaxies towards one another, but <a href="http://mxplx.com/Meme/2403/">universal expansion pulls them apart</a>.</li>
<li>Jacques Monod: All life is made of <a href="http://mxplx.com/Meme/2317/">lifeless sub-components</a> below the level of the cell.</li>
<li>Sir John Randall: An egg is a chemical process with the power to become a <a href="http://mxplx.com/Meme/2359/">lifeless omelet or a living chicken</a>.</li>
<li>Sir James Hopwood Jeans: <a href="http://mxplx.com/Meme/2157/">Everything is vibrations</a>, light and other forms of radiation are roaming vibrations and matter is bottled up vibrations.</li>
<li>Stephen Hawking: The <a href="http://mxplx.com/Meme/2098/">total energy of the Universe is Zero</a>.</li>
<li>Arthur Koestler: The Cartesian Duality, the idea that our mind is separate from our matter, <a href="http://mxplx.com/Meme/2202/">is an illusion</a>.</li>
<li>Banesh Hoffman: Light is both <a href="http://mxplx.com/Meme/2111/">spread out and localized</a>.</li>
<li>Granville Stanley Hall: Everything society builds and every social interaction we have with others is a <a href="http://mxplx.com/Meme/2085/">plexus of motor habits</a>.</li>
<li>A. S. Eddington: All matter is <a href="http://mxplx.com/Meme/1957/">mostly empty space</a>.</li>
<li>A. S. Eddington: The second law of thermodynamics as a <a href="http://mxplx.com/Meme/1956/">profound distinction between past and future</a>.</li>
<li>George Gaylord Simpson: The origin of the universe is <a href="http://mxplx.com/Meme/2044/">ultimately unknowable</a>.</li>
</ul>
<h3>Meditation for the Scientist/Skeptic</h3>
<p>Scientists and intellectuals have a jump on the average person when it comes to meditation. We have spent countless hours deeply immersed in texts, focusing on the single object of the book and preventing the mind from wandering. Similarly, when we work for long hours on a problem, we are highly focused in the moment. The high I get from reading a good book or programming for an extended period of time is similar to the one I get from an hour of meditation. Intellectuals have the attention part down, we simply need to move our attention from a specific thing to no-thing. Chet Raymo describes prayer as <a href="http://mxplx.com/Meme/2440/">silent observation</a>, which is essentially mindfulness meditation. Simply pay attention without judgment, and when we do judge, note it and let it go.</p>
<p>Easier said than done, but that’s why we practice it.</p>
<p><a name="References"></a></p>
<h2>References</h2>
<p>Anderson ND, Lau MA, Segal ZV, Bishop SR (2007) Mindfulness-based stress reduction and attentional control. Clinical Psychology &#038; Psychotherapy 14(6): 449–463. 10.1002/cpp.544. (<a href="http://onlinelibrary.wiley.com/doi/10.1002/cpp.544/pdf">link</a>)</p>
<p>Bishop SR, Lau M, Shapiro S, Carlson L, Anderson ND, et al. (2004) Mindfulness: A proposed operational definition. Clinical Psychology: Science and Practice 11(3): 230–241. (<a href="http://www.jimhopper.com/pdfs/Bishop2004.pdf">link</a>)</p>
<p>Camerer, Colin; George Loewenstein &#038; Mark Weber (1989). &#8220;The curse of knowledge in economic settings: An experimental analysis&#8221;. Journal of Political Economy 97: 1232–1254.</p>
<p>Chambers R, Lo BCY, Allen NB (2008) The impact of intensive mindfulness training on attentional control, cognitive style, and affect. Cognitive Therapy and Research 32(3): 303–322. 10.1007/s10608-007-9119-0. </p>
<p>Chiesa A, Calati R, Serretti A (2010) Does mindfulness training improve cognitive abilities? A systematic review of neuropsychological findings. Clin Psychol Rev 31: 449–464. </p>
<p>Chiesa A, Malinowski P (2011) Mindfulness-based approaches: Are they all the same? J Clin Psychol 67(4): 404–424. 10.1002/jclp.20776. </p>
<p>Colin, Loewenstein, Mark, The curse of knowledge in economic settings: An experimental analysis, Journal of Political Economy , 97: 1232–1254<br />
(<a href="http://mxplx.com/Meme/2424/">link</a>)</p>
<p>Flavell, J. H. (1979). Metacognition and metacognitive monitoring: A new area of cognitive-developmental inquiry. American Psychologist, 34, 906–911.</p>
<p>Greenberg J, Reiner K, Meiran N (2012) “Mind the Trap”: Mindfulness Practice Reduces Cognitive Rigidity. PLoS ONE 7(5): e36206. doi:10.1371/journal.pone.0036206 (<a href="http://www.plosone.org/article/info%3Adoi%2F10.1371%2Fjournal.pone.0036206">link</a>)</p>
<p>Heeren A, Philippot P (2011) Changes in ruminative thinking mediate the clinical benefits of mindfulness: Preliminary findings. Mindfulness 2(1): 8–13. (<a href="http://www.ecsa.ucl.ac.be/personnel/heeren/mindfulness_rumi.pdf">link</a>)</p>
<p>Heeren A, Van Broeck N, Philippot P (2009) The effects of mindfulness on executive processes and autobiographical memory specificity. Behav Res Ther 47(5): 403–409. (<a href="http://www.ecsa.ucl.ac.be/personnel/heeren/BRT2047-1.pdf">link</a>)</p>
<p>Hinds, Pamela J. (1999).The Curse of Expertise: The Effects of Expertise and Debiasing Methods on Predictions of Novice Performance. Journal of Experimental Psychology: Applied 1999, Vol. 5, No. 2,205-221 (<a href="http://www.stanford.edu/~phinds/PDFs/Curse-of-Expertise-Hinds99.pdf">link</a>)</p>
<p>Hodgins HS, Adair KC (2010) Attentional processes and meditation. Conscious Cogn 19: 878. (<a href="http://www.wcupa.edu/_academics/healthsciences/stressreductioncenter/whymindfulnessnow/documents/Attentionandmeditation2010.pdf">link</a>)</p>
<p>Jha, A.P., Krompinger, J., &#038; Baime, M.J. (2007). Mindfulness training modifies subsystems of attention. Cognitive, Affective, &#038; Behavioral Neuroscience, 7(2), 109–119. (<a href="http://www.amishi.com/lab/assets/pdf/2007_JhaKrompingerBaime.pdf">link</a>)</p>
<p>Jones, Sarah Bruyn (2012), An endless exploration, The Roanoke Times. (<a href="http://www.roanoke.com/news/roanoke/wb/312964">link</a>)</p>
<p>Lau, M., Bishop, S.R., Segal, Z.V., Buis, T., Anderson, N.D., Carlson, L., Shapiro, S., Carmody, J., Abbey, S., &#038; Devins, G. (2006). The Toronto Mindfulness Scale: Development and validation.  Journal of Clinical Psychology, 62(12), 1445–1467.</p>
<p>Lazar, S.W., Kerr, C.E., Wasserman, R.H., Gray, J.R., Greve, D.N., Treadway, M.T., McGarvey, M., Quinn, B.T., Dusek, J.A., Benson, H., Rauch, S.L., Moore, C.I., &#038; Fischl, B. (2005). Meditation experience is associated with increased cortical thickness.  NeuroReport,  16, 1893–1897. (<a href="http://surfer.nmr.mgh.harvard.edu/pub/articles/Lazar_Meditation_Plasticity_05.pdf">link</a>)</p>
<p>Lutz A, Dunne JD, Davidson RJ (2007) Meditation and the neuroscience of consciousness: An introduction. Anonymous The Cambridge handbook of consciousness. New York, NY, US: Cambridge University Press. pp. 499–551.</p>
<p>Moore A, Malinowski P (2009) Meditation, mindfulness and cognitive flexibility. Conscious Cogn 18(1): 176–186. (<a href="http://psy.fgu.edu.tw/web/wlchou/perceptual_psychology/class_pdf/Advanced%20Perceptual/2011/2011week7_HaoChen_paper.pdf">link</a>)</p>
<p>Pagnoni G, Cekic M, Guo Y (2008) “Thinking about Not-Thinking”: Neural Correlates of Conceptual Processing during Zen Meditation. PLoS ONE 3(9): e3083. doi:10.1371/journal.pone.0003083 (<a href="http://www.plosone.org/article/info%3Adoi%2F10.1371%2Fjournal.pone.0003083">link</a>)</p>
<p>Smart, Reginald G. (Apr 1966) Subject selection bias in psychological research. Canadian Psychologist/Psychologie canadienne, Vol 7a(2), Apr 1966, 115-121. doi: 10.1037/h0083096</p>
<p>Wenk-Sormaz H (2005) Meditation can reduce habitual responding. Adv Mind Body 11: 48–58. (<a href="http://www.thaicam.go.th/attachments/364_R2010062808.pdf">link</a>)</p>
<p>Williams, J.M.G., Teasdale, J.D., Segal, Z.V., &#038; Soulsby, J. (2000). Mindfulness-based cognitive therapy reduces overgeneral autobiographical memory in formerly depressed patients.  Journal of Abnormal Psychology, 109(1), 150–155. (<a href="http://oxfordmindfulness.org/wp-content/uploads/Williams-et-al-2000-OGM-in-MBCT.pdf">link</a>)</p>
<p>Zeidan F, Johnson SK, Diamond BJ, David Z, Goolkasian P (2010) Mindfulness meditation improves cognition: Evidence of brief mental training. Conscious Cogn 19(2): 597–605. (<a href="http://jtoomim.org/brain-training/Zeidan2010_Mindfulness_Meditation.pdf">link</a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://ideonexus.com/2012/08/27/the-science-of-mindfulness-meditation-and-practice-for-the-rational-skeptic/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Welcome to Life, A Guide for New Members of Species Homo Sapiens</title>
		<link>http://ideonexus.com/2012/07/30/welcome-to-life-a-creative-commons-childrens-book-for-new-members-of-species-homo-sapiens/</link>
		<comments>http://ideonexus.com/2012/07/30/welcome-to-life-a-creative-commons-childrens-book-for-new-members-of-species-homo-sapiens/#comments</comments>
		<pubDate>Mon, 30 Jul 2012 05:00:30 +0000</pubDate>
		<dc:creator>Ryan Somma</dc:creator>
				<category><![CDATA[Ionian Enchantment]]></category>

		<guid isPermaLink="false">http://ideonexus.com/?p=10239</guid>
		<description><![CDATA[Welcome to Life Science Children&#39;s Book from ideonexus Download a PDF Version Here (9MB) Download a PPTX Version Here (14MB) I was walking through the local forest trail a few months ago, and it was getting dark. As the sky shifted from blue to black, the full moon rose up through the trees creating a [...]]]></description>
				<content:encoded><![CDATA[<p><iframe src="http://www.slideshare.net/slideshow/embed_code/13952895" width="550" height="500" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" style="border:1px solid #CCC;border-width:1px 1px 0;margin-bottom:5px" allowfullscreen> </iframe>
<div style="margin-bottom:5px"> <strong> <a href="http://www.slideshare.net/ideonexus/welcome-to-life-science-childrens-book" title="Welcome to Life Science Children&#39;s Book" target="_blank">Welcome to Life Science Children&#39;s Book</a> </strong> from <strong><a href="http://www.slideshare.net/ideonexus" target="_blank">ideonexus</a></strong> </div>
<p><b><a href="http://www.ryansomma.com/files/welcometolife.pdf">Download a PDF Version Here</a> (9MB)</b></p>
<p><b><a href="http://www.ryansomma.com/files/welcometolife.pptx">Download a PPTX Version Here</a> (14MB)</b></p>
<p>I was walking through the local forest trail a few months ago, and it was getting dark. As the sky shifted from blue to black, the full moon rose up through the trees creating a stunning scene. I realized my ancient ancestors were just as awe-inspired by that glowing orb in the sky, but my present-day awe was much <em>deeper</em> for knowing the moon as an object in space several hundred thousand kilometers away, circling the Earth for the same reason things fall to the ground, much of its mass once belonging to the Earth, lit up by the Sun, and causing the oceans to rise and fall as they follow its orbit.</p>
<p>At once I realized how crucial it was that this cherished knowledge of my place in the Cosmos was something I needed to give my son, Sagan.<br />
<span id="more-10239"></span></p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/07/02.png" border="0" width="550" height="462" alt="Where You Are"><br />
<b>Where You Are</b>
</div>
<p>For the following months, I&#8217;ve been editing and re-editing a power-point slide presentation that I hoped would serve as a children’s book guide to why we are here and what is our purpose in life according to our present scientific understanding of reality. I wanted to communicate, in the simplest terms the following four points:</p>
<p>1. <b>Where You Are:</b> on a planet some of us call Earth, orbiting a star that is the source of all energy on our planet, orbiting a galaxy full of stars, in a Cosmos full of galaxies.</p>
<p>2. <b>How You Got Here:</b> an unbroken chain of mommies who slowly changed over billions of years from a single cell to multi-cells, to worms, to fish, to lizards, to crawling mammals, to cultural mammals.</p>
<p>3. <b>What You Are:</b> a member of a communal species that lives all over the Earth and even in space, working together to increase knowledge and improve our quality of life.</p>
<p>4. <b>Where You Are Going:</b> as your parent, I&#8217;m going to try and raise you to be as smart and successful at life as myself, as my child, you&#8217;re going to try to be even smarter and more successful at life than me.</p>
<p>Of course, no children&#8217;s book alone can communicate such complex and sophisticated points, but I wanted to be prepared to start the dialogue. Superstitious people usually have one strong singular narrative about our origins and purpose to guide their children, as a scientist I need the same. This book is the outline of that strong singular narrative, which will grow larger and more complex as I expand on these core ideas and as Sagan&#8217;s neurons branch and branch away into the details of our shared reality.</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/07/03.png" border="0" width="550" height="466" alt="It's Mommies All the Way Down"><br />
<b>It&#8217;s Mommies All the Way Down</b>
</div>
<p>I&#8217;ve included the Power Point working file, so you can download it, replace my photo of Sagan with your own child/children. Even cooler though, you can <b>edit the book in other ways</b>. Try replacing the animal photos with your own favorites from flickr (just make sure they&#8217;re CC-licensed if you plan to post your own version of the book). Maybe you can add more pages to the book with your children, using the PPT as the starting point of a creative learning adventure.</p>
<p>Happy Secular Parenting!</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/07/04.png" border="0" width="550" height="494" alt="Sagan is a Homo Sapiens"><br />
<b>Sagan is a Homo Sapiens</b>
</div>
<h2>Photo Credits</h2>
<p>This book would not be possible for a design-challenged fool like myself without the generous efforts of these creative commons photographers, taxpayer-funded science programs, and a copyright that had the ability to expire once upon a time.</p>
<p><b>Cover</b></p>
<ul>
<li><a href="http://www.flickr.com/photos/stuckincustoms/3410667874/">Andes Hike by Trey Ratcliff</a></li>
</ul>
<p><b>Page 4</b></p>
<ul>
<li><a href="http://www.flickr.com/people/neychurluvr/">Sun by Pranav Yaddanapudi</a></li>
</ul>
<p><b>Page 5</b></p>
<ul>
<li><a href="http://www.flickr.com/photos/puliarfanita/4927482821/">Moon by Anita Ritenour</a></li>
</ul>
<p><b>Page 3, 6 , 7, 8, 20</b> </p>
<ul>
<li>Photos by NASA</li>
</ul>
<p><b>Page 9</b></p>
<ul>
<li>Marie Curie, Ada Lovelace, Hypatia, Minerva, Nefertiti, and Woman from Brassempou in Public Domain</li>
</ul>
<p><b>Page 10 – 11</b></p>
<ul>
<li><a href="http://www.flickr.com/photos/eclectic-echoes/54629630/">A Mother&#8217;s Touch by Eric Heupel</a></li>
<li><a href="http://www.flickr.com/photos/davidden/2269694846/">Ring Tail Lemur in Berenty by David Dennis</a></li>
<li><a href="http://www.flickr.com/photos/jomak14/2836615665/">African Giant Shrew &#8211; A Fascinating One by Joey M.</a></li>
<li><a href="http://www.flickr.com/photos/ellenm1/4261041794/">Eryops by ellenm1</a></li>
<li><a href="http://www.flickr.com/photos/linden_tea/5212816060/">Tiktaalik by Linden Tea</a></li>
<li><a href="http://www.flickr.com/photos/smerikal/6227540054/">Coelacanth by Sini Merikallio</a></li>
<li><a href="http://www.flickr.com/photos/briangratwicke/3014114826/">Aquatic Caecilian by Brian Gratwicke</a></li>
<li><a href="http://www.flickr.com/photos/vintzileos/2732523414/">Jellyfish by Giorgos Vintzileos</a></li>
<li><a href="http://www.flickr.com/photos/29750062@N06/4148954138/">Slime Mold by Richard Droker</a></li>
<li><a href="http://commons.wikimedia.org/wiki/File:SFRP1_64cell.jpg">Single Cell by Wikipedia User Perezoso</a></li>
</ul>
<p><b>Page 12</b></p>
<ul>
<li><a href="http://www.flickr.com/photos/zooboing/3662883261/">Cells by Patrick Hoesly</a></li>
<li><a href="http://www.flickr.com/photos/didmyself/6312323838/">Multicellular by Daniel Kulinski</a></li>
</ul>
<p><b>Page 13</b></p>
<ul>
<li><a href="http://www.flickr.com/photos/usoceangov/4115872878/">Kelp by NOAA</a></li>
<li><a href="http://www.flickr.com/photos/cassimano/2522688766/">Sea Urchin by cassimano</a></li>
</ul>
<p><b>Page 15</b></p>
<ul>
<li><a href="http://www.flickr.com/photos/mwestcalifornia/256897572/">Tarantula by calwest</a></li>
<li><a href="http://www.flickr.com/photos/e_monk/4195187637/">Milipede by e_monk</a></li>
<li><a href="http://www.flickr.com/photos/opoterser/2651845380/">Damselfly by Thomas Shaha</a></li>
</ul>
<p><b>Page 18</b></p>
<ul>
<li>Images by NHS Human Services</li>
</ul>
<p><b>Page 21</b></p>
<ul>
<li><a href="http://www.michelletricca.com/">A Face in the Crowd (detail) by Michelle Tricca</a></li>
<li><a href="http://www.flickr.com/photos/colemama/5743773308/">On Flickr</a></li>
</ul>
<p><b>Page 22</b></p>
<ul>
<li><a href="http://www.flickr.com/photos/nosha/3043953285/">New York by Nathan Siemers</a></li>
<li><a href="http://www.flickr.com/photos/mrtruffle/2832477421/">Rio de Janero by Ashley Ringrose</a></li>
<li><a href="http://www.flickr.com/photos/klebtahi/4691365686/">Dubai by Kamel Lebtahi</a></li>
<li><a href="http://www.flickr.com/photos/sprengben/4315145017/">Hong Kong Skyline by Spreng Ben</a></li>
</ul>
<p><b>Page 23</b></p>
<ul>
<li><a href="http://www.flickr.com/photos/the10101/3998377171/">Eastern Virginia Medical School by Wugging Gavagai</a></li>
<li><a href="http://www.flickr.com/photos/johnmcnab/4248698746/">Large Hadron Collider by CERN</a></li>
<li><a href="http://www.flickr.com/photos/paullew/3521964549/">Oxford by Fr Lawrence Lew, O.P.</a></li>
<li>ISS &#8211; NASA</li>
</ul>
<p><b>Page 24</b></p>
<ul>
<li><a href="http://www.flickr.com/photos/justinwkern/5756196362/">Yosemite by Justin Kern</a></li>
</ul>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/07/01.png" border="0" width="550" height="423" alt="Welcome to Life"><br />
<b>Welcome to Life</b><br/><br />
A Creative Commons Children’s Book for New Members of Species Homo Sapiens
</div>
]]></content:encoded>
			<wfw:commentRss>http://ideonexus.com/2012/07/30/welcome-to-life-a-creative-commons-childrens-book-for-new-members-of-species-homo-sapiens/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Top 10 Books Exploring Otherness</title>
		<link>http://ideonexus.com/2012/07/01/top-10-books-exploring-otherness/</link>
		<comments>http://ideonexus.com/2012/07/01/top-10-books-exploring-otherness/#comments</comments>
		<pubDate>Sun, 01 Jul 2012 06:14:15 +0000</pubDate>
		<dc:creator>Ryan Somma</dc:creator>
				<category><![CDATA[Mediaphilism]]></category>

		<guid isPermaLink="false">http://ideonexus.com/?p=10221</guid>
		<description><![CDATA[Top 10 Books Exploring Otherness I hate doing top 10 lists because I am going to make some huge embarrassing oversite and I really don&#8217;t have any objective way to order what makes the list. That being said, this list consist of my own personal favorites from the world of literature as someone who grew [...]]]></description>
				<content:encoded><![CDATA[<p>Top 10 Books Exploring Otherness</p>
<p>I hate doing top 10 lists because I am going to make some huge embarrassing oversite and I really don&#8217;t have any objective way to order what makes the list. That being said, this list consist of my <em>own personal favorites</em> from the world of literature as someone who grew up in a western society with all the cultural baggage that comes with it. These are books where the aliens are <em>alien</em>, and their otherness gives us a new perspective on our own identity and culture.</p>
<h2>10. <em>War of the Worlds</em></h2>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/07/waroftheworlds.jpg" border="0" width="348" height="500" alt="War of the Worlds">
</div>
<p><span id="more-10221"></span><br />
HG Welles&#8217; story about <a href="http://en.wikipedia.org/wiki/The_War_of_the_Worlds">martians landing on planet Earth</a> is still a hauntingly gripping tale and inspired nearly a century of alien-invasion stories and film adaptations. Welles sets the standard for otherness storytelling by wisely never explaining the meaning behind much of the Martians’ actions, leaving the reader to wonder in horror along with the protagonist navigating the war-torn landscape. I&#8217;ve written more on this novel <a href="http://ideonexus.com/2005/12/11/great-books-hg-welles/">here</a>.</p>
<h2>9. <em>Mote in God&#8217;s Eye</em></h2>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/07/moteingodseye.jpg" border="0" width="309" height="500" alt="Mote in God's Eye">
</div>
<p>Larry Niven and Jerry Pournelle’s <a href="http://en.wikipedia.org/wiki/The_Mote_in_God's_Eye">1974 story of first contact</a> with an alien race the humans refer to as the &#8220;Moties,&#8221; is filled with twists and turns. The alien race is ancient to the point of having evolved into many different species that coexist through different specializations, but its technological progress is strangely stunted and the human delegation discovers museums around the planet meant to help rebuild civilization after a collapse, which appears to happen on a regular basis throughout Motie history. The reason for these collapses has to do with a dark secret about Motie biology, which serves as a warning to human civilizations as well.</p>
<h2>8. <em>Blood Music</em></h2>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/07/bloodmusic.jpg" border="0" width="270" height="400" alt="Blood Music">
</div>
<p>Greg Bear&#8217;s <a href="http://en.wikipedia.org/wiki/Blood_Music_(novel)">1985 novel</a> about a scientist engineering living cells to store information and who injects those cells into himself when prosecuted for unethical research, is also an apocalyptic story about the pandemic this act causes. The cells find their way into the population, transforming the bodies of those they infect to better serve their own needs, quickly transforming North America into a mass of alien organs networked with veins. The story is told from a variety of viewpoints, from those who are uninfected but stuck in the alien landscape to those of people in foreign countries watching in horror at what has become of America&#8217;s population.</p>
<h2>7. <em>Nor Crystal Tears</em></h2>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/07/NorCrystalTears.jpg" border="0" width="200" height="328" alt="Nor Crystal Tears">
</div>
<p>The extremely prolific science fiction author <a href="http://en.wikipedia.org/wiki/Alan_Dean_Foster">Alan Dean Foster</a> has taken readers to a myriad of planets and alien concepts, but this <a href="http://en.wikipedia.org/wiki/Nor_Crystal_Tears">first contact novel</a> that supplies the origin story of his <a href="http://en.wikipedia.org/wiki/Humanx_Commonwealth">Humanx Commonwealth</a> was special for telling the story of first contact with humans <em>from the perspective of the aliens</em>, who, among other things, are disturbed by the way we wear our skeletons &#8220;on the inside.&#8221; </p>
<h2>6. <em>More Than Human</em></h2>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/07/MoreThanHuman.jpg" border="0" width="250" height="432" alt="More Than Human">
</div>
<p>I first encountered Theodore Sturgeon&#8217;s <a href="http://en.wikipedia.org/wiki/More_Than_Human">1953 novel</a> in a college course on science fiction and it has kind of stuck with me ever since. The story chronicles the formation of a <a href="http://en.wiktionary.org/wiki/gestalt">gestalt organism</a> out of misfit, outcast human beings who all possess different powers, from telepathy, teleportation, to computation. Together they are a mouth, limbs, and brain.</p>
<h2>5. <em>Expedition</em></h2>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/07/expedition.jpg" border="0" width="500" height="500" alt="Expedition">
</div>
<p>Wayne Douglas Barlowe&#8217;s illustrated account of the <a href="http://en.wikipedia.org/wiki/Expedition_(book)">2358 A.D. Voyage to Darwin IV</a> has become a collector&#8217;s item and was made into a fictional documentary by the Discovery Channel titled <em><a href="http://en.wikipedia.org/wiki/Alien_Planet">Alien Planet</a></em>. It resembles the books written by 18th century naturalists, brimming with illustrations of fascinatingly alien life, some of which runs on two legs one in front of other like horses, some are lumbering behemoths taking nutrients in through their feet, some float in the air using balloon-like organs, but none have eyes that receive photons like ours do. You can check out a nice sampling of these aliens <a href="http://waynebarlowe.wordpress.com/artwork/expedition/">here</a>.</p>
<h2>4. <em>Flatland</em></h2>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/07/flatland.jpg" border="0" width="379" height="500" alt="Flatland">
</div>
<p>Edwin Abbott Abbott&#8217;s 1884 <a href="http://en.wikipedia.org/wiki/Flatland">Romance of Many Dimensions</a> explores what life is like in two dimensions, but the story was also a scathing criticism of Victorian culture with its class hierarchies and chauvinism. I&#8217;ve written more on this book <a href="http://ideonexus.com/2007/07/02/great-books-flatland-a-romance-of-many-dimensions/">here</a> and a comparison of its two film adaptations <a href="http://ideonexus.com/2008/01/18/a-tale-of-two-flatlands/">here</a>.</p>
<h2>3. <em>Fiasco</em></h2>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/07/fiasco.jpg" border="0" width="220" height="350" alt="Fiasco">
</div>
<p>Stanislaw Lem wrote some of the most thought-provoking science fiction out there, and it&#8217;s difficult to choose one of his many novels dealing with the concept of <a href="http://en.wikipedia.org/wiki/Fermi_paradox">Fermi&#8217;s Paradox</a> and his explanation that if extraterrestrial life exists out there, it is too alien to contact. <a href="http://en.wikipedia.org/wiki/Fiasco_(novel)"><em>Fiasco</em></a> involves a ship sent to make contact with an alien civilization with tragic consequences. From their first encounter, the aliens are impossible to comprehend; from their legion of communications satellites apparently at war with one another to the ring of ice put into orbit for the purpose of producing a perpetual rain of moisture down on the planet, the human visitors are first puzzled and later angered by their inability to establish contact with the inhabitants through demonstrations of awesome military power and laser projections into the clouds blanketing the planet. When the aliens are finally revealed, the mystery only deepens.</p>
<h2>2. <em>Kabloona</em></h2>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/07/kabloona.jpg" border="0" width="325" height="488" alt="Kabloona">
</div>
<p>I&#8217;ve <a href="http://ideonexus.com/2008/06/03/gontran-de-poncins-kabloona/">previously written about</a> Gontran De Poncins’ nonfiction tale of the <a href="http://en.wikipedia.org/wiki/Kabloona">anthropologist&#8217;s experience visiting Eskimo tribes</a>, heading further and further north in hopes of finding one that had never encountered a westerner before. It&#8217;s remarkable for the way is objectively relates the customs and thought-patterns of these native peoples, from their practice of euthanizing old people, sharing their wives with visitors, and thinking little of murder. They never come across as malicious, but innocent in simple in their thinking, as when westerners begin to prosecute them for murder and tales of warm jail cells with free food spark a crime wave of Eskimos seeking to be imprisoned. </p>
<h2>1. <em>Fire Upon Deep</em></h2>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/07/fireupondeep.jpg" border="0" width="211" height="325" alt="Fire Upon Deep">
</div>
<p>Vernor Vinge&#8217;s <a href="http://en.wikipedia.org/wiki/A_Fire_Upon_the_Deep">1993 novel</a> is one of the deepest, most brilliant world-building exercises I&#8217;ve ever read. What makes the otherness of his aliens so intriguing is the way he <em>lets the reader into their heads</em> when possible. There are the skroderiders, tree-like aliens that a more advanced unknown race equipped with wheels to make them mobile and computers to give them short-term memory. There are the &#8220;Powers,&#8221; consciousnesses that have transcended our reality, with motivations and behaviors beyond our comprehensions, and there is the &#8220;Blight,&#8221; a sort of sentient computer virus that uses the galactic internet to destroy worlds and spread confusion throughout the galaxy.</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/07/tinelogo.png" border="0" width="473" height="389" alt="Tines"><br />
<b>Credit: Unknown</b>
</div>
<p>But the most intriguing aliens in the novel are the Tines, doglike creatures that form multi-bodied organisms. A pack of these creatures will form a single individual, their brains networked through sound vibrations to form a single consciousness. Because these networks rely on sound, individual tines cannot get very close to each other, lest their brains begin to interfere with one another and mating is an act of pure bestial confusion. When too many members of an individual Tine die, the remaining members are crippled. When one of the tines obtains the technology of radio broadcasting, it is able to spread its different bodies out far and wide, making it quasi-omniscient compared to other members of the species. All of these different forms of consciousness and culture take place in a story that is both exciting and satisfying intellectually. </p>
<h2>Honorable Mentions</h2>
<p><a href="http://en.wikipedia.org/wiki/Solaris_(novel)"><b><em>Solaris</em></b></a>: Another of Lem&#8217;s great books about a planet covered in an ocean of living cells that begins to experiment with the human visitors exploring it.</p>
<p><a href="http://en.wikipedia.org/wiki/The_Forge_of_God"><b><em>Forge of God</em></b></a>: Greg Bear&#8217;s novel about a variety of alien visitors who appear on Earth following the disappearance of one of Jupiter&#8217;s moons is about the concept of <a href="http://ideonexus.com/2007/03/17/are-we-von-neumann-machines/">Von Neumann Machines</a> that replicate across the Universe, but their intentions are hostile.</p>
<p><a href="http://en.wikipedia.org/wiki/Sentenced_to_Prism"><b><em>Sentenced to Prism</em></b></a>: Alan Dean Foster&#8217;s book exploring the concept of silicon-based life has a fantastic and creepy first half, but kind of falls apart halfway through in terms of otherness, but is a fun pulpy fiction nonetheless.</p>
]]></content:encoded>
			<wfw:commentRss>http://ideonexus.com/2012/07/01/top-10-books-exploring-otherness/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Naming is Not Understanding</title>
		<link>http://ideonexus.com/2012/05/28/naming-is-not-understanding/</link>
		<comments>http://ideonexus.com/2012/05/28/naming-is-not-understanding/#comments</comments>
		<pubDate>Mon, 28 May 2012 05:00:39 +0000</pubDate>
		<dc:creator>Ryan Somma</dc:creator>
				<category><![CDATA[Ionian Enchantment]]></category>

		<guid isPermaLink="false">http://ideonexus.com/?p=10196</guid>
		<description><![CDATA[Evil Eye Galaxy, Messier 64 (M64) Credit: NASA Before becoming a parent, I was well-acquainted with the word &#8220;colic.&#8221; According to my mother, I suffered from severe colic as a baby, keeping her up all night for weeks with my crying. I&#8217;ve also heard parents toss the term about when talking about their baby-raising trials [...]]]></description>
				<content:encoded><![CDATA[<div align="center">
<a href="http://www.nasa.gov/multimedia/imagegallery/image_feature_1137.html"><img src="http://ideonexus.com/wp-content/uploads/2012/05/evileyegalaxy.jpg" border="0" width="550" height="412" alt="Evil Eye Galaxy, Messier 64 (M64)"></a><br />
<b>Evil Eye Galaxy, Messier 64 (M64)</b><br />
Credit: <a href="http://www.nasa.gov/multimedia/imagegallery/image_feature_1137.html">NASA</a>
</div>
<p>Before becoming a parent, I was well-acquainted with the word &#8220;colic.&#8221; According to my mother, I suffered from severe colic as a baby, keeping her up all night for weeks with my crying. I&#8217;ve also heard parents toss the term about when talking about their baby-raising trials and tribulations. After having our son Sagan, I got to hear the term from one of our pediatricians concerning him having a crying episode one night as a possible explanation for the outburst.</p>
<p>Curious about this seemingly common medical condition, I decided to look up the <a href="http://en.wikipedia.org/wiki/Baby_colic">definition</a> myself:</p>
<blockquote><p>
The strict medical definition of colic is <em>a condition of a healthy baby in which it shows periods of intense, <b>unexplained</b> fussing/crying lasting more than 3 hours a day, more than 3 days a week for more than 3 weeks.</em> [Bold Mine]
</p></blockquote>
<p>There&#8217;s that word there, <em>unexplained</em>. For years I thought this word &#8220;colic&#8221; described a phenomenon that was understood and therefore natural. The <a href="http://www.etymonline.com/index.php?term=colic">etymology</a> of the word, pertaining to &#8220;disease characterized by severe abdominal pain&#8221; in the early 15th century suggests the infant&#8217;s crying is <em>explainable</em>, but in reality the term <em>colic</em> is just a fancy way for your pediatrician to say, &#8220;I don&#8217;t know why your baby is chronically crying.&#8221;<br />
<span id="more-10196"></span><br />
And the more I thought about the word, the more it disturbed me. The phrase &#8220;just colic&#8221; returns <a href="https://www.google.com/search?sugexp=chrome,mod=15&#038;sourceid=chrome&#038;ie=UTF-8&#038;q=nominal+fallacy#hl=en&#038;sclient=psy-ab&#038;q=%22just+colic%22&#038;oq=%22just+colic%22&#038;aq=f&#038;aqi=g-bK4&#038;aql=&#038;gs_l=serp.3..0i8i30l4.5445329.5447166.0.5447492.12.11.0.0.0.0.357.1456.2j1j2j2.7.0...0.0.c0Q1H8hmXws&#038;pbx=1&#038;bav=on.2,or.r_gc.r_pw.r_cp.r_qf.,cf.osb&#038;fp=b9a1a91a1c32eab1&#038;biw=1600&#038;bih=837">47,100 google results</a> and is a sentiment I&#8217;ve heard more than one parent use. &#8220;Just colic&#8221; implies that there is nothing to worry about, but not knowing the cause of your baby&#8217;s crying <em>is something to worry about</em>. &#8220;Just colic&#8221; implies that there is little to be done about it, but if you can figure out the cause of the infant&#8217;s discomfort then you <em>can do something about it</em>. The word <em>colic</em> is dangerous, because it is ignorance masquerading as knowledge, where the <em>knowledge</em> that your child has acid reflux, the stomach flu, or a food allergy <em>empowers</em> you to do something to treat it and improve your quality of life and your child&#8217;s.</p>
<p>The erroneous assumption that because something has a name it also has an explanation is known as the <a href="http://www.indiana.edu/~p1013447/dictionary/nomfall.htm">nominal fallacy</a>, and it&#8217;s a trap the scientifically-minded fall into all the time that damages our understanding of the world. In his 2011 <em>Edge</em> Question response, Stuart Firestein <a href="http://edge.org/response-detail/2762/what-scientific-concept-would-improve-everybodys-cognitive-toolkit">suggests</a> that recognizing instances of the nominal fallacy in our everyday life would greatly improve our perspective on what we know and don&#8217;t know:</p>
<blockquote><p>
Too often in science we operate under the principle that &#8220;to name it is to tame it&#8221;, or so we think. One of the easiest mistakes, even among working scientists, is to believe that labeling something has somehow or another added to an explanation or understanding of it. Worse than that we use it all the time when we are teaching, leading students to believe that a phenomenon that is named is a phenomenon that is known, and that to know the name is to know the phenomenon. </p>
<p>[...]</p>
<p>In science the one critical issue is to be able to distinguish between what we know and what we don&#8217;t know. This is often difficult enough as things that seem known, sometimes become unknown or at least more ambiguous. When is it time to quit doing an experiment because we now know something, when is it time to stop spending money and resources on a particular line of investigation because the facts are known? This line between the known and the unknown is already difficult enough to define, but the nominal fallacy often obscures it needlessly.
</p></blockquote>
<p>&#8220;An instance of the nominal fallacy is most easily seen when the meaning or importance of a term or concept shrinks with knowledge,&#8221; Firestein explains, using the word &#8220;instinct&#8221; as an example. The word <a href="http://en.wikipedia.org/wiki/Instinct">instinct</a> applies to a living organism&#8217;s inclination to a specific behavior in response to a stimulus; in other words, <em>instinct</em> is a label we apply to any animal behavior which we cannot explain as the product of environmental conditioning. <em>Instinct</em> is the nature side of the nature/nurture false dichotomy, and it explains absolutely nothing.</p>
<p>Another example is <a href="http://answers.yahoo.com/question/index?qid=20070322131710AAGRwGI"><em>death by natural causes</em></a> as it is used in everyday conversation is synonymous with &#8220;<em>death by old age</em>,&#8221; but there is no such thing in the scientific world. Some failure within the deceased&#8217;s body caused the death. If you can explain what happened, it is no longer &#8220;natural causes&#8221; in the common use of the term; the deceased expired from a specific, nameable cause.</p>
<p>In the medical world <a href="http://en.wikipedia.org/wiki/Death_by_natural_causes"><em>death by natural causes</em></a> is any death by any illness or malfunction of the body; as opposed to, <a href="http://en.wikipedia.org/wiki/Unnatural_death"><em>unnatural death</em></a> which includes accidents and homicides. But this can be extremely misleading as well. When an alcoholic dies of cirrhosis’s of the liver, a lifetime smoker dies of lung cancer, or a family living downwind of a coal power plant dies from pollution exposure, &#8220;natural causes&#8221; seems inadequate, vague, and outright lazy.</p>
<p>George Gaylord Simpson <a href="http://books.google.com/books?id=oTFEYuvKCWIC&#038;pg=RA3-PA11-IA5&#038;lpg=RA3-PA11-IA5&#038;dq=George+Gaylord+Simpson+Call+that+great+Unknowable&#038;source=bl&#038;ots=vJJ3V1ymxU&#038;sig=FUx85btHFIL9k_3DsC6lA8H3Rqw&#038;hl=en&#038;sa=X&#038;ei=g3HCT4CcMKqY6QH1v4y0Cg&#038;ved=0CFQQ6AEwAw#v=onepage&#038;q&#038;f=false">applied this same logic</a> to a word many people still invoke today as a faux explanation for things we don&#8217;t yet understand and who often use it as an excuse to shutdown further inquiry:</p>
<blockquote><p>
Call that great Unknowable by any name you wish, call it X, or Yahweh, or God, or say that God created it. Applying the letters &#8220;g&#8221;, &#8220;o&#8221;, and &#8220;d&#8221; to it or what created it is no explanation and no consolation. It is a common failing, even more among scientists than among laymen, to think that naming a thing explains it, or that we know a thing because we can put a name to it. But to say that God created the universe means nothing whatever.
</p></blockquote>
<p>At the same time, we cannot deny that naming, if used properly, is an important step towards understanding. As Chet Raymo <a href="http://blog.sciencemusings.com/2006/09/on-names-and-understanding_22.html">explains</a>:</p>
<blockquote><p>
To name a perceptible thing has some advantage; it makes it possible to talk about it. There can be no theory of the electron, for example, until we have a word for the electron. But naming is not understanding. Before we say we understand a thing, we must weave it into the web of concepts that constitutes a theory. Only when the concept &#8220;electron&#8221; is enmeshed in a matrix of other ideas &#8212; atoms, fields, valency, molecular bonds, etc. &#8212; by taut, quantitative connections, do we have confidence that we know what an electron is.
</p></blockquote>
<p>&#8220;Electron,&#8221; &#8220;photon,&#8221; &#8220;quark,&#8221; or other name we give an elementary particle is really just a label for a collection of repeatedly observed characteristics. When we talk about <a href="http://en.wikipedia.org/wiki/Atomic_orbital">atomic orbitals</a>, we intuitively think of electrons orbiting a nucleus in a manner similar to planets orbiting the sun, like this:</p>
<div align="center">
<a href="http://ideonexus.com/2008/10/07/elementary-particles-at-the-quantum-zoo/"><img src="http://ideonexus.com/wp-content/uploads/2008/10/heliumatom.jpg" border="0" width="400" height="400" alt="Model of a Helium Atom"></a><br />
<b>Model of a Helium Atom</b><br />
Credit: <a href="http://ideonexus.com/2008/10/07/elementary-particles-at-the-quantum-zoo/">me</a>
</div>
<p>In reality, the &#8220;orbit&#8221; metaphor only works insofar as to describe the fact that the electron stays in proximity to the atomic nucleus, but beyond that it completely fails. The &#8220;orbit&#8221; of an electron only defines the area around the atom in which it is <em>most likely</em> to be found, meaning it could be found well outside its orbit at times. I remember how mind-bending it was the first time I saw Wikipedia&#8217;s <a href="http://en.wikipedia.org/wiki/Atomic_orbital#Orbitals_table">table of orbitals</a>, trying to rationally understand what I was seeing, which the article explains should be thought of as &#8220;waves on a circular drum&#8221; for some examples and <em>planetary orbits</em> for others:</p>
<div align="center">
<a href="http://en.wikipedia.org/wiki/Atomic_orbital#Orbitals_table"><img src="http://ideonexus.com/wp-content/uploads/2012/05/electronorbits.png" border="0" width="550" height="183" alt="Electron Orbits"></a><br />
<b>Electron Orbits</b><br />
Credit: <a href="http://en.wikipedia.org/wiki/Atomic_orbital#Orbitals_table">Wikipedia</a>
</div>
<p>When we think about the atom and other quantum relics, it&#8217;s okay to imagine it in metaphors drawn from our macro-world, so long as we always remember that these are <em>only metaphors</em>, shadows representing a reality completely alien to us. As Niels Bohr best <a href="http://mxplx.com/Meme/1609/">explains it</a>, &#8220;We must be clear that when it comes to atoms, language can be used only as in poetry. The poet, too, is not nearly so concerned with describing facts as with creating images and establishing mental connections.&#8221;</p>
<p>The <a href="http://en.wikipedia.org/wiki/Wave%E2%80%93particle_duality">wave-particle duality</a>, <a href="http://en.wikipedia.org/wiki/Gravity">gravity</a>, <a href="http://en.wikipedia.org/wiki/Dark_matter">dark matter</a>, and <a href="http://en.wikipedia.org/wiki/Dark_energy">dark energy</a> are other examples of phenomena we have named, but for which we do not have truly satisfying explanations. Naming them, acknowledging their existence, was the first step toward understanding through observation and experimentation. </p>
<p>A name for a thing should never mark the end of an inquiry into its nature, but rather a beginning.</p>
]]></content:encoded>
			<wfw:commentRss>http://ideonexus.com/2012/05/28/naming-is-not-understanding/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Adventures in Personal Genomics</title>
		<link>http://ideonexus.com/2012/04/16/adventures-in-personal-genomics/</link>
		<comments>http://ideonexus.com/2012/04/16/adventures-in-personal-genomics/#comments</comments>
		<pubDate>Mon, 16 Apr 2012 05:00:06 +0000</pubDate>
		<dc:creator>Ryan Somma</dc:creator>
				<category><![CDATA[Geeking Out]]></category>

		<guid isPermaLink="false">http://ideonexus.com/?p=10150</guid>
		<description><![CDATA[Jump To: Introduction Closed-Source Genetics Open-Source Genetics Going Public With My Genome Better Living Through Personal Genomics DIY Genomic Sequencing for Programmers My Personal Genomic Results Further Reading Single Nucleotide Polymorphism (SNP) Introduction It&#8217;s been over a year since I signed up with 23andMe and several months now since I downloaded my raw genomic data [...]]]></description>
				<content:encoded><![CDATA[<p><b>Jump To:</b><br />
<a href="http://ideonexus.com/2012/04/16/adventures-in-personal-genomics/#Introduction">Introduction</a><br />
<a href="http://ideonexus.com/2012/04/16/adventures-in-personal-genomics/#ClosedSource">Closed-Source Genetics</a><br />
<a href="http://ideonexus.com/2012/04/16/adventures-in-personal-genomics/#OpenSource">Open-Source Genetics</a><br />
<a href="http://ideonexus.com/2012/04/16/adventures-in-personal-genomics/#GoingPublic">Going Public With My Genome</a><br />
<a href="http://ideonexus.com/2012/04/16/adventures-in-personal-genomics/#BetterLiving">Better Living Through Personal Genomics</a><br />
<a href="http://ideonexus.com/2012/04/16/adventures-in-personal-genomics/#Programmers">DIY Genomic Sequencing for Programmers</a><br />
<a href="http://ideonexus.com/2012/04/16/adventures-in-personal-genomics/#PersonalGenomicResults">My Personal Genomic Results</a><br />
<a href="http://ideonexus.com/2012/04/16/adventures-in-personal-genomics/#FurtherReading">Further Reading</a><br />
<br/><br/><br />
<center></p>
<div align="center" style="background-color:#ffffff;width:416px;height:521px;">
<img src="http://ideonexus.com/wp-content/uploads/2012/04/snp.png" border="0" width="416" height="521" alt="Single Nucleotide Polymorphism (SNP)">
</div>
<p><b>Single Nucleotide Polymorphism (SNP)</b><br />
</center><br />
<a name="Introduction"></a><br />
<h2>Introduction</h2>
<p>It&#8217;s been over a year since I signed up with 23andMe and several months now since I downloaded my raw genomic data from them and started seeing what I could learn from it on my own. Although very few services out there will fully sequence your personal genome, by focusing on sequencing an individual&#8217;s <a href="http://en.wikipedia.org/wiki/Single-nucleotide_polymorphism">Single Nucleotide Polymorphisms (SNPs)</a>, pronounced &#8220;Snips&#8221; for short, which are the <em>variables</em> between human genomes, we can focus on what&#8217;s of interest in our personal genomic data and get this data relatively cheaply. By comparing the differences in our genes, our <a href="http://en.wikipedia.org/wiki/Genotype">genotypes</a>, my wife and I could learn about how they differently express themselves in our lives, our <a href="http://en.wikipedia.org/wiki/Phenotype">phenotypes</a>, to gain insights about our health risks as well as interesting traits about ourselves that may explain our behaviors and experiences throughout life.<br />
<span id="more-10150"></span><br />
<a name="ClosedSource"></a><br />
<h2>Closed-Source Genetics</h2>
<p>For $1,100 <a href="http://www.decodeme.com/">deCODEme</a> will &#8220;Calculate your genetic risk for 47 conditions and traits,&#8221; but not include any ancestry analysis. Alternatively, <a href="http://www.navigenics.com/">Navigenics</a> offers genome scans for <a href="http://www.wired.com/wiredscience/2009/01/navigenics-lame-attempt-at-cut-price-genetics/">$2,750</a> according to a 2009 <em>Wired</em> article (they don&#8217;t post prices online themselves), and <a href="http://www.knome.com">Knome</a> offers total genome sequencing for $3,750.</p>
<p>So at $207 test + year-subscription deal <a href="https://www.23andme.com">23andMe</a> has far and away the best deal for getting your personal genome sequenced. Although 23andMe doesn&#8217;t fully sequence your genome, it does sequence 960,520 SNPs and you get to download the whole thing to keep and take with you&#8211;<b>which is crucially important</b> (as I will get to in the <em>open-source</em> part further down).</p>
<h3>The Good Stuff</h3>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/04/traits.jpg" border="0" width="540" height="308" alt="My Traits"><br />
<b>My Traits</b>
</div>
<p>The best thing about 23andMe is the interface. They take your results and break them down into your disease risks, drug responses, and various traits. Right off the bat it impresses me for correctly identifying my phenotype as expressing brown eyes (<a href="http://snpedia.com/index.php/Rs12913832">rs12913832(A;G)</a>), curly hair (what hasn&#8217;t fallen out (<a href="http://snpedia.com/index.php/Rs17646946">rs17646946(G;G)</a>)), lactose tolerance (<a href="http://snpedia.com/index.php/Lactose_intolerance">rs4988235(A;G)</a>), and a tendency to smoke like a chimney if I smoked (which I did at a pack or more a day for 10 years (<a href="http://snpedia.com/index.php/Rs1051730">rs1051730(A;G)</a>)).</p>
<p>But it&#8217;s the stuff you don&#8217;t know about yourself that makes it worth it. I learned that I cannot perceive bitter tastes (<a href="http://snpedia.com/index.php/Rs713598">rs713598(C,C)</a>), which was interesting, while my wife&#8217;s apparent ability to taste bitter could explain some of our differing culinary preferences (although we couldn’t think of anything). Then there was the norovirus resistance (<a href="http://snpedia.com/index.php/Rs601338">rs601338(A;A)</a>), which could explain why I usually get off easy when a stomach flu goes around. </p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/04/aact3.png" border="0" width="444" height="330" alt="ACTN3"><br />
<b>ACTN3</b>
</div>
<p>But most enlightening was finding I lack any copies of alpha-actinin-2 (ACTN3) in my fast-twitch muscle fiber (<a href="http://snpedia.com/index.php/Rs1815739">rs1815739(T;T)</a>), meaning I am a terrible sprinter and throughout my public school years I was indeed consistently a poor-performer at short-distance sprints. As my father, a runner of marathons now approaching his 70s, liked to say, &#8220;In the running world there are gazelles and there are plough horses. I am a plough horse.&#8221; Now I know that my inability to make a half-marathon in less than two hours is likely hereditary. At the same time, the TT genotype may confer some ability to make greater gains at strength training, which would explain my enjoyment of weight lifting.</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/04/neanderthalDNA.jpg" border="0" width="431" height="205" alt="Neanderthal DNA"><br />
<b>Neanderthal DNA</b>
</div>
<p>23andMe also offers some fun stuff, like calculating how much Neanderthal DNA you have. I was proud to learn that I share 3.0% of my genes with our distant cousins, putting me in the 96th percentile, which I hope means that my ancestors made a bigger contribution to breeding them out of existence. </p>
<h3>The Neutral Stuff</h3>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/04/diseaserisk.jpg" border="0" width="550" height="254" alt="Disease Risk"><br />
<b>Disease Risk</b>
</div>
<p>According to the &#8220;Disease Risk&#8221; section of 23andMe, I&#8217;m 1.22 times more likely than the average person to develop Type II Diabetes. If this was Type I Diabetes, which is purely genetic, this result would mean something to me, but Type II is largely a matter of lifestyle. So what does it mean for me to have an elevated risk? The site says that the disease is only 26% heritable, meaning if I eat right and exercise, I should be fine&#8230; right? According to <a href="http://www.yourdiseaserisk.wustl.edu/hccpquiz.pl?lang=english&#038;func=start&#038;quiz=diabetes">this survey</a> my risk is extremely low and my <a href="http://www.nhlbisupport.com/bmi/">BMI</a> is borderline&#8211;but then BMI is useless for people who lift weights. Then there&#8217;s also the fact that, drilling down into the data, I find this &#8220;risk&#8221; is computed using 11 genetic markers, the red ones show increased risk, the green ones decreased risk:</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/04/diabetesmarkers.jpg" border="0" width="403" height="242" alt="Diabetes Markers"><br />
<b>Diabetes Markers</b>
</div>
<p>I&#8217;m ambivalent about the usefulness of this data. It&#8217;s really difficult to determine how concerned or unconcerned I should be or even how seriously I should take this information. Apparently I&#8217;m also at risk for a greater tendency to overeat on average if I were an &#8220;<a href="http://www.ncbi.nlm.nih.gov/sites/entrez?cmd=Search&#038;db=pubmed&#038;term=19782709">Old Order Amish woman</a>.&#8221;</p>
<p>But these are less criticisms of 23andMe and more problems with the whole of personal genomics in general. The research is still coming in and will continue coming in for decades, maybe even centuries. So it&#8217;s important to not just accept the initial third-party extrapolations from your genetic data, but to check in on it from time to time and learn what new developments have come up.</p>
<h3>The Bad Stuff</h3>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/04/parkinsonsadvertisement.jpg" border="0" width="550" height="281" alt="23andMe Parkinsons Disease Campaign"><br />
<b>23andMe Parkinsons Disease Campaign</b>
</div>
<p>The one complaint I have about 23andMe&#8217;s services is the monthly subscription fee. Paying even $5.00 a month is unacceptable, even for a great service, when it is accompanied with constant pressure to take research surveys to help the company determine the purpose of even more genetic markers. 23andMe appears to have the research to extrapolate the phenotypic expression of some genotypes, like my having curly hair, from just these surveys that no other genotyping service can offer. The site even features an advertisement with Muhammed Ali that they are using the surveys to <a href="https://www.23andme.com/pd/">hone in on the markers for Parkinson’s disease</a>.</p>
<p>To be clear: I don&#8217;t mind the surveys and I don&#8217;t mind the subscription fee. I mind <em>the combination of the two</em>. I mind paying a company for access to their research while simultaneously contributing to their research to give them a proprietary edge over the competition. If 23andMe were a free service where you had to take one survey a month to maintain your access, I would think it the greatest thing in the world. The company has tremendous potential to harness information from its user community in the name of Citizen Science and reap fantastic profits from that data, but I&#8217;m not going to pay them to collect my data and then let them go off to make even more money from it.</p>
<p>Make access to the site conditional on buying a gene test from them and taking monthly surveys and I think 23andMe could be a wonderful thing for society.</p>
<p><a name="OpenSource"></a><br />
<h2>Open-Source Genetics</h2>
<p>Because 23andMe lets you download your results, you are free to take them with you to other online services or even conduct your own research. That&#8217;s awesome and a bit daunting at the same time. Looking at a spreadsheet with nearly one-million SNPs on it doesn&#8217;t seem like the best place to start, and plugging SNPs Reference Cluster IDs (rs#) into google at random will only confuse you (despite the fact that you will get results from lots of databases). Probably the best source for randomly plugging in rs#&#8217;s is the <a href="http://www.ncbi.nlm.nih.gov/SNP/">National Center for Biotechnology Information&#8217;s (NCBI) Single-Nucleotide Polymorphism (SNP) database</a>, where plugging in a random SNP will get you a wonderfully comprehensive block of information that looks something like this:</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/04/nihresult.png" border="0" width="550" height="642" alt="Partial View of NCBI Results "><br />
<b>Partial View of NCBI Results </b>
</div>
<p>Incomprehensible to me, and I bet if someone were to explain it I would find that data fairly boring and irrelevant too.</p>
<p>So we&#8217;ll leave it to the many many many experts out there to figure out what&#8217;s interesting and what&#8217;s important. Luckily, a great, fairly down-to-earth resource I found online is <a href="http://www.snpedia.com">SNPedia</a>, a human genetics wiki. I&#8217;ll read about a trait or risk factor in the wiki and then run a &#8220;find&#8221; in my spreadsheet, locate the marker, and make a note beside it about what it means&#8211;but there&#8217;s an even better way.</p>
<h3>Promethease</h3>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/04/promethease.png" border="0" width="550" height="275" alt="Promethease"><br />
<b>Promethease</b>
</div>
<p>SNPedia has a free software tool called <a href="http://bots.snpedia.com/index.php/Promethease">Promethease</a> that will take results from 23andMe or another service and run through your results to generate a custom report based on the information in the wiki. It takes about four hours to generate the report, but for a $2 Amazon payment, you can get the report in a few minutes (it took 412 seconds versus six hours for me running the report paid versus unpaid).</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/04/ryanvickych1.png" border="0" width="409" height="202" alt="Ryan and Vicky Chromosome 1 Comparison"><br />
<b>Ryan and Vicky Chromosome 1 Comparison</b>
</div>
<p>One of the cooler enhancements you get with the paid version of the report is the ability to compare your results to someone else. I ran my report with a comparison to Vicky&#8217;s results and got some experimental results back comparing our genomes. In the above image you can see our comparison for the first chromosome with light blue being a match (57%), dark blue being a halfmatch (37%), and the red being conflicts (6%).</p>
<p>A <a href="http://www.youtube.com/watch?v=R5W4KPNWgag">video tutorial</a> of the features in the paid Promethease 0.1.99 version report shows some really neat additional comparison reports that <b>did not</b> show up in my report, such as seeing the probabilities of genotypes showing up in Vicky and my offspring and a Venn diagram of our genetic relatedness. I was unable to find out why, but I did find other ways of looking at my results in the report, such as the following screenshot (not that I&#8217;ve figured out what this means yet):</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/04/promeathesereport.png" border="0" width="550" height="420" alt="Promethease Visualization"><br />
<b>Promethease Visualization</b>
</div>
<p>The Promethease report gave me some additional tidbits about myself that 23andMe either didn&#8217;t provide or didn&#8217;t present as important such as my SNP for being &#8220;optimistic and empathetic&#8221; (<a href="http://snpedia.com/index.php/Rs53576(G;G)">rs53576(G;G)</a>, increased memory performance (<a href="http://snpedia.com/index.php/Rs17070145(C;T)">rs17070145(C;T)</a>), and better odds of living to 100 (<a href="http://snpedia.com/index.php/Rs2542052(C;C)">rs2542052(C;C)</a>). The information suffers the same issues of probability and environment as the 23andMe presentation, but the exercise demonstrates that it&#8217;s interesting and important to look at your genomic information in different ways.</p>
<h3>DIY Genealogy with Personal Genomics</h3>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/04/ryanhaplogroupH1.png" border="0" width="502" height="206" alt="Ryan's Maternal Haplogroup (h1)"><br />
<b>Ryan&#8217;s Maternal Haplogroup (h1)</b>
</div>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/04/ryanpaternalhaplogroupJ2.png" border="0" width="508" height="210" alt="Ryan's Paternal Haplogroup (J2)"><br />
<b>Ryan&#8217;s Paternal Haplogroup (J2)</b>
</div>
<p>Five years ago, I paid $100 to get <a href="http://ideonexus.com/2007/07/09/my-genetic-ancestry/">my genealogical results</a> from the <a href="http://genographic.nationalgeographic.com">Genographic Project</a>, which took a DNA sample from my cheek and then showed me where in the course of human migrations my ancestors got off the caravan.</p>
<p>Using 23andMe&#8217;s Maternal and Paternal Line reading of our haplogroups, we can now save $100 and take our haplogroup information to <em>National Geographic</em> to find out for ourselves. Navigating to the <a href="http://genographic.nationalgeographic.com/genographic/lan/en/atlas.html">Atlas of Human Journey</a>, we can look up these haplogroups for more detailed information from their Genetic Markers list.</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/04/genographicProject-maternal.png" border="0" width="550" height="424" alt="Genographic Project Maternal (H1)"><br />
<b>Genographic Project Maternal (H1)</b>
</div>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/04/genographicProject.png" border="0" width="550" height="433" alt="Genographic Project Paternal (J2)"><br />
<b>Genographic Project Paternal (J2)</b>
</div>
<p><a href="http://www.isogg.org/tree/">International Society of Genetic Genealogy</a> provides an <a href="http://www.isogg.org/tree/ISOGG_YDNATreeTrunk.html">index to Y-DNA SNPs</a> that I, unfortunately, could not figure out how to use to divine my haplogroups from my raw data. Maybe in the future I&#8217;ll figure out how to get this information without going through 23andMe.</p>
<p><a name="GoingPublic"></a><br />
<h2>Going Public with My Genome</h2>
<p>SNPedia has a <a href="http://bots.snpedia.com/index.php/Genomes">long list</a> of users who have shared their genomes with the online world that includes entrepreneur <a href="http://bots.snpedia.com/index.php/User:Esther_Dyson">Esther Dyson</a>, author <a href="http://bots.snpedia.com/index.php/User:Steven_Pinker">Steven Pinker</a>, biologist and entrepreneur <a href="http://bots.snpedia.com/index.php/User:Venter">Craig Venter</a>, and Nobel-prize winner <a href="http://bots.snpedia.com/index.php/User:Watson">James D. Watson</a>. <a href="http://www.personalgenomes.org/">PersonalGenomes.org</a> also gathers genomic data from users who freely donate their results for citizen science.</p>
<p>When 23andMe had their genome test sale last year and I promoted it, I got a lot of feedback from friends who said they would never submit to such a test because they were afraid of the Government or Corporations getting ahold of that data. The <a href="http://www.genome.gov/24519851">Genetic Information Nondiscrimination Act of 2008</a> bars health insurance companies from denying you coverage for a genetic predisposition and employers from discriminating against you for what&#8217;s in your genotype. There are legitimate debates over whether the law goes too far or not far enough, but the intention is clear and based on the uncertainty of what&#8217;s revealed in a personal genomics test, the threat appears small.</p>
<p>But that does not mean I approach posting my genetic results lightly. SNPedia has a cautionary rs#, <a href="http://bots.snpedia.com/index.php/Rs666">rs666</a>, a fictional SNP that represents the worst possible genetic trait you could possibly imagine. What would it mean if future research revealed to the world that you had this genotype? Such a revelation would not only impact you, but your children as well.</p>
<p>I am posting my genetic data, raw and in reports, online for others to view (see below), but it is not something I do lightly. I believe information should be free, and I believe in the ideal of a world where I shouldn&#8217;t need to fear sharing this data.</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/04/ancestorpainting.jpg" border="0" width="550" height="536" alt="My 23andMe Ancestry Painting (100% European)"><br />
<b>My 23andMe Ancestry Painting (100% European)</b>
</div>
<h3>The Future of Healthcare with Personal Genomics</h3>
<p>Erza Klein predicts <a href="http://www.washingtonpost.com/blogs/ezra-klein/post/how-a-1000-test-could-destroy-the-health-insurance-industry/2012/03/08/gIQA33KVzR_blog.html?wprss=rss_ezra-klein">personal genome sequencing spells the death of Health Insurance Companies</a>:</p>
<blockquote><p>
As we sequence more genomes, mine more data, and conduct more studies, we’ll find a lot more of these connections. Eventually, genomic testing will be a powerful predictor of future illness. And it raises the potential that young people will get themselves tested and then purchase insurance based off the result. So those with a clean genomic result might go for a cheap catastrophic plan, while those with a high risk of developing pricey illnesses will opt for more comprehensive insurance.</p>
<p>The result would be, in insurance terms, an “adverse-selection death spiral,” as the healthy opt out of expensive insurance, the sick opt into it, and premiums spin out of control.</p>
<p>“For all of human history, humans have not had the readout of the software that makes them alive,” Larry Smarr, a member of the Complete Genomics scientific advisory board, told The New York Times. “Once you make the transition from a data poor to data rich environment, everything changes.”
</p></blockquote>
<p>The problem with this is, as I mentioned before, my results <em>don&#8217;t predict my likelihood of getting a disease</em>, they give me a better understanding of the odds to bet on, but if I have a 1.22-times  chance of Type II Diabetes, there&#8217;s no way to customize my insurance plan to these odds. It&#8217;s all or nothing. Not only that, but would this even be legal? Congress has made it illegal for my insurance company to drop me for having an increased chance of manifesting one disease, so giving me a discount for having a lower propensity for another disease discriminates against those who have a higher propensity for it.</p>
<p><a name="BetterLiving"></a><br />
<h2>Better Living Through Personal Genomics</h2>
<p>With states like New York and California having <a href="http://www.forbes.com/2008/04/17/genes-regulation-testing-biz-cx_mh_bl_0418genes.html">strict laws</a> prohibiting or severely restricting genome tests or <a href="http://www.nytimes.com/2010/03/20/business/20consumergenebar.html?_r=1&#038;partner=rss&#038;emc=rss">requiring the test results be explained by a doctor</a> and the <a href="http://www.wired.com/wiredscience/2011/02/american-medical-association-you-cant-look-at-your-genome-without-our-supervision/">American Medical Association (AMA) lobbying</a> the FDA to restrict access to our genomes, we have to wonder: What&#8217;s the harm?</p>
<p>My gut reaction is that doctors don&#8217;t like giving up their power. As I&#8217;ve discussed above, the data being provided only speaks to increased and decreased chances, and then we are talking about such tiny differences that it&#8217;s impossible to make an informed decision about what learned, especially in regards to cancelling a health insurance policy or forgoing doctor visits. Despite the best and worst-case prediction from both sides of the personal genomics debate, it would be foolish to do anything but work to improve your health after learning about your disease risks and genotypic traits.</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/04/naturenurture.png" border="0" width="422" height="242" alt="Nature VS Nurture"><br />
<b>Nature VS Nurture</b>
</div>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/04/naturenurture02.png" border="0" width="440" height="97" alt="Nature/Nurture II">
</div>
<p>My SNP <a href="http://genewikiplus.org/wiki/Rs9834312">Rs9834312</a> expresses as (G,G), which should make me an inch taller than other expressions, but I was a scrawny, malnourished nerd-boy in grade school, which stunted my growth to 5&#8217;9&#8243; by the time I turned 20, about an <a href="http://en.wikipedia.org/wiki/Human_height#Average_height_around_the_world">inch shorter than the average American male</a>. My lifestyle as a youth stunted my growth, but I don&#8217;t think knowing I had the genes for growing tall would have further encouraged that lifestyle. In fact, I think just the opposite would be true. </p>
<p><em>Knowledge</em> of my genetic predispositions and <em>education</em> about how lifestyle choices impact phenotypic expression <em>encourage people to take better care of themselves</em>. The Navigenics website&#8217;s <a href="http://www.navigenics.com/">purpose statement</a> hits the nail on the head that this information has the capacity &#8220;&#8230;to empower you with personal, confidential genetic insights to help motivate you to improve your health.&#8221; Knowing about our disease risks and other genetic shortcomings should inspire us to work harder for better health to improve our quality of life and odds of going further through it.</p>
<p><a name="Programmers"></a><br />
<h2>Appendix: DIY Genomic Sequencing for Programmers</h2>
<p>This part of my article is technical, so feel free to skip it unless you are a computer programmer who wants to fill in the gaps in your genomic data.</p>
<h3>SNPedia</h3>
<p>SNPedia runs on MediaWiki, the same software running Wikipedia. Additionally, it runs <a href="http://semantic-mediawiki.org">Semantic mediawiki</a>, meaning you can run semantic queries against it using the <a href="">Ask Page</a>:</p>
<table border="1" align="center">
<tr>
<td><b>Query</b></td>
<td><b>Properties</b></td>
</tr>
<tr>
<td>[[Rsnum::Rs1234]]</td>
<td>
?Rsnum<br/><br />
?Allele1<br/><br />
?Allele2<br/><br />
?Genotype<br/><br />
?Category<br/><br />
?In gene<br/><br />
?On chromosome<br/><br />
?Chromosome position<br/><br />
?Magnitude<br/><br />
?Summary
</td>
</tr>
</table>
<p>Which will produce results like so:</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/04/semanticresults.png" border="0" width="550" height="185" alt="Semantic Results"><br />
<b>Semantic Results</b>
</div>
<p>Each of the nodes in this table has a &#8220;class&#8221; attribute with the property name, making it fairly easy to pluck the data from the table. You can then iterate through your results and query SNPedia with a query string like so, adjusting the RS# to match:</p>
<p><a href="http://www.snpedia.com/index.php/Special:Ask?title=Special%3AAsk&#038;q=%5B%5BRsnum%3A%3ARs1234%5D%5D&#038;po=%3FRsnum%0D%0A%3FAllele1%0D%0A%3FAllele2%0D%0A%3FGenotype%0D%0A%3FCategory%0D%0A%3FIn+gene%0D%0A%3FOn+chromosome%0D%0A%3FChromosome+position%0D%0A%3FMagnitude%0D%0A%3FSummary&#038;sort_num=&#038;order_num=ASC&#038;eq=yes&#038;p%5Bformat%5D=broadtable&#038;p%5Blimit%5D=&#038;p%5Bsort%5D=&#038;p%5Boffset%5D=&#038;p%5Bheaders%5D=show&#038;p%5Bmainlabel%5D=&#038;p%5Blink%5D=all&#038;p%5Bsearchlabel%5D=&#038;p%5Bintro%5D=&#038;p%5Boutro%5D=&#038;p%5Bdefault%5D=&#038;p%5Bclass%5D=sortable+wikitable+smwtable&#038;eq=yes">http://www.snpedia.com/index.php/Special:Ask?title=Special%3AAsk&#038;q=%5B%5BRsnum%3A%3A<b>Rs1234</b>%5D%5D<br/>&#038;po=%3FRsnum%0D%0A%3FAllele1%0D%0A%3FAllele2%0D%0A%3F<br/>Genotype%0D%0A%3FCategory%0D%0A%3FIn+gene%0D%0A%3F<br/>On+chromosome%0D%0A%3FChromosome+position%0D%0A%3F<br/>Magnitude%0D%0A%3FSummary&#038;sort_num=&#038;order_num=ASC<br/>&#038;eq=yes&#038;p%5Bformat%5D=broadtable&#038;p%5Blimit%5D=&#038;p%5B<br/>sort%5D=&#038;p%5Boffset%5D=&#038;p%5Bheaders%5D=show&#038;p%5B<br/>mainlabel%5D=&#038;p%5Blink%5D=all&#038;p%5Bsearchlabel%5D=&#038;p%5B<br/>intro%5D=&#038;p%5Boutro%5D=&#038;p%5Bdefault%5D=&#038;p%5B<br/>class%5D=sortable+wikitable+smwtable&#038;eq=yes</a></p>
<p>SNPedia also offer <a href="http://www.snpedia.com/index.php/Bulk">tips for getting bulk data</a>, <a href="http://www.snpedia.com/index.php/Special:ExportRDF/Rs1234">RDF Export</a> (which I could not get to provide useful data), and <a href="http://bots.snpedia.com/api.php">MediaWiki API</a>.</p>
<h3>dbSNP</h3>
<p>The NCBI also makes its data available for querying, but it&#8217;s more technical and complex to find useful information to align with your personal results. Using the list of <a href="http://www.ncbi.nlm.nih.gov/snp/">SNP Database Fields</a> and the <a href="http://www.ncbi.nlm.nih.gov/books/NBK25500/#chapter1.ESearch">Entrez ESearch Interface</a> for query strings, you can get <a href="http://eutils.ncbi.nlm.nih.gov/entrez/eutils/esummary.fcgi?db=snp&#038;id=53576&#038;version=2.0">document summaries</a> or <a href="http://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=snp&#038;id=53576&#038;retmode=xml">SNP Properties</a> in XML format.</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/04/dbsnpdiagrampng.png" border="0" width="550" height="368" alt="dbSNP ER Diagram (Partial View)"><br />
<b>dbSNP ER Diagram (Partial View)</b>
</div>
<p>Most intriguing is the fact that you can <a href="https://cgsmd.isi.edu/dbsnpq/downloads.php">Dowload Entire dbSNP Database (179.81 GB)</a> (MySQL), or <a href="https://cgsmd.isi.edu/dbsnpq/">query the database directly</a> (see also <a href="ftp://ftp.ncbi.nih.gov/snp/database/b124/mssql/schema/erd_dbSNP.pdf">database diagrams (PDF)</a>).</p>
<p><a name="PersonalGenomicResults"></a><br />
<h2>My Personal Genomic Results</h2>
<p>You can <a href="http://www.ryansomma.com/genomics/Promethease_2012_04_07_genome_Ryan_Somma_Full_20111128074317.html">browse my Promethease report online here</a> and I&#8217;ve got an XLSX spreadsheet with both my 23andMe and Promethease data <a href="http://www.ryansomma.com/genomics/genome_Ryan_Somma_Full_20111128074317.xlsx">here to download</a>. Alternatively, you can download a tab-delimited <a href="http://www.ryansomma.com/genomics/genome_Ryan_Somma_Full_20111128074317.txt">copy of my 23andMe Results</a> or my <a href="http://www.ryansomma.com/genomics/Promethease_2012_04_07_genome_Ryan_Somma_Full_20111128074317_Tab.txt">Annotated Promethease results</a>.</p>
<p><a name="FurtherReading"></a><br />
<h2>Further Reading/Viewing</h2>
<p>BBC <a href="http://www.youtube.com/watch?v=toRIkRa1fYU">The Ghost in your Genes</a> documentary on epigenetics.</p>
<p><a href="http://munnecke.com/blog/?p=229">Esther Dyson Interview</a> about her decision to  Share her Genome.</p>
<p><em>Nature</em> article on the <a href="http://www.nature.com/news/2010/101215/full/468880a.html">Rise of Genome Bloggers</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://ideonexus.com/2012/04/16/adventures-in-personal-genomics/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Being Labeled for What I Don&#8217;t Believe Versus What I Do Believe</title>
		<link>http://ideonexus.com/2012/03/26/being-labeled-for-what-i-dont-believe-versus-what-i-do-believe/</link>
		<comments>http://ideonexus.com/2012/03/26/being-labeled-for-what-i-dont-believe-versus-what-i-do-believe/#comments</comments>
		<pubDate>Mon, 26 Mar 2012 05:00:32 +0000</pubDate>
		<dc:creator>Ryan Somma</dc:creator>
				<category><![CDATA[Enlightenment Warrior]]></category>
		<category><![CDATA[Ionian Enchantment]]></category>

		<guid isPermaLink="false">http://ideonexus.com/?p=9575</guid>
		<description><![CDATA[The Reason Rally I remember unexpectedly having that conversation with my mother in law while riding in the car recently: &#8220;What do you mean Sagan isn&#8217;t going to be raised Christian?&#8221; she asked when we accidentally let slip that he wouldn&#8217;t be going to a Christian church. &#8220;There&#8217;s lots of possible belief systems out there,&#8221; [...]]]></description>
				<content:encoded><![CDATA[<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/03/reasonrally.jpg" border="0" width="550" height="365" alt="The Reason Rally"><br />
<b>The Reason Rally</b>
</div>
<p>I remember unexpectedly having <em>that</em> conversation with my mother in law while riding in the car recently:</p>
<p>&#8220;What do you mean Sagan isn&#8217;t going to be raised Christian?&#8221; she asked when we accidentally let slip that he wouldn&#8217;t be going to a Christian church.</p>
<p>&#8220;There&#8217;s lots of possible belief systems out there,&#8221; Vicky answered, &#8220;and we&#8217;re going to let him decide for himself.&#8221;</p>
<p>&#8220;When he&#8217;s old enough, he can read the Bible if he wants,&#8221; I said.</p>
<p>&#8220;Old enough?&#8221; Grandma asked.</p>
<p>&#8220;Ummm,&#8221; I hesitated and decided to just let it out, &#8220;Yeah. When he&#8217;s old enough to read stories about daughters getting their father drunk to have sex with him, a husband giving his wife to be raped by a mob and then chopping her up into pieces to mail to his allies, a prophet summoning bears to devour children for teasing him about his male-pattern baldness, fathers sacrificing their virgin daughters to god as thanks for victory in war, mothers entering contracts to eat one another’s&#8217; sons, &#8230; You know, when he&#8217;s old enough to be exposed to those kinds of stories.&#8221;</p>
<p>&#8220;Ha. Ha,&#8221; Grandma chuckled. &#8220;Yeah. I see what you mean.&#8221;</p>
<p>It&#8217;s so strange that in a world where humans can see to the edge of the Universe, live to a century through modern medicine, access unimaginable volumes of information online, and fly all over the world that I am still put in the awkward position from time to time of having to explain to someone that I don&#8217;t believe in any of the mythical invisible entities known as &#8220;gods.&#8221; It&#8217;s also awkward because I don&#8217;t walk around all day thinking about the fact that I don&#8217;t think about such deities. I don&#8217;t identify as a non-theist any more than I identify as a non-<a href="http://en.wikipedia.org/wiki/Mr._Snuffleupagus">Mr. Snuffleupagus</a>ist. I identify as a <em>Scientist</em> a person who focuses on our shared empirical understanding of the natural world revealed through experimentation and inductive reasoning.<br />
<span id="more-9575"></span></p>
<div align="center">
<a href="http://en.wikipedia.org/wiki/Mr._Snuffleupagus"><img src="http://ideonexus.com/wp-content/uploads/2012/03/Snuffleupagus.jpg" border="0" width="300" height="402" alt="Mr. Snuffleupagus"></a><br />
<b>Mr. Snuffleupagus</b>
</div>
<p>Technically I&#8217;m a non-believer, but technically everyone is atheistic to a degree. There are <a href="http://atheism.wikia.com/wiki/How_many_gods%3F">thousands of gods</a> and everyone on planet Earth doesn&#8217;t believe in most of them, and even when two people believe in the same god they often have major discrepancies in their personal understandings of it. Carl Sagan <a href="http://mxplx.com/Meme/754/">puts it best</a>:</p>
<blockquote><p>
The word god is used to cover so many different points of view&#8230; First of all, you can be religious without believing in god. Buddhists, certainly religious without having any notion of god. Secondly, the word god, it&#8217;s amazing how diverse the definitions are. Let me give two extremes. One is the sort of god that I gathered by osmosis during my childhood, which is an outsized white male with a long white beard who sits on a throne in the sky and tallies the fall of every sparrow. Now that kind of anthropocentric god there is, as far as I can tell, no compelling evidence for at all. None.</p>
<p>At the other extreme, there&#8217;s the kind of god that Einstein and Spinoza talked about, not too different from the sum total of the laws of nature. Now there are laws of nature, and not only that they apply everywhere, to a quasar ten billion light years away as to the Eastern seaboard of the United States. And it&#8217;s a very remarkable fact that the same laws do apply so generally. It could have been a different set laws applies in every county. So that kind of god of course exists. Who would deny that there are laws of nature.</p>
<p>So I claim you learn absolutely nothing about someone&#8217;s belief if you ask them &#8220;Do you believe in God?&#8221; and they say yes or no. You have to specify which of the countless kinds of god you have in mind. I don&#8217;t myself like to use the word in that context, because it doesn&#8217;t illuminate at all. If I say I believe in god or if I say I don&#8217;t believe in god, and I say no more, you&#8217;ve learned nothing about what my belief system is.
</p></blockquote>
<p>For the sake of argument, we&#8217;ll put this fact aside and pretend that the term &#8220;atheist&#8221; only applies to people who don&#8217;t believe in the supernatural world whatsoever.</p>
<h2>The Reason Rally 2012</h2>
<p>This last weekend <a href="http://tgaw.wordrpess.com">Vicky</a>, our son Sagan, and I made our way out to the <a href="http://reasonrally.org/">Reason Rally</a> to see some of our favorite public intellectuals, like Adam Savage and Richard Dawkins, speak on secularism and rationality. We arrived just in time to witness Adam Savage of the <a href="http://dsc.discovery.com/tv/mythbusters/">Mythbusters</a> show on Discovery deliver an enlightening and lighthearted <a href="http://www.youtube.com/watch?v=rDyBZwwZWYk">speech in support of science and human potential</a>:</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/03/adamsavage.jpg" border="0" width="550" height="365" alt="Adam Savage"><br />
<b>Adam Savage</b>
</div>
<blockquote><p>
Testable, provable phenomena, and the predictions they allow, big and small, brought me here to in front of you today and they will take me back to my family when I am done. They allowed me to drive to DC on a bus, type my speech on a screen, ride to this rally in a car, walk on shoes that support my feet, and wear clothes and a hat that protects my pale skin from the sun. To fly on a plane home. That plane I will get on exists and stays in the air because of a million million large and tiny tested predictions lift, drag, material performance, physics, electricity, radio waves, wear, tear sheer, checklists, human error, machine error and redundancy. It is a miracle of engineering. It is the result of an ancient and very human drive. A drive that makes us what we are in all of our unique specialization. A drive to solve problems.</p>
<p>Many tens of thousands of people combine their collective genius to make an impossibly fast and efficient, thin, inflated bubble of aluminum so stable and secure that you&#8217;d have to fly for several thousand years before the odds gave you an even chance of being in an accident. Everything that we have that makes our lives possible exists because human beings have tested the things they found in their surroundings, made predictions based on those tests, and then improved upon them. This is reason, the human capacity to make sense of the world.
</p></blockquote>
<p>I was also extremely impressed with <a href="http://www.latimes.com/news/politics/la-pn-q-a-nate-phelps-20120324,0,4407066.story">Nate Phelps</a> the atheist son of Westboro Baptist Church Pastor Fred Phelps, who <a href="http://www.youtube.com/watch?v=sROxegtuC7A">spoke so eloquently</a> at the rally while his family picketed him at the sidelines. His story and others like it are why I wasn&#8217;t comfortable with people at the rally pointing to my son Sagan with a smile and referring to him as &#8220;future atheist.&#8221; <a href="http://io9.com/5865143/atheist-scientists-often-expose-their-children-to-religious-views-for-scientific-reasons">Like most atheist parents</a>, I will expose Sagan to a wide variety of belief systems, most likely through a community such as a Unitarian Church, let him decide for himself what to belief, and respect that choice. Leave the predestination nonsense to the Calvinists.</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/03/secularcoalition.jpg" border="0" width="550" height="365" alt="Secular Coalition"><br />
<b>Secular Coalition</b>
</div>
<p>By definition, independent thinkers are an <a href="http://ideonexus.com/2009/06/25/the-many-science-factions/">individualistic bunch</a>. Over 20 secular and atheist organizations were present at the rally, each with their own flavor of skepticism, atheism, or Enlightenment values. There was the <a href="http://www.randi.org/site/">James Randi Educational Foundation</a>, with its focus on debunking supernatural claims made by new agers and faith healers. There was the <a href="http://richarddawkins.net/">Richard Dawkins Foundation</a> which actively promotes atheism, but also promotes the beauty and wonder of scientific ideas. My favorite organization was also making a strong showing, the <a href="http://www.americanhumanist.org/">American Humanist Association</a> whose slogan is &#8220;Good Without God&#8221; and presents one of the most positive and uplifting secular messages of any organization present that day. One of my heroes, <a href="http://en.wikipedia.org/wiki/Isaac_Asimov">Isaac Asimov</a> took more joy in being president of the AHA than he did in his leadership of Mensa International. </p>
<p>Richard Dawkins gave an <a href="http://www.youtube.com/watch?v=BQlA0rG9_OU">overall good speech</a>, where he lamented the absurdity of needing to hold such a rally, &#8220;How could anyone rally against reason? How is it necessary to have a rally for reason? Reason means basing your life on evidence and the logic which is how you deduce the consequences of evidence. In a hundred years’ time it seems to me inconceivable that anyone would want to have a rally for reason. By that time we&#8217;ll either have blown ourselves up or we&#8217;ll have become so civilized that we no longer need it.&#8221; I enjoyed the parts where he praised the natural world and our scientific understanding of it, but grew uncomfortable when he called for everyone to &#8220;ridicule and show contempt&#8221; for religion. </p>
<p>Richard Dawkins straddles, but never crosses, the line between what I love about science and why I get worried when scientists focus too much on religion-bashing. Christopher Hitchens, PZ Meyers, and the other outspoken atheists who argue atheism for the sake of atheism, on the other hand, come across as hostile and belligerent. They ridicule rather than seek to persuade, seeking to stir up feelings of outrage and contempt in their audiences, framing everything in terms of &#8220;Us VS Them,&#8221; and portraying theists as not just wrong, but oftentimes as evil. You know who else does that? Religious extremists and political pundits. We walked out of PZ Meyer&#8217;s speech at the Reason Rally for the same reason I turn the dial when Rush Dimbulb is on the radio, and I fear these &#8220;New Atheists&#8221; as they call themselves and &#8220;Militant Atheists&#8221; as they are called by their opponents are doing more damage than good.</p>
<h2>The Origins of New Atheism</h2>
<p>The New Atheism, the outspoken, in-your-face controversial atheism is a reactionary movement resulting from the perpetual attempts of theists to impose their supernaturally-inspired belief systems on the public. Theists changed the motto of the United States to <a href="http://en.wikipedia.org/wiki/In_God_We_Trust">&#8220;In God We Trust&#8221; in 1956</a>, replacing <em>E Pluribus Unum</em> which was the nation&#8217;s motto since 1782. Over and over and over again they try to force their <a href="http://en.wikipedia.org/wiki/Creation_and_evolution_in_public_education_in_the_United_States">supernatural explanations into public school science text books</a>, failing to realize in their short-sightedness that allowing alternatives to factual knowledge would <a href="http://ideonexus.com/2007/02/28/ryan-vs-darin-round-1/">open a Pandora’s box of creation stories</a> from religions around the world. They push legislation <a href="http://en.wikipedia.org/wiki/Abortion_in_the_United_States_by_state#State_attempts_to_ban_abortion">defining life as beginning before pregnancy</a> and making it a felony for <a href="http://www.nytimes.com/2012/03/17/opinion/collins-politicians-swinging-stethoscopes.html">doctors not to tell abortion patients they will have an increased risk of breast cancer</a> for which there is no scientific evidence. On top of all this churches get to keep <a href="http://www.philanthropyroundtable.org/topic/excellence_in_philanthropy/faith_in_philanthropy">$100 Billion a year in donations tax-free</a>, enjoying all the taxpayer-funded benefits of our society without having to contribute anything in return. </p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/03/westboro.jpg" border="0" width="398" height="600" alt="Westboro Baptist Church Sign"><br />
<b>Westboro Baptist Church Sign</b>
</div>
<p>And yet somehow theists have managed to construct an elaborate scary fantasy of religious persecution in America. They falsely claim they are not allowed to pray in public schools, but the law only prevents them from using official school policy to <a href="http://en.wikipedia.org/wiki/School_prayer#United_States">impose prayer on students</a>. They claim that religious groups are being banned from college campuses, but it is groups that <a href="http://chronicle.com/article/Supreme-Court-Decision-on-Law/66077/">practice discrimination</a> that are being banned. Courts have ruled that <em>private</em> religious groups can discriminate against whomever they like, and organizations, <a href="http://en.wikipedia.org/wiki/Boy_Scouts_of_America_membership_controversies">like the Boy Scouts of America</a> and <a href="http://www.hrexaminer.com/why-churches-can-discriminate-and-you-can%E2%80%99t">religious organizations</a> can and do discriminate on religious grounds.</p>
<p>America was founded on secularism, when you look inside the Library of Congress you see America <a href="http://ideonexus.com/2009/08/30/tributes-to-american-science-in-the-jefferson-library-of-congress/">portrayed as the science nation</a>. The ceiling of the dome of Congress has a painting of <a href="http://ideonexus.com/2009/10/11/enlightenment-truths-and-metaphysical-inaccuracies-in-dan-browns-the-lost-symbol/">Greek Gods giving the Founding Fathers Enlightenment through the sciences</a>. We have led the world in publishing scientific research and have led the world innovatively and economically because of that, but now China <a href="http://royalsociety.org/policy/projects/knowledge-networks-nations/report/">is projected to surpass us</a> in the near future. It&#8217;s remarkable that in the same country inspired by the heretic Thomas Paine to <a href="http://ideonexus.com/2011/07/24/why-the-age-of-enlightenment-matters/">revolt against Kings appointed by god in favor of popular rule</a>, so many people care less about our power to innovate through science and more about whether the leader of 300 million Americans shows proper reverence to a supernatural deity for which there is absolutely no evidence.</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/03/uschinasitations.gif" border="0" width="464" height="400" alt="China Projected to Surpass America"><br />
<b>China Projected to Surpass America</b>
</div>
<p>When confronted with such an assault American values, it is easy to fall into a rut of outrage. The antidote to outrage is perspective, doing what scientists do best: looking realistically at the big picture. </p>
<p>The percentage of people who identify as &#8220;none&#8221; on religious surveys <a href="http://commons.trincoll.edu/aris/publications/american-nones-the-profile-of-the-no-religion-population/">grows every year</a>. Among scientists <a href="http://en.wikipedia.org/wiki/Relationship_between_religion_and_science#Studies_of_scientists.27_belief_in_God">only 1/3 believe in god</a> and that includes the deistic definition of god. </p>
<p>But most telling is the 3/4 of Americans who believe in god. They disparage scientific knowledge while driving in cars designed by our engineers, proselytizing on our televisions, and commenting on our World Wide Web. When they get sick, it is to our doctors they run. They are immersed in the gifts of science every moment of every day, and we don&#8217;t begrudge them this wonderful quality of life science provides, but we can allow ourselves a small degree of knowing condescension at their oblivious hypocrisy.</p>
<h2>Atheists Have to Keep it Real</h2>
<p>The problem I have with New Atheism is that I&#8217;m also a <em>secularist</em>. I might not believe in god, but so long as a person doesn&#8217;t use their understanding of a personal deity as an excuse to attack anyone&#8217;s freedoms then it&#8217;s harmless. People can entertain any supernatural fantasy they like if it gives them comfort, but when they participate in the arena of public discourse, they must confine themselves to the reality we all share. Barack Obama <a href="http://www.youtube.com/watch?v=DOwzy-vKaFI">once eloquently explained this point</a>:</p>
<blockquote><p>
Democracy demands that the religiously motivated translate their concerns into universal, rather than religion-specific, values. It requires that their proposals be subject to argument, and amenable to reason. I may be opposed to abortion for religious reasons, but if I seek to pass a law banning the practice, I cannot simply point to the teachings of my church or evoke God’s will. I have to explain why abortion violates some principle that is accessible to people of all faiths, including those with no faith at all. Now this is going to be difficult for some who believe in the inerrancy of the Bible, as many evangelicals do. But in a pluralistic democracy, we have no choice. Politics depends on our ability to persuade each other of common aims based on a common reality. It involves the compromise, the art of what’s possible.
</p></blockquote>
<p>You can argue whatever position you like in America, but when the only argument you have is because an invisible man in the sky said so, then you don&#8217;t have a legitimate argument. Supernaturally revealed knowledge is not universal in a pluralistic, democratic country. As Obama points out in the above speech, if we saw Abraham preparing to murder his son today, we would lock him up and put Isaac in child protective services.</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/03/secularandvote.jpg" border="0" width="550" height="402" alt="Secular/Atheist Protest Signs"><br />
<b>Secular/Atheist Protest Signs</b>
</div>
<p>But we atheists have to look in the mirror and see how we are guilty of this very same fallacy when we argue <em>there isn&#8217;t a god</em>. Technically we must accept that atheism is not a position that has any bearing on reality any more than saying there is or isn&#8217;t extraterrestrial life in the Universe. These are <em>not scientific positions</em>. The distinguished planetary scientist Carolyn Porco <a href="http://mxplx.com/Meme/752/">best explains why</a>:</p>
<blockquote><p>
If you were to ask me, if I believed in god. Since I am a professional scientist, I would want to give you two answers. In my capacity as a professional scientist I would have to&#8211;I would be required to&#8211;be agnostic on the subject since I couldn&#8217;t cite with scientific certainty say that there is a god and I couldn&#8217;t with scientific certainty say that there isn&#8217;t.</p>
<p>But if I were allowed to respond as just a regular non-scientist and if you allowed me to take the very same indulgences that all other non-scientists are allowed to take and that is I&#8217;m allowed to reject the training I&#8217;ve received as a scientist that taught me&#8211;that drilled into my head&#8211;not to accept anything as fact that can&#8217;t be scientifically proven, but instead I&#8217;m now allowed to do what many many others do and profess&#8211;I&#8217;m allowed now to profess to know something and to profess to strongly believe it in the complete absence of facts&#8230;then I&#8217;m gonna have to say that my very strong faith, my very very strong belief is that there is no god. But on this level, on this level now, my belief is perfectly equivalent to religious belief. We&#8217;re both doing the same thing.
</p></blockquote>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/03/IMG_5033.jpg" border="0" width="398" height="600" alt="Ryan, Technically an Atheist"><br />
<b>Ryan, Technically an Atheist</b>
</div>
<p>This is why I don&#8217;t define myself as an atheist any more than I would define myself as an a-dittohead, a-flat-earther, or a-astrologer. As American environmental activist Van Jones put it, “Martin Luther King didn’t get famous for giving a speech called ‘I have a complaint.’” There&#8217;s a point where you have to say what you stand for. I am an <a href="http://ideonexus.com/2011/07/24/why-the-age-of-enlightenment-matters/">Enlightenment Scholar</a>, like the American Founding Fathers before me, and I&#8217;m pretty damn proud of it.</p>
<h2>Spiritual <em>and</em> Atheist</h2>
<p>Science has <a href="http://ideonexus.com/2009/05/21/the-human-flaw-that-science-heals/">expanded our vision</a>, revealing what we could not see before and in such a way that anyone who wants to follow the procedure can see it. Science convinced me to my present worldview because it presents a world that so much more majestic and moral than any theistic philosophy. Science wins mindshare because it successfully improves our quality of life every single day. Is it any wonder so many great minds have mused on the wonders of nature revealed to us through science?</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/03/magicofreality.jpg" border="0" width="480" height="360" alt="The Magic of Reality"><br />
<b>The Magic of Reality</b>
</div>
<p>Richard Dawkins <a href="http://mxplx.com/Meme/1263/">expresses it</a>:</p>
<blockquote><p>
After sleeping through a hundred million centuries we have finally opened our eyes on a sumptuous planet, sparkling with color, bountiful with life. Within decades we must close our eyes again. Isn’t it a noble, an enlightened way of spending our brief time in the sun, to work at understanding the universe and how we have come to wake up in it? This is how I answer when I am asked—as I am surprisingly often—why I bother to get up in the mornings.
</p></blockquote>
<p>Carl Sagan <a href="http://mxplx.com/Meme/520/">articulates it</a>:</p>
<blockquote><p>
In its encounter with Nature, science invariably elicits a sense of reverence and awe. The very act of understanding is a celebration of joining, merging, even if on a very modest scale, with the magnificence of the Cosmos. And the cumulative worldwide build-up of knowledge over time converts science into something only a little short of a trans-national, trans-generational meta-mind. </p>
<p>Science is not only compatible with spirituality; it is a profound source of spirituality. When we recognize our place in an immensity of light years and in the passage of ages, when we grasp the intricacy, beauty and subtlety of life, then that soaring feeling, that sense of elation and humility combined, is surely spiritual.
</p></blockquote>
<p>Albert Einstein <a href="http://mxplx.com/Meme/750/">conveys it</a>:</p>
<blockquote><p>
The fairest thing we can experience is the mysterious. It is the fundamental emotion which stands at the cradle of true art and true science. He who knows it not and can no longer wonder, no longer feel amazement, is as good as dead, a snuffed-out candle. It was the experience of mystery — even if mixed with fear — that engendered religion. A knowledge of the existence of something we cannot penetrate, of the manifestations of the profoundest reason and the most radiant beauty, which are only accessible to our reason in their most elementary forms-it is this knowledge and this emotion that constitute the truly religious attitude; in this sense, and in this alone, I am a deeply religious man. I cannot conceive of a God who rewards and punishes his creatures, or has a will of the type of which we are conscious in ourselves. An individual who should survive his physical death is also beyond my comprehension, nor do I wish it otherwise; such notions are for the fears or absurd egoism of feeble souls. Enough for me the mystery of the eternity of life, and the inkling of the marvelous structure of reality, together with the single-hearted endeavor to comprehend a portion, be it never so tiny, of the reason that manifests itself in nature.
</p></blockquote>
<p>Richard Feynman <a href="http://mxplx.com/Meme/191/">elucidates it</a>. Chet Raymo <a href="http://mxplx.com/Meme/789/">enunciates it</a>. Walt Whitman <a href="http://mxplx.com/Meme/780/">poeticizes it</a>. Ralph Waldo Emerson <a href="http://mxplx.com/Meme/794/">glorifies it</a>. Teddy Roosevelt <a href="http://mxplx.com/Meme/814/">appreciates it</a>. </p>
<p>Everyone should sing praise to science!</p>
<h2>Spiritual Naturalist</h2>
<p>Chet Raymo <a href="http://mxplx.com/Meme/680/">succinctly explains</a> the dimensions and complexity of my own belief system (minus the last bit):</p>
<blockquote><p>
So this is my Credo. I am an atheist, if by God one means a transcendent Person who acts willfully within the creation. I am an agnostic in that I believe our knowledge of &#8220;what is&#8221; is partial and tentative-a tiny flickering flame in the overwhelming shadows of our ignorance. I am a pantheist in that I believe empirical knowledge of the sensate world is the surest revelation of whatever is worth being called divine. I am a Catholic by accident of birth.
</p></blockquote>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/03/apotheosis_science.jpg" border="0" width="475" height="350" alt="The Apotheosis of Washington"><br />
<b>The Apotheosis of Washington</b><br />
(Minerva giving Science to the Founding Fathers)
</div>
<p>I am an Enlightenment Scholar, like the American Founding Fathers. Experiments are my sacred rights. Quiet attention to the natural world around me is my prayer. Every school, laboratory, and library is my place of worship. My spiritual leaders are physicists, chemists, biologists, engineers, doctors, and professors. My scripture is in the ATGC of each link in the chain of a DNA molecule, the 1420.40575177 MHz frequency of a Hydrogen atom, The He, C, Ne, O, Si, and Fe atoms forged in stars, and the galaxy of elements produced from supernovas. My sense of mystery is the dark fog from the beginning of time at visible limits of our Universe, the inadequate metaphors of waves and particles we use to try and conceptualize the behavior of a sunbeam, and the infinite complexity of <em>Pi</em>, <em>Phi</em>, and <em>e</em>.</p>
<p>This is all so very precious. As the Dawkins Foundation magnets handed out at the Reason Rally said, &#8220;It took 13.7 billion years to make something this perfect. So don&#8217;t mess it up.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://ideonexus.com/2012/03/26/being-labeled-for-what-i-dont-believe-versus-what-i-do-believe/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>The Scientific Joy and Freedom of Being Wrong</title>
		<link>http://ideonexus.com/2012/03/19/the-scientific-joy-and-freedom-of-being-wrong/</link>
		<comments>http://ideonexus.com/2012/03/19/the-scientific-joy-and-freedom-of-being-wrong/#comments</comments>
		<pubDate>Mon, 19 Mar 2012 05:00:09 +0000</pubDate>
		<dc:creator>Ryan Somma</dc:creator>
				<category><![CDATA[Enlightenment Warrior]]></category>

		<guid isPermaLink="false">http://ideonexus.com/?p=9445</guid>
		<description><![CDATA[Esther Dyson Patch Always Make New Mistakes Credit: Gisela Giardino From time to time I find myself deeply fascinated with the Golden Ratio and its relation to the Fibbonacci set. I even bought a cross-section of a nautilus shell to proudly display in my cabinet of curiosities because they grow along the golden ratio. Then [...]]]></description>
				<content:encoded><![CDATA[<table border="0" cellpadding="10" cellspacing="0" width="0" align="center">
<tr>
<td align="center" nowrap>
<center><br />
<a href="http://www.flickr.com/people/gi/?search=Gisela+Giardino"><img src="http://ideonexus.com/wp-content/uploads/2009/03/cosmonautpatch.jpg" width="400" height="454" border="0" alt="Esther Dyson Patch" title="Esther Dyson Patch"></a><br />
</center><br />
<b>Esther Dyson Patch</b><br />
<i>Always Make New Mistakes</i><br />
Credit: <a href="http://www.flickr.com/people/gi/?search=Gisela+Giardino">Gisela Giardino</a>
</td>
</tr>
</table>
<p>From time to time I find myself deeply fascinated with the <a href="http://www.mathsisfun.com/numbers/nature-golden-ratio-fibonacci.html">Golden Ratio and its relation to the Fibbonacci set</a>. I even bought a cross-section of a nautilus shell to proudly display in my cabinet of curiosities because they grow along the golden ratio. Then <a href="http://www.shallowsky.com/blog/science/fibonautilus.html">this article</a> clearly illustrated that nautilus shells grow in a <em>logarithmic spiral</em>. Now I&#8217;m even prouder of my nautilus cross-section because it tells a story of <em>just how wrong I was</em> about a beautiful hypothesis.<br />
<span id="more-9445"></span><br />
I feel as though a similar thing happened with the band <a href="http://tmbw.net/"><em>They Might Be Giants</em></a>, who released a song in 1993 titled <a href="http://en.wikipedia.org/wiki/Why_Does_the_Sun_Shine%3F_(The_Sun_Is_a_Mass_of_Incandescent_Gas)"><em>Why Does the Sun Shine?</em></a>, a cover of a song by <a href="http://www.amazon.com/s/ref=ntt_srch_drd_B0049JCLSC?ie=UTF8&#038;search-type=ss&#038;index=digital-music&#038;field-keywords=Tom%20Glazer%20%26%20Dottie%20Evans">Tom Glazer &#038; Dottie Evans</a>, that included the following lyric:</p>
<blockquote><p>
The sun is mass of incandescent gas,<br />
a gigantic nuclear furnace,<br />
where hydrogen is built into helium<br />
at a temperature of millions of degrees.
</p></blockquote>
<p>Not bad, but 16 years later on their album <a href="http://tmbw.net/wiki/Here_Comes_Science"><em>Here Comes Science</em></a>, they rereleased this cover and followed it with a new song titled <em>Why Does the Sun Really Shine?</em> that presents a more accurate description:</p>
<blockquote><p>
The sun is a miasma<br />
Of incandescent plasma<br />
The sun&#8217;s not simply made out of gas<br />
No, no, no<br />
[...]<br />
(Plasma!)<br />
Forget that song<br />
(Plasma!)<br />
They got it wrong<br />
That thesis has been rendered invalid
</p></blockquote>
<p>They didn&#8217;t try to erase the fact that they (and the original songwriters) were wrong; they republished the inaccurate song and accompanied it with a correction, turning it into a teachable moment. The original song doesn&#8217;t lose any value, the tune is just as catch as it ever was, only now the listener has additional, more accurate insights into its meaning.</p>
<table border="0" cellpadding="10" cellspacing="0" width="0" align="center">
<tr>
<td align="center" nowrap>
<center><br />
<a href="http://xkcd.com/803/"><img src="http://ideonexus.com/wp-content/uploads/2012/03/airfoil.png" width="550" height="356" border="0" alt="xkcd: Airfoil"></a><br />
</center><br />
<b>xkcd: Airfoil</b>
</td>
</tr>
</table>
<p>Here&#8217;s the thing: <b>It&#8217;s OK to be wrong</b>, but it doesn&#8217;t always feel that way. We live in a world where less emotionally mature minds equate being wrong on even a few points with being fully discredited. Under such silly zero-sum-game social pressures, people are backed into ideological corners, unable to concede any error or alter their position on a subject in light of new evidence. We see this in politics all the time, where any politician who changes their mind is labeled &#8220;flip-flopper.&#8221;</p>
<p>But in the world of science and academia admitting to being wrong demonstrates integrity and exhibiting the plasticity of mind to adjust one&#8217;s position to fit the evidence is a virtue. Richard Dawkins <a href="http://mxplx.com/Meme/1770/">tells the story</a> of a Professor at Oxford being presented with incontrovertible evidence falsifying one of his strongly-held beliefs (emphasis mine):</p>
<blockquote><p>
I have previously told the story of a respected elder statesman of the Zoology Department at Oxford when I was an undergraduate. For years he had passionately believed, and taught, that the Golgi Apparatus (a microscopic feature of the interior of cells) was not real: an artefact, an illusion. Every Monday afternoon it was the custom for the whole department to listen to a research talk by a visiting lecturer. One Monday, the visitor was an American cell biologist who presented completely convincing evidence that the Golgi Apparatus was real. At the end of the lecture, the old man strode to the front of the hall, shook the American by the hand and said &#8211; with passion &#8211; &#8216;My dear fellow, I wish to thank you. I have been wrong these fifteen years.&#8217; We clapped our hands red. <b>No fundamentalist would ever say that. In practice, not all scientists would. But all scientists pay lip service to it as an ideal &#8211; unlike, say, politicians who would probably condemn it as flip-flopping.</b> The memory of the incident I have described still brings a lump to my throat.
</p></blockquote>
<p>Every time a fundamentalist rejects empirical evidence, they put the vice of obdurateness on display. Every time an ideologue exclaims &#8220;Ah-Ha!&#8221; in response to someone conceding a point in expressing a nuanced position, they parade their nescience before the public. We feel embarrassed for these diminutive minds because they lack the awareness necessary to feel embarrassed for themselves, and rightly so, but it is never appropriate to feel embarrassed for someone who believes in even a large number of inaccurate ideas because that’s simply being human.</p>
<table border="0" cellpadding="10" cellspacing="0" width="0" align="center">
<tr>
<td align="center" nowrap>
<center><br />
<a href="http://xkcd.com/263/"><img src="http://ideonexus.com/wp-content/uploads/2012/03/certainty.png" width="550" height="231" border="0" alt="xkcd: Certainty"></a><br />
</center><br />
<b>xkcd: Certainty</b>
</td>
</tr>
</table>
<p>One thing that becomes apparent when talking to members of the Baby Boomer generation for longer than a few minutes is that <em>they have a lot of misinformation in their heads</em>, but that&#8217;s not surprising. They grew up in a world without an Internet and instantaneous fact-checking. Memory is incredibly fallible, and without perpetual reinforcement from easily-accessible references, the data in our heads corrupts and degrades. In fact, it seems that the more we recall a memory the <a href="http://www.smithsonianmag.com/science-nature/How-Our-Brains-Make-Memories.html">more our brains alter the details</a>.</p>
<p>As part of Generation X, I grew up in a world without an Internet. Then for the first decade of the mainstream World Wide Web, it was considered a cesspool of disinformation. It wasn&#8217;t until I was in my 30&#8242;s that the Internet became a resource for reference material, and I remember discovering the habit of checking every bit of knowledge I took for granted online at that time and being shocked at all the <a href="http://ideonexus.com/2008/03/19/citation-needed-for-the-mind/">disinformation in my head</a>.</p>
<p>Ideologues and fundamentalists simply don&#8217;t understand the world well enough to know they are as fallible as the rest of us. &#8220;Ignorance more frequently begets confidence than does knowledge,&#8221; as Charles Darwin said.</p>
<p>Consider one of the most famous examples of brilliance in the modern world. &#8220;Einstein&#8221; is synonymous with &#8220;genius,&#8221; but history forgets Albert Einstein was <a href="http://www.science20.com/hammock_physicist/einstein_got_it_wrong_can_you_do_better-85544">wrong about key tenants quantum physics</a> that he rejected because he could not understand them. The world of physics, in turn, largely ignored his later efforts to develop a <a href="http://en.wikipedia.org/wiki/Albert_Einstein#Unified_field_theory">Unified Field Theory</a>. Einstein doesn&#8217;t stop being a genius for being wrong many times in his life, but he does start being human.</p>
<p>The moment you realize it&#8217;s okay to be wrong, you are free. The moment you can recognize when you are wrong about something and shrug off the faulty factoids without a moment&#8217;s hesitation, the more adaptable and youthful your brain will remain. As William Cowper <a href="http://mxplx.com/Meme/1771/">mused</a>:</p>
<blockquote><p>
Knowledge and wisdom, far from being one,<br />
Have ofttimes no connection. Knowledge dwells<br />
In heads replete with thoughts of other men,<br />
Wisdom in minds attentive to their own.<br />
Knowledge is proud that he has learned so much,<br />
Wisdom is humble that he knows no more.
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://ideonexus.com/2012/03/19/the-scientific-joy-and-freedom-of-being-wrong/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Star Trek Online and Avoiding the Grind</title>
		<link>http://ideonexus.com/2012/02/27/star-trek-online-and-avoiding-the-grind/</link>
		<comments>http://ideonexus.com/2012/02/27/star-trek-online-and-avoiding-the-grind/#comments</comments>
		<pubDate>Mon, 27 Feb 2012 05:00:50 +0000</pubDate>
		<dc:creator>Ryan Somma</dc:creator>
				<category><![CDATA[Geeking Out]]></category>

		<guid isPermaLink="false">http://ideonexus.com/?p=9382</guid>
		<description><![CDATA[&#8220;Time you enjoyed wasting was not wasted.&#8221; ~ John Lennon &#8220;Time is the fire in which we burn.&#8221; ~ Tolian Soran, Star Trek Generations The Dilemma We have a finite amount of time in this life, and we should be mindful of how we spend it. I&#8217;ve recently become highly cognizant of the fact that [...]]]></description>
				<content:encoded><![CDATA[<p>&#8220;<em>Time you enjoyed wasting was not wasted.</em>&#8221; ~ John Lennon</p>
<p>&#8220;<em>Time is the fire in which we burn.</em>&#8221; ~ Tolian Soran, <em>Star Trek Generations</em></p>
<h2>The Dilemma</h2>
<p>We have a finite amount of time in this life, and we should be mindful of how we spend it. I&#8217;ve recently become highly cognizant of the fact that the majority of games are simply <a href="http://en.wikipedia.org/wiki/Skinner_box">Skinner Boxes</a>, tricking players into pushing buttons in return for meaningless rewards. Truly challenging games like <a href="http://en.wikipedia.org/wiki/Portal_(video_game)">Portal</a> and <a href="http://en.wikipedia.org/wiki/SpaceChem">SpaceChem</a> keep you playing because the gameplay is its own reward, while Skinner Box games keep you performing repetitive tasks with virtual rewards. Other games, like <a href="http://en.wikipedia.org/wiki/Skyrim">Skyrim</a> or <a href="http://en.wikipedia.org/wiki/Final_Fantasy_VII">Final Fantasy VII</a>, keep you playing because the story and graphics are simply that engaging.</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/02/starbase_original.jpg" border="0" width="550" height="413" alt="The Original Earth Starbase Was Just Okay"><br />
<b>The Original Earth Starbase Was Just Okay</b>
</div>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/02/starbase_new.jpg" border="0" width="550" height="309" alt="The Redesigned Earth Starbase Looks More Familiar"><br />
<b>The Redesigned Earth Starbase Looks More Familiar</b>
</div>
<p>For the past two years I have played <em>Star Trek Online</em> (STO) casually, probably investing maybe a hundred hours in the game, two weeks of my life out of 104. So the question arises: <em>Is STO time wasted?</em> The game was never challenging, but was it at least entertaining? I think this is a question we should be mindful of with any game in which we choose to invest our time to make sure we aren&#8217;t burning it.<br />
<span id="more-9382"></span></p>
<h2>The Star Trek Online Grind</h2>
<p>I love <em>Star Trek</em>. I mean I really love love love it. When <em>STO</em> came out, it was going to be my MMORPG, I wanted to fully immerse myself in it. I purchased a lifetime membership precisely so I wouldn&#8217;t feel pressured to play all the time, and I measured my engagement with the STO universe into the <a href="http://www.stowiki.org/List_of_missions">storyline missions</a>, avoiding <a href="http://startrekonline.wikia.com/wiki/Defend_the_Sirius_Sector_Block">defend sector space</a> and <a href="http://www.stowiki.org/List_of_missions#Exploration">exploration missions</a> which are vapid and repetitive.</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/02/ideonexusMemoryAlpha.jpg" border="0" width="550" height="344" alt="Memory Alpha is the Science Hub of the Federation"><br />
<b>Memory Alpha is the Science Hub of the Federation, but &#8220;Science&#8221; really means &#8220;Crafting&#8221;</b>
</div>
<p>I <a href="http://ideonexus.com/2010/01/25/star-trek-online-explore-strange-new-worlds-seek-out-new-life-and-new-civilizations-and-kill-them-looking-for-science-in-star-trek-online-beta/">previously complained</a> about the game&#8217;s focus on combat while I prefer exploration and discovery, and learned from reading <em>World of Warcraft</em> forums that this problem is known as <em><a href="https://en.wikipedia.org/wiki/Grinding_(video_gaming)">the grind</a></em>. </p>
<p>Starship battles can be a grind at times. They are slow and ponderous, which is exactly what I was looking for in this game. I want every battle to feel like <em>The Wrath of Khan</em>, and <em>STO</em> does a great job with it. The problem is that there are <em>too many</em> starship battles and too little variation between them. I dreaded missions where the goal was to eliminate all enemies from around a planet, where you fly from battle to battle, phasers and torpedoes auto-firing at the same kinds of ships over and over again. I&#8217;d have preferred fewer, longer space battles where I would need to concentrate on exploiting an opponent&#8217;s failing shields or strategically deal with an enemy ship&#8217;s special abilities. <em>STO</em> space battles can be quite tactical at times, but they can also be repetitive at others.</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/02/hologramattack.jpg" border="0" width="550" height="399" alt="My Character Using a Hologram Display to Set an Opponent on Fire."><br />
<b>My Character Using a Hologram Display to Set an Opponent on Fire. &#8220;Any sufficiently advanced technology is indistinguishable from magic.&#8221;  ~ Clarke&#8217;s Third Law</b>
</div>
<p>During my two years of playing, ground combat was a total chore. It was also slow and ponderous, with every phaser blast taking off just a tiny bit of an opponent&#8217;s shields or life. It got to the point where I would set my away team to fight for me while I read a book or surfed the web. Recently, however, <em>STO</em> has dramatically improved ground combat, making it much more face-paced and interesting. Ground combat is also much more tactical than space combat, which is nice. I enjoy having my engineers set up some mines and turrets and then leading enemies into an ambush; unfortunately, there are still missions where there is just <em>too much combat</em>.</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/02/Guardian.jpg" border="0" width="550" height="344" alt="The Guardian Introduces One of My Favorite Episodes"><br />
<b>The Guardian Introduces One of My Favorite Episodes</b>
</div>
<p>Your typical STO mission goes like this: (1) Warp to system X to [investigate, protect, deliver] something. (2) Fly around the [planet, asteroid field] either blasting [badguy ships, badguy stations] or [scanning, repairing, sabotaging] [anomalies, bases, satellites] at four to six different locations. (3) Beam down to the [space station, planet, enemy base]. (4) Run around [blasting badguys, sabotaging stuff, scanning stuff] at four to six different locations. Repeat (2) through (4) as needed until the mission is completed and collect the reward. Deconstructing the action down to this makes it sound extremely tedious, but it depends on the path you take through the game.</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/02/DeferiBorgInvasion.jpg" border="0" width="550" height="309" alt="A Borg Cube Haunts the Skies of the Deferi Homeworld"><br />
<b>A Borg Cube Haunts the Skies of the Deferi Homeworld</b>
</div>
<p>The average STO player takes <a href="http://forums.startrekonline.com/showthread.php?t=128870">50 &#8211; 90 hours</a> to peak out at the rank of Vice Admiral. As a casual player, I spread that out over two years. I&#8217;ve seen people on the forums get ridiculed for taking more than 100 hours to top-out in the game; after all, if you just focus on exploration missions, you can max out in just 40 hours! </p>
<p>The problem is that the exploration missions are also the most generic and boring. You don&#8217;t even have to pay much attention as your ship will fire its weapons automatically while you cruise lazy circles in space and your away team can take care of most bad guys while you watch <em>Big Bang Theory</em> episodes. Playing through the game like this is a complete waste of your life. So why bother?</p>
<h2>The Star Trek Online Odyssey</h2>
<p><em>STO</em> takes place in the universe Spock left when he failed in his mission to <a href="https://en.wikipedia.org/wiki/Romulus_(Star_Trek)#Romulans_in_Alternate_reality">save Romulus from its star going supernova</a> and got wormholed into the <em>Star Trek</em> reboot universe of the 2009 movie. The Romulan Empire is in chaos, the Klingons have declared war, the Gorn are back, and the Borg are invading. The Universe feels dark, intense, and dramatic, and there are some great storylines to play out filled with characters and references that <em>Star Trek</em> fans will appreciate and the technology is more advanced than anything seen in the shows.</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/02/drydock.jpg" border="0" width="550" height="309" alt="Contitution and Excelsior Class Starships in Drydock"><br />
<b>Contitution and Excelsior Class Starships in Drydock</b>
</div>
<p>Also working in <em>STO&#8217;s</em> favor is that the game is <em>beautiful</em>, and keeps getting more dazzling. I knock the exploration missions, but they make nice filler for discovering fascinating-looking planets. The game is also very large; however, it doesn&#8217;t feel as big as it should because of the way the game designers compartmentalized environments (deep space doesn&#8217;t flow into planet space, planet space doesn&#8217;t flow into ground locations), and you can tour the entire universe in under an hour. With each promotion through the ranks, you get to explore deeper in space with each new area introduced through narration by Leonard Nimoy.</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/02/sto_aliens02.jpg" border="0" width="550" height="550" alt="Ferengi, Gorn, Romulans, Undine, Klingons, and Orions, Oh My!"><br />
<b>Ferengi, Gorn, Romulans, Undine, Klingons, and Orions, Oh My!</b>
</div>
<p>Undine, Remans, Romulans, Vulcans, Klingons, Orions, Gorn, Cardasians, Mirror Universe Federation, Hyugen, Devidians, Ferengi, Jem&#8217;Hadar, and other aliens infuse <em>STO</em> with variety as well. Just as each of these aliens has their own cultures and strategies in the show, they present different challenges in the game as well. What makes the storyline missions great is meeting recurring villains who get you more invested in the action.</p>
<p>The <em>STO</em> developers have also demonstrated what&#8217;s really possible in game with their <a href="http://startrekonline.com/feature_episodes">feature episodes</a>. There are large cities heavily populated with aliens and skies filled with ships , space stations the size of <a href="http://en.memory-alpha.org/wiki/V%27Ger">V&#8217;ger</a> to fly through, giant monsters, and engaging plots in these extended storylines. With new content always on the way, I really do look forward to each new episode.</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/02/avatars.jpg" border="0" width="550" height="397" alt="Human-Players Push the Boundaries of Interesting Avatars"><br />
<b>Human-Players Push the Boundaries of Interesting Avatars</b>
</div>
<p>Most importantly however, is the importance of remembering that <em>STO</em> is an <a href="https://en.wikipedia.org/wiki/Mmorpg">MMORPG</a>. The twin M&#8217;s in that acronym are the deciding factor in whether the game is a hit or miss, and the <em>Star Trek</em> franchise has the greatest fans on Earth. I loved participating in chats during the game&#8217;s first few months, reminiscing about favorite episodes, trading treklore and tips on good in-game episodes and events. There are also Player VS Player (PvP) sessions, which are like team deathmatches with starships and phasers, and the Player VS Environment’s (PvE), which are missions requiring teamwork to complete.</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/02/assimilated_gorn.jpg" border="0" width="550" height="504" alt="Assimilated Gorn is a Concept so Cool only a fan could come up with it"><br />
<b>Assimilated Gorn is a Concept so Cool only a fan could come up with it</b>
</div>
<p>But <em>STO</em> has taken the &#8220;MM&#8221; part of the equation even further with <a href="http://www.startrekonline.com/foundry">player-authored missions</a>, which is pure genius. The fans are designing missions that are more epic, faster paced, and more creative than anything else in the <em>STO</em> universe and that&#8217;s because their doing it out of <em>love</em>. The rewards for these missions are minor, but they are by far more fun than anything else in the game and are keeping me playing.</p>
<h2>Is STO Worth It?</h2>
<p>Since <em>STO</em> has gone <a href="http://www.startrekonline.com/f2p">Free To Play</a> (F2P), with all missions and content available to anyone who downloads it, that doesn&#8217;t mean it&#8217;s really <em>FREE</em>. There is still a sizable time investment required to play the game and we have to weigh that against other activities on which we could be spending this precious hourglass sand. My conclusion is that it is worth it <em>if you&#8217;re a fan and play casually</em>.</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/02/borgifiedstarship02.jpg" border="0" width="550" height="309" alt="Vice Admirals Get Access to Borg Technologies to Trick Out their Ships"><br />
<b>Vice Admirals Get Access to Borg Technologies to Trick Out their Ships</b>
</div>
<p>The gamers who reached Vice Admiral in 40 hours fell prey to the Skinner Box. They behaved no better than rats pushing a button to get a reward, and you need to be aware of the animal propensity to fall into this trap if you play <em>STO</em>. I wasn&#8217;t fully cognizant of how in-game rewards were tainting my perceptions until I reached Vice Admiral, where experience points are capped and you can no longer increase your skill levels.</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/02/sto_my_ships.jpg" border="0" width="550" height="541" alt="The ships I earned in STO Waygate, Asimov, Beagle, Sagan, Odyssey, Feynman, and the Enlightenment."><br />
<b>The ships I earned in <em>STO</em> Waygate, Asimov, Beagle, Sagan, Odyssey, Feynman, and the Enlightenment.</b>
</div>
<p>As a reward to myself for maxing-out my character, I splurged on the $25 to purchase a <a href="http://startrekonline.com/ships/galaxy_dreadnought">Galaxy Dreadnought Starship</a>. My thought was that I would go sightseeing and just appreciate the game play. I visited the planet Vulcan and picked up a detective-style mission to find out who threatened the life of a visiting Romulan dignitary. I ran around the planet, picking up clues for awhile, and realized, <em>Wow, this is really lame.</em></p>
<p>Without the rewards, the mission seemed quite silly. Sure, I was learning interesting stuff about Vulcan and Romulan history, but I was having to run back and forth and all around to pick up each tidbit of trivia. I realized that, without the Skinner Box rewards, I simply didn&#8217;t have the patience for most missions and would abandon them once they got tedious.</p>
<div align="center">
<img src="http://ideonexus.com/wp-content/uploads/2012/02/ships.jpg" border="0" width="550" height="309" alt="Player Ships Hanging Out at DS9 Look Like a Formidable Fleet"><br />
<b>Player Ships Hanging Out at DS9 Look Like a Formidable Fleet</b>
</div>
<p>I <em>could</em> jump back in the Skinner Box, I&#8217;ve got six character slots left on my account, but that holds no appeal. I could also try playing through the game as a member of the Klingon Empire, but the idea of playing one of those backwards-evolving meatheads is antithesis to what appeals to me about <em>Star Trek</em>. </p>
<p>To maintain my enjoyment of the game, I&#8217;ve decided to focus on playing it in <em>moderation</em>, which is how I mostly played it through the last two years. It&#8217;s like getting a <em>Next Generation</em> box set and only watching a few episodes a week. It&#8217;s F2P, so there&#8217;s no urgency, just play an episode a week, do a little exploring, adventure with some other players, or try out a fan-fiction episode for some real novelty. It&#8217;s a wide, expansive virtual world, and it&#8217;s best to savor and appreciate what it gets right.</p>
<h2>Further Reading</h2>
<p><a href="http://www.stowiki.org/List_of_missions">List of all STO Mission</a>. Stick to &#8220;storyline&#8221; and &#8220;episode&#8221; content. These missions take longer and give you less rewards for your time, but they are also the most engaging and interesting. Also a <a href="http://www.stoacademy.com/datacore/missions.php">filterable list of missions here</a>.</p>
<p>My <a href="http://www.flickr.com/photos/ideonexus/collections/72157629393821429/">flickr collection</a> of my adventures in <em>STO</em>.</p>
<p>Here&#8217;s my <a href="http://ideonexus.com/2010/01/25/star-trek-online-explore-strange-new-worlds-seek-out-new-life-and-new-civilizations-and-kill-them-looking-for-science-in-star-trek-online-beta/">original post</a> on <em>STO</em>, complaining about the lack of science in the game. There still isn&#8217;t much science in the game.</p>
]]></content:encoded>
			<wfw:commentRss>http://ideonexus.com/2012/02/27/star-trek-online-and-avoiding-the-grind/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>101 Reasons Why Evolution is True</title>
		<link>http://ideonexus.com/2012/02/12/101-reasons-why-evolution-is-true/</link>
		<comments>http://ideonexus.com/2012/02/12/101-reasons-why-evolution-is-true/#comments</comments>
		<pubDate>Sun, 12 Feb 2012 04:01:06 +0000</pubDate>
		<dc:creator>Ryan Somma</dc:creator>
				<category><![CDATA[Ionian Enchantment]]></category>

		<guid isPermaLink="false">http://ideonexus.com/?p=9257</guid>
		<description><![CDATA[Jump To: Age of the Earth and Its Fossils Genetics Comparative Anatomy Transitional Fossils Convergent Evolution Adaptations Vestigial Traits Artificial Selection Evolution in Action Sexual Selection And The List Goes On&#8230; These reasons will work from the general to the specific. I&#8217;ve used links to articles in Wikipedia as much as possible because Wiki articles [...]]]></description>
				<content:encoded><![CDATA[<p>Jump To:<br />
<a href="http://ideonexus.com/2012/02/12/101-reasons-why-evolution-is-true/#AgeoftheEarth">Age of the Earth and Its Fossils</a><br />
<a href="http://ideonexus.com/2012/02/12/101-reasons-why-evolution-is-true/#Genetics">Genetics</a><br />
<a href="http://ideonexus.com/2012/02/12/101-reasons-why-evolution-is-true/#ComparativeAnatomy">Comparative Anatomy</a><br />
<a href="http://ideonexus.com/2012/02/12/101-reasons-why-evolution-is-true/#TransitionalFossils">Transitional Fossils</a><br />
<a href="http://ideonexus.com/2012/02/12/101-reasons-why-evolution-is-true/#ConvergentEvolution">Convergent Evolution</a><br />
<a href="http://ideonexus.com/2012/02/12/101-reasons-why-evolution-is-true/#Adaptations">Adaptations</a><br />
<a href="http://ideonexus.com/2012/02/12/101-reasons-why-evolution-is-true/#VestigialTraits">Vestigial Traits</a><br />
<a href="http://ideonexus.com/2012/02/12/101-reasons-why-evolution-is-true/#ArtificialSelection">Artificial Selection</a><br />
<a href="http://ideonexus.com/2012/02/12/101-reasons-why-evolution-is-true/#EvolutioninAction">Evolution in Action</a><br />
<a href="http://ideonexus.com/2012/02/12/101-reasons-why-evolution-is-true/#SexualSelection">Sexual Selection</a><br />
<a href="http://ideonexus.com/2012/02/12/101-reasons-why-evolution-is-true/#OnAndOn">And The List Goes On&#8230;</a></p>
<ol style="margin:0;padding:0;list-style-position: inside;">
<p><em>These reasons will work from the general to the specific. I&#8217;ve used links to articles in Wikipedia as much as possible because Wiki articles are refined over time with our understanding of the subjectmatter and are less subject to link-rot. This post is licensed Creative Commons and all photos listed here are available under some form of free-to-use licensing. Please feel free to refine this list and repost it, just please preserve the photo credits and links to photographers. Also, suggestions for improvement on any items is welcome as this is a lot of material over a wide range of scientific fields, so I have certainly bungled some things here.</em></p>
<p><em>Over time, new evidence will certainly find some of these examples in error, and that&#8217;s a <em>good thing</em> because science is about refining our understanding of the truth. The Theory of Evolution is strong enough that nearly half these examples could be disproved and the evidence would still be fairly overwhelming. There is so much in this world that only makes sense in the light of Evolutionary Theory.</em></p>
<p><a name="AgeoftheEarth"></a><br />
<h2><a href="#AgeoftheEarth">Age of the Earth and Its Fossils</a></h2>
<p>We live on a very old Earth.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Lithostratigraphy">Lithologic Stratigraphy</a></b></li>
<div align="center">
<a href="http://www.flickr.com/photos/cobalt/232194665/"><img src="http://ideonexus.com/wp-content/uploads/2012/02/001.jpg" border="0" width="550" height="412" alt="Looking at Millions and Millions of Years"></a><br />
<b>Looking at Millions and Millions of Years</b><br />
Credit: <a href="http://www.flickr.com/photos/cobalt/232194665/">cobalt123</a>
</div>
<p>The Earth&#8217;s crust has layers. Some of these layers are from the decomposition of sediment, others come from chemical precipitation, others from decaying organic matter, and others from volcanic lava. The reason we can see the layers is because they were formed in different ways.</p>
<p><span id="more-9257"></span></p>
<li><b><a href="https://en.wikipedia.org/wiki/Law_of_superposition">Law of Superposition</a></b></li>
<div align="center">
<a href="https://secure.wikimedia.org/wikipedia/commons/wiki/File:PSM_V69_D425_Geologic_strata_at_bright_angel_trail.png"><img src="http://ideonexus.com/wp-content/uploads/2012/02/002.png" border="0" width="550" height="437" alt="Geologic strata at bright angel trail"></a><br />
<b>Geologic strata at bright angel trail</b>
</div>
<p>Layers are laid down on top of each other, with the bottom layers laid down first and the top layers laid down last; therefore, the layers on the bottom are the oldest and the ones on the top are the youngest.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Trace_fossil">Fossilized Footprints</a></b></li>
<div align="center">
<a href="http://www.flickr.com/photos/andrew_ashton/6142184758/"><img src="http://ideonexus.com/wp-content/uploads/2012/02/003.jpg" border="0" width="550" height="550" alt="Dinosaur trackways"></a><br />
<b>Dinosaur trackways</b><br />
Credit: <a href="http://www.flickr.com/photos/andrew_ashton/6142184758/">jacashgone</a>
</div>
<p>Dinosaur footprints, slug footprints, Australopithecus footprints and other footprints on top of any layer in the strata means that layer was at the top of the stack long enough for something to walk on top of it before it got covered by subsequent layers and hardened into solid rock.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Fossil">Fossils</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:Petrified_forest_log_2_md.jpg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/004.jpg" border="0" width="550" height="550" alt="Petrified Wood"></a><br />
<b>Petrified Wood</b>
</div>
<p>The process of <a href="https://en.wikipedia.org/wiki/Permineralization">permineralization</a>, where mineral deposits form internal casts of organisms, provides us with a vast quantity of fossils that give us an idea of the different forms life has taken in the past.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Extinction">Fossils of Extinct Species</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:Various_dinosaurs.png"><img src="http://ideonexus.com/wp-content/uploads/2012/02/005.png" border="0" width="550" height="535" alt="A collection of skeletons mounted in museums of various dinosaurs"></a><br />
<b>A collection of skeletons mounted in museums of various dinosaurs</b>
</div>
<p>We have lots and lots and lots of fossils of species that don&#8217;t exist anymore. Lots and lots and lots of them in just the <a href="https://en.wikipedia.org/wiki/List_of_dinosaurs">superorder Dinsosauria alone</a>.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Faunal_succession">The Law of Faunal Succession</a></b></li>
<div align="center">
<a href="http://www.flickr.com/photos/islespunkfan/3641097340/"><img src="http://ideonexus.com/wp-content/uploads/2012/02/006.jpg" border="0" width="550" height="412" alt="Agate Springs Block"></a><br />
<b>Agate Springs Block</b><br />
Credit: <a href="http://www.flickr.com/photos/islespunkfan/3641097340/">IslesPunkFan</a>
</div>
<p>You will never find a Neanderthal bone in the same stratum as a Tyrannosaurus rex bone. Tyronnosaurus rexes weren&#8217;t alive at the same time; therefore, their stratum didn&#8217;t get laid down at the same time.</p>
<li><b><a href="http://www.talkorigins.org/indexcc/CC/CC364.html">Seashell Fossils on Mountaintops</a></b></li>
<div align="center">
<a href="http://www.flickr.com/photos/ogcodes/842280099/"><img src="http://ideonexus.com/wp-content/uploads/2012/02/007.jpg" border="0" width="550" height="399" alt="Strata - Lulworth Cove"></a><br />
<b>Strata &#8211; Lulworth Cove</b><br />
Credit: <a href="http://www.flickr.com/photos/ogcodes/842280099/">mgjefferies</a>
</div>
<p>Benjamin Franklin saw that there were fossilized sea shells on top of the mountains of Appalachia, some of them imprinted into solid rock, and concluded, &#8220;<a href="http://mxplx.com/Meme/1550/">Tis certainly the Wreck of a World we live on!</a>&#8221; The shells were deposited in layers on the Ocean floor over millions of years, layers that would be violently broken up and rippled into a mountain range <a href="https://en.wikipedia.org/wiki/Appalachian_Mountains">480,000,000 years ago</a> by a catastrophic earthquake.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Plate_tectonics">Plate Tectonics and Continental Drift</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:Antonio_Snider-Pellegrini_Opening_of_the_Atlantic.jpg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/008.jpg" border="0" width="550" height="323" alt="First known illustration of the Opening of the Atlantic Ocean, by Antonio Snider-Pellegrini, 1858."></a><br />
<b>First known illustration of the Opening of the Atlantic Ocean, by Antonio Snider-Pellegrini, 1858.</b>
</div>
<p>South America fits into Africa, rocks get younger the closer you get to where the crust is spreading under the ocean, and satellites have <a href="http://www.esa.int/esaCP/Pr_2_1995_i_EN.html">observed the drift</a>. The continents drift at a rate of <a href="http://hypertextbook.com/facts/ZhenHuang.shtml">a few centimeters a year</a> and the distance between the Americas and Africa is <a href="http://www.beloit.edu/sepm/Earth_Works/Sea_floor_spreading.html">455,000,00 centimeters</a>.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Continental_drift#Evidence_that_continents_.27drift.27">Same Fossils on Both Sides of the Atlantic</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:Snider-Pellegrini_Wegener_fossil_map.svg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/009.png" border="0" width="550" height="422" alt="Snider-Pellegrini Wegener fossil map"></a><br />
<b>Snider-Pellegrini Wegener fossil map</b>
</div>
<p>There are matching fossils on both sides of where the continents appear to have split apart. Cynognathus, a Triassic land reptile, fossils are found in South America and Africa. The Triassic era was between <a href="https://en.wikipedia.org/wiki/Triassic">250,000,000 and 200,000,000 years ago</a>.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Radiometric_dating">Radiometric Dating</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:UraniumDating.png"><img src="http://ideonexus.com/wp-content/uploads/2012/02/010.png" border="0" width="550" height="167" alt="Uranium Decays to Lead Inside Zircon"></a><br />
<b>Uranium Decays to Lead Inside Zircon</b>
</div>
<p>Take a quantity of uranium-238 and in <a href="https://en.wikipedia.org/wiki/Uranium-238">4.5 billion years half of it will have turned into lead-206</a>. When molten rock hardens into a solid, the uranium-238 within it begins to decay. By comparing the ratio of uranium-238 to lead-206, we can estimate how old the rock is. The same thing can be done with Samarium-neodymium, Potassium-argon, Rubidium-strontium, and Uranium-thorium transitions.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Carbon_Dating">Radiocarbon Dating</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:Carbon_14_formation_and_decay.svg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/011.png" border="0" width="550" height="338" alt="1. Formation of Carbon-14<br />
2. Decay of Carbon-14<br />
3. The "equal" equation is for living organisms, and the unequal one is for non-living ones, in which the C-14 then decays (hence the 2)."></a><br />
<b>1. Formation of Carbon-14<br />
2. Decay of Carbon-14<br />
3. The &#8220;equal&#8221; equation is for living organisms, and the unequal one is for non-living ones, in which the C-14 then decays (hence the 2).</b>
</div>
<p>Carbon-14 has a half-life of 5,730 years. There is a semi-constant ratio of carbon-14 in the air and ocean as it is constantly being created by cosmic rays. Plants take in carbon from the atmosphere and ocean and fix it into themselves. Animals eat plants and fix the carbon into themselves. By measuring the ratio of carbon-14 in a younger fossil, scientists can estimate its age.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Dendrochronology">Dendrochronology</a></b></li>
<div align="center">
<a href="http://www.flickr.com/photos/ideonexus/3143655999/"><img src="http://ideonexus.com/wp-content/uploads/2012/02/012.jpg" border="0" width="550" height="366" alt="1341 year-old Redwood"></a><br />
<b>1341 year-old Redwood</b><br />
Credit: Me
</div>
<p>Many trees grow a new ring in their trunk every year, meaning the tree is as many years old as it has rings, meaning <a href="http://www.radiocarbon.com/tree-ring-calibration.htm">trees can be used to calibrate Radiocarbon dating</a> to confirm its accuracy.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Stromatolite">Stromatolites</a></b></li>
<div align="center">
<a href="http://www.flickr.com/photos/ideonexus/2896310395/"><img src="http://ideonexus.com/wp-content/uploads/2012/02/013.jpg" border="0" width="400" height="600" alt="Stromatolite"></a><br />
<b>Stromatolite</b><br />
Credit: <a href="http://www.flickr.com/photos/ideonexus/2896310395/">Me</a>
</div>
<p>These fossilized bacterial colonies date back 2.7 billion years and may extend 3.4 billion years. Stromatolites grow at a maximum rate of <a href="http://www.sharkbay.org/Stromatolitesfactsheet.aspx">5cm every 100 years</a> and a stromatolite 1.5 meters in diameter was <a href="http://www.sciencedaily.com/releases/2008/07/080704122847.htm">found in Virginia</a> and a 500cm high stromatolite was <a href="http://www.china.org.cn/environment/pics/2008-08/26/content_16331846.htm">found at the foot of Wutai Mountain in China</a>.</p>
<p><a name="Genetics"></a><br />
<h2><a href="#Genetics">Genetics</a></h2>
<p>How genes and mutations work give us insights and tools into how evolution works.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Heredity">Heredity</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:Independent_assortment_%26_segregation.svg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/014.png" border="0" width="550" height="568" alt="Table showing how genes exchange according to segregation or independent assortment during meiosis and how this translates into the Mendel's Laws."></a><br />
<b>Table showing how genes exchange according to segregation or independent assortment during meiosis and how this translates into the Mendel&#8217;s Laws.</b>
</div>
<p>Offspring inherit the characteristics of their parents, which are controlled by genes.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Genetic_code#Origin">Universal Genetic Material</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:DNA_chemical_structure.svg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/015.png" border="0" width="514" height="600" alt="Chemical structure of DNA"></a><br />
<b>Chemical structure of DNA</b>
</div>
<p>All life on Earth uses a three-letter code to produce 20 standard amino acids. Researchers have <a href="https://en.wikipedia.org/wiki/Expanded_genetic_code">artificially expanded the genetic code</a> to produce additional amino acids as tools, but all natural life use the same 20 amino acids from our common descent.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Miller%E2%80%93Urey_experiment">Miller–Urey Experiment</a></b></li>
<div align="center">
<a href="http://en.wikipedia.org/wiki/File:Miller-Urey_experiment-en.svg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/016.png" border="0" width="550" height="512" alt="Miller-Urey experiment (1953)."></a><br />
<b>Miller-Urey experiment (1953).</b>
</div>
<p>In 1952 Stanley Miller and Harold Urey synthesized organic compounds from inorganic precursors found in the Earth&#8217;s original atmosphere, producing more than 20 different amino acids using electrical sparks to simulate lightning.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Mutation">Mutations</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:Benzopyrene_DNA_adduct_1JDG.png"><img src="http://ideonexus.com/wp-content/uploads/2012/02/017.png" border="0" width="433" height="600" alt="DNA Covalently Bonded to the Cancer-Causing Mutagen in Tobacco Smoke, benzo[a]pyrene."></a><br />
<b>DNA Covalently Bonded to the Cancer-Causing Mutagen in Tobacco Smoke, benzo[a]pyrene.</b>
</div>
<p>The genomic sequence in cells is under constant mutation pressure from radiation, viruses, chemicals, and copying errors.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Speciation">Speciation</a></b></li>
<div align="center">
<div  style="background-color:#ffffff;"><a href="https://en.wikipedia.org/wiki/File:Speciation_modes.svg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/018.png" border="0" width="350" height="320" alt="Spatial Aspects of Speciation"></a></div>
<p><b>Spatial Aspects of Speciation</b>
</div>
<p>Speciation is the process by which new species are formed. When a species gets split into two groups by a river, mountain range, island, lake, or ocean via earthquakes, floods, droughts, climate change, or continental drift, the two populations will begin to drift genetically.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Natural_selection">Natural Selection</a></b></li>
<div align="center">
<div  style="background-color:#ffffff;"><a href="https://en.wikipedia.org/wiki/File:Life_cycle_of_a_sexually_reproducing_organism.svg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/019.png" border="0" width="500" height="450" alt="The life cycle of a sexually reproducing organism."></a></div>
<p><b>Selection Pressures on a Sexually Reproducing Organism</b>
</div>
<p>Mutations that reduce an organism&#8217;s ability to survive and reproduce will be less likely to end up in offspring. Mutations that give an organism a survival and reproductive advantage will be more likely to show up in offspring.</p>
<li><b><a href="http://en.wikipedia.org/wiki/RNA_codon_table#RNA_codon_table">RNA/DNA Codon Table</a></b></li>
<div align="center">
<a href="http://bioinfo.bisr.res.in/project/crat/pictures/printImage.png"><img src="http://ideonexus.com/wp-content/uploads/2012/02/020.gif" border="0" width="550" height="322" alt="RNA/DNA Codon Table"></a><br />
<b>RNA/DNA Codon Table</b>
</div>
<p>Genes that code for proteins are composed of three-nucleotides (U/T, A, G, or C). All the different ways these nucleotides can combine to produce the various amino acids is listed in the above table. Note that the third nucleotide usually makes no difference on the amino acid produced, meaning it can change (mutate) without having any effect on the gene&#8217;s expression.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Junk_DNA">Noncoding DNA</a></b></li>
<div align="center">
<a href="http://www.flickr.com/photos/auge_des_bison/4581923673/in/photostream/"><img src="http://ideonexus.com/wp-content/uploads/2012/02/021.jpg" border="0" width="500" height="333" alt="Screenshot of tiny portion of the human genom in hdv (n's are non-coding)"></a><br />
<b>Screenshot of tiny portion of the human genom in hdv (n&#8217;s are non-coding)</b><br />
Credit: <a href="http://www.flickr.com/photos/auge_des_bison/4581923673/in/photostream/">Markus Kison</a>
</div>
<p>A large portion of eukaryotic organisms&#8217; total DNA does not produce amino acids. In humans, more than 98% of the genome is noncoding. Much of this DNA is vestigial&#8211;it expressed in our ancestors but not longer serves a purpose. DNA that does not serve a purpose can mutate without having any affect on the organism.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Gene_clock#Early_discovery_and_genetic_equidistance">Molecular Clock of Mutations</a></b></li>
<div align="center">
<a href="http://web.archive.org/web/20090213150149/http://rtis.com/nat/user/elsberry/evobio/evc/argresp/sequence.html"><img src="http://ideonexus.com/wp-content/uploads/2012/02/022.gif" border="0" width="336" height="360" alt="Cytochrome C Protein Sequences Compared to Humans"></a><br />
<b>Cytochrome C Protein Sequences Compared to Humans</b>
</div>
<p>The number of genetic differences between two species will increase with the time since they originally diverged. Mammals and birds will be equally divergent from fish, and vertebrates will be equally divergent from yeast.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Hox_gene">Hox Genes</a></b></li>
<div align="center">
<a href="http://php.med.unsw.edu.au/embryology/index.php?title=File:Fly_antennapedia_head.jpg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/023.jpg" border="0" width="550" height="412" alt="Legs Replacing Antennae on a Fly"></a><br />
<b>Legs Replacing Antennae on a Fly</b>
</div>
<p>These genes provide for the basic blueprint of all segmented life, such as arthropods, insects, and organisms with backbones. They define what, if anything, should grow out of each segment of the body plan. Mutations in hox genes can replace antennae with legs, as in the above photo of a fly, or give humans a sixth finger, but they also make it much easier for species to mutate in useful ways to produce body plans adapted to a wide variety of environments.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Sexual_reproduction">Sexual Reproduction</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:Sexual_cycle.svg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/024.png" border="0" width="525" height="600" alt="The sexual cycle"></a><br />
<b>The sexual cycle</b>
</div>
<p>While asexual reproduction is more efficient in nature because it prevents an organism from having to find a mate to reproduce, it also condemns a species to only produce clones of itself. Sexual reproduction improves a species ability to survive by constantly varying the traits of offspring, making it more likely that some will be able to survive a dramatic environmental change such as drought or famine.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Mitochondrial_DNA">Mitochondrial DNA</a></b></li>
<div align="center">
<a href="http://www.flickr.com/photos/ideonexus/5970203859/in/set-72157627268861020"><img src="http://ideonexus.com/wp-content/uploads/2012/02/025.jpg" border="0" width="550" height="365" alt="Human Migrations Across the Earth"></a><br />
<b>Human Migrations Across the Earth</b><br />
Credit: <a href="http://www.flickr.com/photos/ideonexus/5970203859/in/set-72157627268861020">Me</a>
</div>
<p>While sexual reproduction mixes up the genes from generation to generation, the mitochondria, energy-factories of the cell, have their own DNA and get passed down directly from the mother to her offspring.</p>
<li><b><a href="https://genographic.nationalgeographic.com/genographic/index.html">Genographic Project</a></b></li>
<div align="center">
<a href="http://ideonexus.com/2007/07/09/my-genetic-ancestry/"><img src="http://ideonexus.com/wp-content/uploads/2012/02/026.jpg" border="0" width="300" height="240" alt="Genographic Map"></a><br />
<b>Genographic Map</b>
</div>
<p>This DNA survey of human beings has traced our migration out of Africa into Europe and Asia and then over to North America and finally South America.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Mitochondrial_Eve">Mitochondrial Eve</a> and <a href="https://en.wikipedia.org/wiki/Y-chromosomal_Adam">Y-chromosomal Adam</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:Early_diversification.PNG"><img src="http://ideonexus.com/wp-content/uploads/2012/02/027.png" border="0" width="319" height="338" alt="Early diversification"></a><br />
<b>Early diversification</b>
</div>
<p>Because mitochondrial DNA are transferred from the mother to her offspring unchanged, scientists can use the variation in mitochondrial DNA across modern humans to estimate a rate of mutations (one every 3,500 years) and estimate a time back to a common ancestor who lived around 200,000 years ago.</p>
<p>Because Y-chromosomes are transferred from father to son unchanged, we can trace our ancestry using this DNA sequence. Using a survey of Y-chromosomes from all over the world and a reconstruction of ancestral Y-chromosome DNA from reversing mutated DNA segments, we can estimate a common ancestor to us all between 60,000 and 142,000 years ago.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Neanderthal_man">Neanderthal DNA in Humans</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:Range_of_Homo_neanderthalensis.png"><img src="http://ideonexus.com/wp-content/uploads/2012/02/028.png" border="0" width="550" height="284" alt="A map depicting the range of the extinct Homo neanderthalensis"></a><br />
<b>A map depicting the range of the extinct Homo neanderthalensis</b>
</div>
<p>Non-African humans have between 1% and 4% Neanderthal DNA from when our ancestors interbred with the extinct species.</p>
<p><a name="ComparativeAnatomy"></a><br />
<h2><a href="#ComparativeAnatomy">Comparative Anatomy</a></h2>
<p>Comparing species traits, their DNA, and their geography are tools for outlining their evolutionary progression and relatedness.</p>
<li><b><a href="http://talkorigins.org/faqs/comdesc/section1.html#nested_hierarchy">Nested Hierarchies</a></b></li>
<div align="center">
<a href="http://en.wikipedia.org/wiki/File:Phylogenetic-Groups-Rev.svg.png"><img src="http://ideonexus.com/wp-content/uploads/2012/02/029.png" border="0" width="550" height="464" alt="Phylogenetic groups"></a><br />
<b>Phylogenetic groups</b>
</div>
<p>We don&#8217;t just have a list of species, we have a tree logically laid out according to the similarities and dissimilarities among all the different species on Earth now and fossilized in the past.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Cladistics">Cladistics</a></b></li>
<div align="center">
<a href="http://dtc.pima.edu/blc/182/lesson3/3step3/3step3images/vertebrate_cladogram.jpg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/030.jpg" border="0" width="475" height="377" alt="Cladogram"></a><br />
<b>Cladogram</b>
</div>
<p>Cladistics is a methodology for classifying species into groups based on their characteristics. While some characteristics like eyes and sexual reproduction have emerged more than once in the history of life on Earth, for the most part we may assume that a organisms sharing a trait such as a jaw, central nervous system, lungs, or mammary glands share a common ancestor.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Evidence_of_common_descent#DNA_sequencing">Comparative DNA</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:16S.svg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/031.png" border="0" width="550" height="573" alt="16S rRNA secondary structure"></a><br />
<b>16S rRNA secondary structure</b>
</div>
<p>Phylogenic trees are built from comparing genomes in addition to comparing anatomical structures.</p>
<li><b><a href="http://talkorigins.org/faqs/comdesc/incongruent.html">Statistical Probability of Congruent Phylogenetic Trees</a></b></li>
<div align="center">
<a href="http://talkorigins.org/faqs/comdesc/incongruent.html"><img src="http://ideonexus.com/wp-content/uploads/2012/02/032.gif" border="0" width="550" height="229" alt="Phylogenic and Molecular Cladograms"></a><br />
<b>Phylogenic and Molecular Cladograms</b>
</div>
<p>When comparing the phylogenetic tree to the molecular tree, they match so well that the significance is <em>P</em> <= 0.00077.</p>
<li><b><a href="http://www.palass.org/modules.php?name=palaeo_math&#038;page=26">Thompsonian Transformation Grids</a></b></li>
<div align="center">
<a href="http://anomalus.com/public/arch2226a/content/lectures/01/images/pv_thompson_1.jpg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/033.jpg" border="0" width="550" height="366" alt="Illustration from On Growth and Form"></a><br />
<b>Illustration from <em>On Growth and Form</em></b>
</div>
<p>D’Arcy Thompson in his book <em>On Growth and Form</em> saw that one species could be turned into another through the application of mathematical transformations to alter their proportions.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Homology_(biology)">Homology</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:Homology_vertebrates.svg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/034.png" border="0" width="550" height="387" alt="Homology in vertebrates"></a><br />
<b>Homology in vertebrates</b>
</div>
<p>The bat&#8217;s wing, seal&#8217;s flipper, cat&#8217;s paw, and human hand all have the same bones and muscles because they all share a common ancestor. For example, giraffes have the <a href="http://books.google.com/books?id=Z-C1jKNgjmQC&#038;pg=PA9&#038;lpg=PA9#v=onepage&#038;q&#038;f=false">same number of neck vertebrae as humans</a>, seven.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Recapitulation_theory">Embryonic Recapitulation</a></b></li>
<div align="center">
<a href="http://www.flickr.com/photos/euthman/304334264/"><img src="http://ideonexus.com/wp-content/uploads/2012/02/035.jpg" border="0" width="550" height="587" alt="Human Embryo (7th week of pregnancy)"></a><br />
<b>Human Embryo (7th week of pregnancy)</b><br />
Credit: <a href="http://www.flickr.com/photos/euthman/304334264/">euthman</a>
</div>
<p>While the specific hypothesis of Recapitulation, that embryos retrace the evolutionary steps of their ancestors in their growth, has been discredited. Embryos do temporarily take on the characteristics of their ancestral species, such as human embryos having gill arches, a tail, eyes on the sides of the head, a tube-shaped heart, and ear-bones in the jaw during development, all of which vanish in later development. Just as Hox Genes make is possible for species to easily change forms and configurations, the stages of fetal development can change to produce very different characteristics in an organism.</p>
<li><b><a href="http://en.wikipedia.org/wiki/Neoteny#Neotenous_traits_in_humans">Neoteny in Humans</a></b></li>
<div align="center">
<a href="http://marxist-theory-of-art.blogspot.com/2008/10/origins-of-art-part-3-neoteny.html"><img src="http://ideonexus.com/wp-content/uploads/2012/02/036.jpg" border="0" width="500" height="413" alt="Infant Chimpanzees More Closely Resemble Humans"></a><br />
<b>Infant Chimpanzees More Closely Resemble Humans</b>
</div>
<p>Chimpanzee infants more closely resemble humans, suggesting an easy route from our ancestors to us would be to simply stop the development of many features earlier, leaving our heads larger in proportion to our bodies and our faces flatter.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Atavism">Atavisms</a></b></li>
<div align="center">
<a href="http://www.thenakedscientists.com/forum/index.php?topic=15775.50"><img src="http://ideonexus.com/wp-content/uploads/2012/02/037.jpg" border="0" width="472" height="478" alt="Atavistic Tail in Human Infant"></a><br />
<b>Atavistic Tail in Human Infant</b>
</div>
<p>While a species may no longer express the traits of its ancestors, the DNA for those traits may still exist in the organism&#8217;s genome and occasionally come out in individuals. As a result, we see hind legs on whales and snakes, hind fins on dolphins, extra toes on horses, teeth in chickens, humans with extra nipples or a tail, and many other traits.</p>
<li><b><a href="http://www.talkorigins.org/origins/postmonth/may05.html">Blood Salinity</a></b></li>
<div align="center">
<a href="http://en.wikipedia.org/wiki/File:1GZX_Haemoglobin.png"><img src="http://ideonexus.com/wp-content/uploads/2012/02/038.png" border="0" width="550" height="550" alt="Haemoglobin"></a><br />
<b>Haemoglobin</b>
</div>
<p>Terrestrial vertebrates &#8220;have body fluids roughly the same osmotic concentration as fresh-water fish, roughly 1/3 the concentration of sea water.&#8221;</p>
<li><b><a href="https://en.wikipedia.org/wiki/Endosymbiotic_theory">Endosymbiotic Theory</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:Endosymbiosis.PNG"><img src="http://ideonexus.com/wp-content/uploads/2012/02/039.png" border="0" width="539" height="600" alt="Endosymbiosis"></a><br />
<b>Endosymbiosis</b>
</div>
<p>There is strong evidence that Mitochondria and plastids were once bacteria that evolved on their own before being ingested by our cells into a symbiotic relationship. These organelles resemble bacteria that exist in nature and carry similar DNA.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Island_Ecology">Endemic Island Species</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:Varanus_komodoensis_2.jpg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/040.jpg" border="0" width="550" height="391" alt="Varanus komodoensis"></a><br />
<b>Varanus komodoensis</b>
</div>
<p>Islands comprise 30% of the world&#8217;s biodiversity hotspots and some of the most unusual species, as we would expect from habitats where species are left to evolve in unique ways.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Evidence_of_common_descent#Types_of_species_found_on_islands">Species Not Found on Oceanic Islands</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:Hawaje-NoRedLine.jpg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/041.jpg" border="0" width="550" height="428" alt=""></a><br />
<b>Hawaii</b>
</div>
<p>Islands that have never been a part of a continent, but formed from volcanoes do not have terrestrial mammals, amphibians, or fresh water fish, as we would expect if the island could only be populated by seeds and birds over the air or small animals carried on rafts of vegetation.</p>
<p><a name="TransitionalFossils"></a><br />
<h2><a href="#TransitionalFossils">Transitional Fossils</a></h2>
<p>The fossil record shows endless &#8220;in between&#8221; forms. The word &#8220;to&#8221; used in these examples does not mean a direct ancestry between two fossils, but rather refers to the evolving characteristics found in them over millions of years of time.</p>
<li><b><a href="http://en.wikipedia.org/wiki/List_of_transitional_fossils#Dinosaurs_to_birds">Dinosaurs to Birds</a></b></li>
<div align="center">
<a href="http://en.wikipedia.org/wiki/File:Iberomesornis-model.jpg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/042.jpg" border="0" width="550" height="412" alt="Iberomesornis"></a><br />
<b>Iberomesornis</b>
</div>
<p><a href="http://en.wikipedia.org/wiki/Pedopenna"><em>Pedopenna</em></a> to <a href="http://en.wikipedia.org/wiki/Anchiornis"><em>Anchiornis</em></a> to <a href="http://en.wikipedia.org/wiki/Scansoriopteryx"><em>Scansoriopteryx</em></a> to <a href="http://en.wikipedia.org/wiki/Archaeopteryx"><em>Archaeopteryx</em></a> to <a href="http://en.wikipedia.org/wiki/Confuciusornis"><em>Confuciusornis</em></a> to <a href="http://en.wikipedia.org/wiki/Sinosauropteryx"><em>Sinosauropteryx</em></a> to <a href="http://en.wikipedia.org/wiki/Eoalulavis"><em>Eoalulavis</em></a> to <a href="http://en.wikipedia.org/wiki/Ichthyornis"><em>Ichthyornis</em></a></p>
<li><b><a href="http://en.wikipedia.org/wiki/List_of_transitional_fossils#Fish_to_Tetrapods">Fish to Tetrapods</a> (Life from Sea to Land)</b></li>
<div align="center">
<a href="http://en.wikipedia.org/wiki/File:Tiktaalik_roseae_life_restor.jpg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/043.jpg" border="0" width="550" height="317" alt="Tiktaalik"></a><br />
<b>Tiktaalik</b>
</div>
<p><a href="http://en.wikipedia.org/wiki/Osteolepis"><em>Osteolepis</em></a> to <a href="http://en.wikipedia.org/wiki/Eusthenopteron"><em>Eusthenopteron</em></a> to <a href="http://en.wikipedia.org/wiki/Panderichthys"><em>Panderichthys</em></a> to <a href="http://en.wikipedia.org/wiki/Tiktaalik"><em>Tiktaalik</em></a> to <a href="http://en.wikipedia.org/wiki/Elginerpeton"><em>Elginerpeton</em></a> to <a href="http://en.wikipedia.org/wiki/Ventastega"><em>Ventastega</em></a> to <a href="http://en.wikipedia.org/wiki/Acanthostega"><em>Acanthostega</em></a> to <a href="http://en.wikipedia.org/wiki/Ichthyostega"><em>Ichthyostega</em></a> to <a href="http://en.wikipedia.org/wiki/Hynerpeton"><em>Hynerpeton</em></a> to <a href="http://en.wikipedia.org/wiki/Tulerpeton"><em>Tulerpeton</em></a> to <a href="http://en.wikipedia.org/wiki/Pederpes"><em>Pederpes</em></a> to <a href="http://en.wikipedia.org/wiki/Eryops"><em>Eryops</em></a>.</p>
<li><b><a href="http://en.wikipedia.org/wiki/List_of_transitional_fossils#Synapsid_.28.22mammal-like_reptiles.22.29_to_mammals">Synapsid (&#8220;mammal-like reptiles&#8221;) to Mammals</a></b></li>
<div align="center">
<a href="http://en.wikipedia.org/wiki/File:Thrinaxodon_Lionhinus.jpg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/044.jpg" border="0" width="550" height="356" alt="Thrinaxodon Lionhinus"></a><br />
<b>Thrinaxodon Lionhinus</b>
</div>
<p><a href="http://en.wikipedia.org/wiki/Protoclepsydrops"><em>Protoclepsydrops</em></a> to <a href="http://en.wikipedia.org/wiki/Archaeothyris"><em>Archaeothyris</em></a> to <a href="http://en.wikipedia.org/wiki/Clepsydrops"><em>Clepsydrops</em></a> to <a href="http://en.wikipedia.org/wiki/Dimetrodon"><em>Dimetrodon</em></a> to <a href="http://en.wikipedia.org/wiki/Procynosuchus"><em>Procynosuchus</em></a> to <a href="http://en.wikipedia.org/wiki/Thrinaxodon"><em>Thrinaxodon</em></a> to <a href="http://en.wikipedia.org/wiki/Morganucodon"><em>Morganucodon</em></a> to <a href="http://en.wikipedia.org/wiki/Yanoconodon"><em>Yanoconodon</em></a>.</p>
<li><b><a href="http://en.wikipedia.org/wiki/List_of_transitional_fossils#Early_Artiodactylans_to_whales_.28Evolution_of_whales.29">Artiodactylans to Whales</a> (Land to Sea)</b></li>
<div align="center">
<a href="http://en.wikipedia.org/wiki/File:Ambulocetus_et_pakicetus.jpg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/045.jpg" border="0" width="550" height="412" alt="Ambulocetus"></a><br />
<b>Ambulocetus</b>
</div>
<p><a href="http://en.wikipedia.org/wiki/Pakicetus"><em>Pakicetus</em></a> to <a href="http://en.wikipedia.org/wiki/Ambulocetus"><em>Ambulocetus</em></a> to <a href="http://en.wikipedia.org/wiki/Kutchicetus"><em>Kutchicetus</em></a> to <a href="http://en.wikipedia.org/wiki/Artiocetus"><em>Artiocetus</em></a> to <a href="http://en.wikipedia.org/wiki/Dorudon"><em>Dorudon</em></a> to <a href="http://en.wikipedia.org/wiki/Aetiocetus"><em>Aetiocetus</em></a> to <a href="http://en.wikipedia.org/wiki/Basilosaurus"><em>Basilosaurus</em></a> to <a href="http://en.wikipedia.org/wiki/Eurhinodelphis"><em>Eurhinodelphis</em></a> to <a href="http://en.wikipedia.org/wiki/Mammalodon"><em>Mammalodon</em></a>.</p>
<li><b><a href="http://en.wikipedia.org/wiki/Evolution_of_the_horse">Horse Evolution</a></b></li>
<div align="center">
<a href="http://en.wikipedia.org/wiki/File:Equine_evolution.jpg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/046.jpg" border="0" width="550" height="470" alt="Equine evolution"></a><br />
<b>Equine evolution</b>
</div>
<p><a href="http://en.wikipedia.org/wiki/Hyracotherium"><em>Hyracotherium</em></a> to <a href="http://en.wikipedia.org/wiki/Mesohippus"><em>Mesohippus</em></a> to <a href="http://en.wikipedia.org/wiki/Parahippus"><em>Parahippus</em></a> to <a href="http://en.wikipedia.org/wiki/Merychippus"><em>Merychippus</em></a> to <a href="http://en.wikipedia.org/wiki/Pliohippus"><em>Pliohippus</em></a> to <a href="http://en.wikipedia.org/wiki/Equidae"><em>Equus</em></a>.</p>
<li><b><a href="http://en.wikipedia.org/wiki/Timeline_of_human_evolution">Human Evolution</a></b></li>
<div align="center">
<a href="http://www.flickr.com/photos/ideonexus/sets/72157624269148442/"><img src="http://ideonexus.com/wp-content/uploads/2012/02/047.png" border="0" width="550" height="242" alt="Skulls from Human Evolution"></a><br />
<b>Skulls from Human Evolution</b><br />
Credit: <a href="http://www.flickr.com/photos/ideonexus/sets/72157624269148442/">Me</a>
</div>
<p><a href="http://en.wikipedia.org/wiki/Apidium"><em>Apidium</em></a> to <a href="http://en.wikipedia.org/wiki/Aegyptopithecus"><em>Aegyptopithecus</em></a> to <a href="http://en.wikipedia.org/wiki/Proconsul_(primate)"><em>Proconsul</em></a> to <a href="http://en.wikipedia.org/wiki/Pierolapithecus"><em>Pierolapithecus</em></a> to <a href="http://en.wikipedia.org/wiki/Ardipithecus"><em>Ardipithecus</em></a> to <a href="http://en.wikipedia.org/wiki/Australopithecus"><em>Australopithecus</em></a> to <a href="http://en.wikipedia.org/wiki/Homo_habilis"><em>Homo habilis</em></a> to <a href="http://en.wikipedia.org/wiki/Homo_erectus"><em>Homo erectus</em></a> to <a href="http://en.wikipedia.org/wiki/Archaic_Homo_sapiens"><em>&#8216;Archaic&#8217; sapiens</em></a>&#8230; and there&#8217;s <a href="http://en.wikipedia.org/wiki/List_of_human_evolution_fossils">alot more fossils than these</a>.</p>
<p><a name="ConvergentEvolution"></a><br />
<h2><a href="#ConvergentEvolution">Convergent Evolution</a></h2>
<p>Different species will evolve similar adaptations to the similar challenges.</p>
<li><b><a href="http://en.wikipedia.org/wiki/Parallel_evolution#Parallel_evolution_between_marsupials_and_placentals">Placental Mammals and Australian Marsupials</a></b></li>
<div align="center">
<a href="http://users.tamuk.edu/kfjab02/Biology/Mammalogy/biolog2.gif"><img src="http://ideonexus.com/wp-content/uploads/2012/02/048.gif" border="0" width="477" height="495" alt="Mammals and Marsupials"></a><br />
<b>Mammals and Marsupials</b>
</div>
<p>Despite evolving in geographic isolation, the marsupials of Australia have evolved many analogous features of placental mammals in the rest of the world.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Ichthyosaur">Ichthyosaurs and Dolphins</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:Ichthyosaurus_BW.jpg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/049.jpg" border="0" width="550" height="251" alt="Ichthyosaurus"></a><br />
<b>Ichthyosaurus</b>
</div>
<p>The ichthyosaurs, a marine reptile from 250 million years ago, and dolphins are both air-breathing and both descended from land animals. They adapted to life in the ocean with a hydrological design that includes fins and a body shape like that of a fish.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Convergent_evolution">Birds and Bats</a></b></li>
<div align="center">
<a href="http://watchingtheworldwakeup.blogspot.com/2010/08/more-things-that-fly-around-ponds.html"><img src="http://ideonexus.com/wp-content/uploads/2012/02/050.jpg" border="0" width="550" height="319" alt="Bat and Bird Wings"></a><br />
<b>Bat and Bird Wings</b>
</div>
<p>Birds and bats both have wings made out of bones that were arms in their ancestors.</p>
<li><b><a href="http://en.wikipedia.org/wiki/Evolution_of_the_eye">The Eye</a></b></li>
<div align="center">
<a href="http://en.wikipedia.org/wiki/File:Diagram_of_eye_evolution.svg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/051.png" border="0" width="429" height="599" alt="Eye Evolution"></a><br />
<b>Eye Evolution</b>
</div>
<p>Complex image-forming eyes have evolved some 50 to 100 times, with the first eyes appearing in the fossil record 540 million years ago.</p>
<li><b><a href="http://en.wikipedia.org/wiki/Succulents#Evolution">Succulents in the Americas and Africa</a></b></li>
<div align="center">
<a href="http://en.wikipedia.org/wiki/Convergent_evolution"><img src="http://ideonexus.com/wp-content/uploads/2012/02/052.png" border="0" width="499" height="264" alt="Succulents from Different Continents"></a><br />
<b>Succulents from Different Continents</b>
</div>
<p>Although they evolved on different contents, the succulents of Africa and the Americas adopted very similar traits to survive in arid climates and soil conditions.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Homo_floresiensis#Small_bodies"><em>Homo floresiensis</em> and Dwarf Elephants</a></b></li>
<div align="center">
<a href="http://en.wikipedia.org/wiki/File:Homo_floresiensis_-_reconstruction.JPG"><img src="http://ideonexus.com/wp-content/uploads/2012/02/053.jpg" border="0" width="550" height="412" alt="Homo floresiensis - reconstruction"></a><br />
<b>Homo floresiensis &#8211; reconstruction</b>
</div>
<p> The &#8220;hobbit&#8221; human of Indonesia and <a href="http://en.wikipedia.org/wiki/Dwarf_elephant#Indonesia">Dwarf elephant</a> both adapted to limited food sources on the island of Indonesia by shrinking in size 840,000 years ago.</p>
<p><a name="Adaptations"></a><br />
<h2><a href="#Adaptations">Adaptations</a></h2>
<p>Many of the same organs in species are adapted to specific tasks both within a species and across them.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Coevolution">Coevolution</a></b></li>
<div align="center">
<a href="http://www.flickr.com/photos/mwhitehead/4069584187/"><img src="http://ideonexus.com/wp-content/uploads/2012/02/054.jpg" border="0" width="550" height="412" alt="Sexually-deceived"></a><br />
<b>Sexually-deceived</b><br />
Credit: <a href="http://www.flickr.com/photos/mwhitehead/4069584187/">~Squil~</a>
</div>
<p>Flowers bribe insects and hummingbirds with nectar in exchange for acting as their instruments of sexual reproduction by carrying pollen from plant to plant. Orchids use deception by mimicking the pheromones and appearance of insects to trick them into attempting to mate with the flower. The existence of unknown insect species has been predicted by the discovery of orchid flowers.</p>
<li><b><a href="http://en.wikipedia.org/wiki/Beak">Beaks</a></b></li>
<div align="center">
<div  style="background-color:#ffffff;width:200px;"><a href="http://en.wikipedia.org/wiki/File:BirdBeaksA.svg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/055.png" border="0" width="199" height="599" alt="Bird Beaks"></a></div>
<p><b>Bird Beaks</b>
</div>
<p>Birds exhibit a wide variety of beak shapes that are adapted to their feeding habits.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Insect_mouthparts">Insect Mouthparts</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:Evolution_insect_mouthparts_coloured_derivate.png"><img src="http://ideonexus.com/wp-content/uploads/2012/02/056.png" border="0" width="550" height="523" alt="Insect Mouthparts"></a><br />
<b>Insect Mouthparts</b>
</div>
<p>The primitive mouthparts of grasshoppers have evolved to a wide variety of specialized feeding strategies in other insects.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Tree#Tallest_trees">Tall Trees</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:Coastal_redwood.jpg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/057.jpg" border="0" width="397" height="600" alt="Coastal Redwood"></a><br />
<b>Coastal Redwood</b>
</div>
<p>Trees grow tall in order to get above the competition for access to sunlight. Shorter trees get left in shadow while the tallest trees get to photosynthesize.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Human_skin_color">Human Skin Color</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:Unlabeled_Renatto_Luschan_Skin_color_map.svg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/058.png" border="0" width="550" height="339" alt="Skin color map"></a><br />
<b>Skin color map</b>
</div>
<p>Humans rely on sunlight to generate vitamin D. As humans migrated north, they recieved less sunlight; therefore, natural selection favored lighter skin that produced more vitamin D in response to sunlight.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Sickle-cell_disease">Sickle-Cell Disease</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:Sicklecells.jpg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/059.jpg" border="0" width="144" height="168" alt="Sickle cells"></a><br />
<b>Sickle cells</b>
</div>
<p>The gene for this disease is prevalent in Sub-Saharan Africa, where malaria is common. Individuals who carry only a single sickle-cell gene are more tolerate of malarial infection.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Lactase_persistence">Lactase Persistence</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:Lactase_shrunk.jpg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/060.jpg" border="0" width="550" height="431" alt="Modern-day lactose intolerance in humans"></a><br />
<b>Modern-day lactose intolerance in humans</b>
</div>
<p>Most mammals develop an intolerance to lactose, the sugar found in milk, as they grow older, but humans in some regions are able to continue digesting milk, the result of humans consuming the milk of livestock such as cows, goats, and camels (this is also an example of convergent evolution). </p>
<li><b><a href="http://www.scientificamerican.com/article.cfm?id=secrets-of-the-phallus&#038;page=2">The shape of the penis.</a></b></li>
<div align="center">
<a href="http://www.flickr.com/photos/fluffymuppet/6234525966/"><img src="http://ideonexus.com/wp-content/uploads/2012/02/061.jpg" border="0" width="411" height="600" alt="Mushroom"></a><br />
<b>Mushroom</b><br />
Credit: <a href="http://www.flickr.com/photos/fluffymuppet/6234525966/">Fluffymuppet</a>
</div>
<p>The human male penis has a bulbous end that maximizes its ability to displace the semen of rival males from the vagina.</p>
<p><a name="VestigialTraits"></a><br />
<h2><a href="#VestigialTraits">Vestigial Traits</a></h2>
<p>Various species, including humans, have numerous physical traits that are leftovers from our ancestors.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Evolution#Adaptation">Hip bones in Whales</a></b></li>
<div align="center">
<div  style="background-color:#ffffff;"><a href="http://en.wikipedia.org/wiki/File:Mystice_pelvis_(whale).png"><img src="http://ideonexus.com/wp-content/uploads/2012/02/062.png" border="0" width="545" height="143" alt="Baleen whale Pelvis"></a></div>
<p><b>Baleen whale Pelvis</b>
</div>
<p>Baleen whales still have hip bones inside them, serving as anchors for muscles, from when their ancestors had legs.</p>
<li><b><a href="http://en.wikipedia.org/wiki/Evidence_of_common_descent#Recurrent_laryngeal_nerve_in_giraffes">Laryngeal Nerve in Giraffes</a></b></li>
<div align="center">
<div  style="background-color:#ffffff;"><a href="http://en.wikipedia.org/wiki/File:GiraffaRecurrEn.svg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/063.png" border="0" width="450" height="305" alt="Scheme of path of the recurrent laryngeal nerve in Giraffa camelopardis"></a></div>
<p><b>Scheme of path of the recurrent laryngeal nerve in Giraffa camelopardis</b>
</div>
<p>Although the most direct route for this nerve is just a few inches, it may be up to 13 feet long in giraffes as it goes all the way down the neck, loops back, and comes all the way back up again. This nerve takes a similarly <a href="https://en.wikipedia.org/wiki/Recurrent_laryngeal_nerve">crazy route in humans too</a>. The nerve is long because our fish ancestors had no neck, and the nerve looped around a gill arch that would become the dorsal aorta in mammals.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Vermiform_appendix">Veriform Appendix</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:Gray536.png"><img src="http://ideonexus.com/wp-content/uploads/2012/02/064.png" border="0" width="500" height="394" alt="Veriform Apendix Connected to Large Intestine"></a><br />
<b>Veriform Apendix Connected to Large Intestine</b>
</div>
<p>In our ancestors, the appendix is used to digest plant fibers. As humans began cooking our food, we did not need to digest plant cellulose, so this organ shrunk to its current pinky-size. A recent hypothesis suggest the veriform appendix now serves as a reservoir for bacteria to repopulate the large intestine after illness wipes them out.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Coccyx">Coccyx</a></b></li>
<div align="center">
<a href="http://www.flickr.com/photos/rswatski/4849499648/"><img src="http://ideonexus.com/wp-content/uploads/2012/02/065.jpg" border="0" width="550" height="405" alt="Pelvic girdle, posterior view"></a><br />
<b>Pelvic girdle, posterior view</b><br />
Credit: <a href="http://www.flickr.com/photos/rswatski/4849499648/">Rob Swatski</a>
</div>
<p>The tailbone is the final segment of the vertebral column in tailless primates, all that remains from our ancestors&#8217; tails. Today it serves as an attachment point for muscles and something to sit on.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Goose_bumps">Goose Bumps</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:2003-09-17_Goose_bumps.jpg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/066.jpg" border="0" width="550" height="502" alt="Goose Bumps"></a><br />
<b>Goose Bumps</b>
</div>
<p>These bumps on our bare skin occur in cold weather or when experiencing fear. In our ancestors they would cause the fur to rise up, increasing insulation against the cold and increasing the appearance of size against threats.</p>
<li><b><a href="http://memexplex.com/Meme/622/">Maxillary Sinuses</a></b></li>
<div align="center">
<a href="http://scienceblogs.com/denialism/2007/11/ask_a_scienceblogger_which_par.php"><img src="http://ideonexus.com/wp-content/uploads/2012/02/067.jpg" border="0" width="525" height="408" alt="maxillary sinuses"></a><br />
<b>maxillary sinuses</b>
</div>
<p>These sinus cavities have their drainage hole in the top. This is because, when our ancestors walked on all fours, the drainage hole was positioned in the front.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Blind_spot_(vision)">Blind Spot in Vertebrate Eyes</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:Evolution_eye.svg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/068.png" border="0" width="550" height="312" alt="Vertebrate VS Octopus Eye"></a><br />
<b>Vertebrate VS Octopus Eye</b>
</div>
<p>The optic nerve that carries information from our eyes to our brain actually comes through the eye, creating a spot where there are no photoreceptor cells on the optic disc to recieve light. As a result, our brains fill in the blank spot using surrounding details and information from the other eye. The optic nerve of octopus eyes stays behind the photoreceptor cells, so they experience no blind spot.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Blind_cave_fish#Evolution_research">Blind Cave Fish</a></b></li>
<div align="center">
<a href="http://www.flickr.com/photos/wellcomeimages/5814821326/"><img src="http://ideonexus.com/wp-content/uploads/2012/02/069.jpg" border="0" width="550" height="274" alt="cavefish and zebrafish embryos"></a><br />
<b>cavefish and zebrafish embryos</b><br />
Credit: <a href="http://www.flickr.com/photos/wellcomeimages/5814821326/">wellcome images</a>
</div>
<p>Animals that move to a dark environment will quickly lose evolutionary adaptations that are no longer useful. Cave fish embryos begin to develop eyes, but then stop and skin grows over them.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Flightless_bird">Flightless Birds</a></b></li>
<div align="center">
<a href="http://www.flickr.com/photos/doug88888/4541091801/"><img src="http://ideonexus.com/wp-content/uploads/2012/02/070.jpg" border="0" width="550" height="366" alt="Ostrich"></a><br />
<b>Ostrich</b><br />
Credit: <a href="http://www.flickr.com/photos/doug88888/4541091801/">Doug Wheller</a>
</div>
<p>Similarly to cave fish, the wings of birds that no longer need to fly will grow smaller and the birds will become flightless.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Tyrannosaurus#Arms"><em>Tyrannosaurus rex&#8217;s</em> Arms</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:Tyrannosaurus_resting_pose.jpg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/071.jpg" border="0" width="550" height="380" alt="Tyrannosaurus resting pose"></a><br />
<b>Tyrannosaurus resting pose</b>
</div>
<p>Contrary to popular belief, <em>Tyrannosaurus rex&#8217;s</em> arms are <b>not</b> vestigial, but show large areas of muscle attachment. They may have been used in mating or in helping the animal rise from a prone position.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Wisdom_Teeth#Vestigiality_and_variation">Wisdom Teeth</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:Impacted_wisdom_teeth.jpg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/072.jpg" border="0" width="550" height="261" alt="Impacted wisdom teeth"></a><br />
<b>Impacted wisdom teeth</b>
</div>
<p>Similar to the appendix, these teeth helped us grind up plant cellulose. As we began cooking our foods, our jaws atrophied, leaving less room for these teeth to come in. As a result, many people have them pulled today.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Plica_semilunaris_of_the_conjunctiva">Plica Semilunaris of Conjunctiva</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:Gray1205.png"><img src="http://ideonexus.com/wp-content/uploads/2012/02/073.png" border="0" width="429" height="350" alt="Plica Semilunaris"></a><br />
<b>Plica Semilunaris</b>
</div>
<p>This fleshy part found in the inner corner of our eyes is what remains of our ancestors&#8217; third eyelid. Today it produces eye-boogers.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Palmar_grasp_reflex#Palmar_grasp_reflex">Palmar Grasp Reflex &#8211; Infant grasping reflex</a></b></li>
<div align="center">
<a href="http://www.flickr.com/photos/diathesis/2358445726/"><img src="http://ideonexus.com/wp-content/uploads/2012/02/074.jpg" border="0" width="550" height="366" alt="palmar grasp reflex"></a><br />
<b>palmar grasp reflex</b><br />
Credit: <a href="http://www.flickr.com/photos/diathesis/2358445726/">Geoffrey Wiseman</a>
</div>
<p>From birth until five or six months of age, human infants will instinctually grasp things that brush their palms. This is a vestigial reflex from our primate ancestors who had fur to which infants could cling.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Human_evolution">Ear Muscles</a></b></li>
<div align="center">
<a href="http://m.blog.hu/su/sunporgo/image/Gray378_ear_muscles.png"><img src="http://ideonexus.com/wp-content/uploads/2012/02/075.png" border="0" width="293" height="309" alt="Ear Muscles"></a><br />
<b>Ear Muscles</b>
</div>
<p>Humans have fairly useless ear muscles from when our ancestors were able to manipulate their ears independent of their head, like in cats.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Notothenioidei">Antarctic icefish</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:Icefishuk.jpg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/076.jpg" border="0" width="550" height="366" alt="Icefish"></a><br />
<b>Icefish</b>
</div>
<p>This fish has clear blood because it contains only 1% hemoglobin, the metalloprotein that carries oxygen in our blood, because it lives in oxygen-rich cold water but still has the genes to make hemoglobin that it got from its ancestors.</p>
<li><b><a href="http://www.athro.com/evo/pthumb.html">The Panda&#8217;s Thumb</a></b></li>
<div align="center">
<a href="http://www.flickr.com/photos/baggis/4361397815/"><img src="http://ideonexus.com/wp-content/uploads/2012/02/077.jpg" border="0" width="550" height="412" alt="Panda Hand"></a><br />
<b>Panda Hand</b><br />
Credit: <a href="http://www.flickr.com/photos/baggis/4361397815/">Travis S.</a>
</div>
<p>Panda&#8217;s, which are related to carnivorous bears, have five clawed fingers and a modified wrist bone that sticks out to function like a primitive thumb, which they used to grab bamboo&#8211;which they <a href="http://gizmodo.com/5841175/should-we-just-let-pandas-die-off-already">can barely digest</a> because they are descendent of carnivores.</p>
<li><b><a href="http://en.wikipedia.org/wiki/Evidence_of_common_descent#Route_of_the_vas_deferens">Route of the vas derens</a></b></li>
<div align="center">
<a href="http://en.wikipedia.org/wiki/File:Route_of_vas_deferens_from_testis_to_the_penis.png"><img src="http://ideonexus.com/wp-content/uploads/2012/02/078.png" border="0" width="294" height="426" alt="Route of vas deferens from testis to the penis"></a><br />
<b>Route of vas deferens from testis to the penis</b>
</div>
<p>This tube routes sperm from the testicles to the base of the penis in anticipation of ejaculation in humans. Although the direct route is only a few inches, the vas deferens loops up and over the tubes connecting the kidneys to the bladder and back down again because our ancestors testes were on the inside. Human male embryos start out with their testes on the inside, but they descend to the scrotum during development.</p>
<p><a name="ArtificialSelection"></a><br />
<h2><a href="#ArtificialSelection">Artificial Selection</a></h2>
<p>For thousands of years humans have bred various species to maximize desirable traits.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Domesticated_silver_fox">Wild Silver Foxes into Puppies</a></b></li>
<div align="center">
<a href="http://www.flickr.com/photos/mattknoth/2998070371/"><img src="http://ideonexus.com/wp-content/uploads/2012/02/079.jpg" border="0" width="398" height="600" alt="young silver fox"></a><br />
<b>young silver fox</b><br />
Credit: <a href="http://www.flickr.com/photos/mattknoth/2998070371/">matt knoth</a>
</div>
<p>Dimitri Belyaer, by selecting for non-aggressive behavior and non-fearful behavior, was able to turn wild silver foxes into tail-wagging, friendly animals very similar to domesticated dogs in just 10 generations.</p>
<li><b><a href="https://en.wikipedia.org/wiki/List_of_dog_breeds">Dog Breeding</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:Big_and_little_dog_1.jpg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/080.jpg" border="0" width="550" height="462" alt="Great Dane and Chihuahua mixed-breed"></a><br />
<b>Great Dane and Chihuahua mixed-breed</b>
</div>
<p>Humans have produced a wide variety of dogs in many shapes and sizes by selecting for traits in just 10,000 years.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Corn#Origin">Corn</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:Maize-teosinte.jpg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/081.jpg" border="0" width="499" height="599" alt="Teosinte, Maize-teosinte hybrid, Maize."></a><br />
<b>Teosinte, Maize-teosinte hybrid, Maize.</b>
</div>
<p>Maize is a domesticated descendent of <a href="https://en.wikipedia.org/wiki/Teosinte">teosinte</a>, a wild grass. Although they appear very different, two genes control the differences between them.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Chickens#Origins">Chickens</a></b></li>
<div align="center">
<a href="http://www.nature.com/nrg/journal/v2/n2/fig_tab/nrg0201_130a_F1.html"><img src="http://ideonexus.com/wp-content/uploads/2012/02/082.gif" border="0" width="410" height="600" alt="different breeds of domestic chicken in comparison with the wild ancestor, the Red Jungle Fowl"></a><br />
<b>Different breeds of domestic chicken in comparison with the wild ancestor, the Red Jungle Fowl</b><br />
Credit: Staffan Ullström
</div>
<p>Farm chickens are descendants of <a href="https://en.wikipedia.org/wiki/Red_Junglefowl">Red Jungle Fowl</a>.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Domesticated_turkey">Domesticated Turkey</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/Domesticated_turkey"><img src="http://ideonexus.com/wp-content/uploads/2012/02/083.png" border="0" width="476" height="260" alt="Wild and Domesticated Turkeys"></a><br />
<b>Wild and Domesticated Turkeys</b>
</div>
<p>When you look at the domesticated turkey, it&#8217;s hard to believe Benjamin Franklin <a href="http://www.greatseal.com/symbols/turkey.html">lamented to his daughter</a> that the turkey should be the American mascot rather than the bald eagle, but the <a href="https://en.wikipedia.org/wiki/Wild_Turkey">wild turkey</a> is a very athletic and rather majestic animal.</p>
<li><b><a href="https://en.wikipedia.org/wiki/B._oleracea">Brussel Sprouts, Kale, Cauliflower, Turnips, Rutabega, Kohlrabi</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:Brassica_oleracea0.jpg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/084.jpg" border="0" width="550" height="412" alt="Brassica oleracea"></a><br />
<b>Brassica oleracea</b>
</div>
<p>Brussel Sprouts, Kale, Cauliflower, Turnips, Rutabega, Kohlrabi are all descendants of <em>Brassica oleracea</em>, a wild cabbage plant.</p>
<p><a name="EvolutioninAction"></a><br />
<h2><a href="#EvolutioninAction">Evolution in Action</a></h2>
<p>Natural selection has been observed to happen in the real world, with species evolving right before our eyes.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Prion">Prions</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:Histology_bse.jpg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/085.jpg" border="0" width="550" height="438" alt=""></a><br />
<b>bovine spongiform encephalopathy</b><br />
Credit: Public Health Image Library, APHIS
</div>
<p>Prions, an infectious protein, are protein molecules that fold other proteins into their state, causing diseases like Mad Cow disease. These molecules have been found to <a href="http://www.sciencedaily.com/releases/2009/12/091231164747.htm">evolve under selective pressures</a>, such as medical treatments, despite not having DNA.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Peppered_moth_evolution">Peppered Moth</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:%D0%9F%D1%8F%D0%B4%D0%B5%D0%BD%D0%B8%D1%86%D0%B0_%D0%B1%D0%B5%D1%80%D0%B5%D0%B7%D0%BE%D0%B2%D0%B0%D1%8F.jpg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/086.jpg" border="0" width="550" height="368" alt="Biston betularia"></a><br />
<b>Biston betularia</b>
</div>
<p>The most famous example of natural selection, during the Industrial Revolution in England, the lichens on trees died and the bark was stained black with soot. Peppered moths that were light grey and speckled lost their camouflage and black peppered moths were able to hide better, so dark moths became more prevalent whereas grey moths were formerly more prevalent.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Antibiotic_resistance">Antibiotic Resistance</a></b></li>
<div align="center">
<div  style="background-color:#ffffff;width:310px;"><a href="https://en.wikipedia.org/wiki/File:Antibiotic_resistance.svg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/087.png" border="0" width="300" height="550" alt="Antibiotic resistance"></a></div>
<p><b>Antibiotic resistance</b><br />
Credit: Wykis
</div>
<p>The widespread use of antibiotics has put selective pressure on bacteria to evolve resistances to drugs, which they rapidly achieve.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Pesticide_resistance">Pesticide Resistance</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:Pest_resistance_labelled_light.svg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/088.png" border="0" width="550" height="575" alt="Pest resistance"></a><br />
<b>Pest resistance</b><br />
Credit: Delldot
</div>
<p>Fruit flies, houseflies, rats, mosquitoes, and Colorado potato beetles are among some of the species observed to evolve a resistance to a variety of pesticides.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Nylon-eating_bacteria">Nylon-Eating Bacteria</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:Nylon6_and_Nylon_66.png"><img src="http://ideonexus.com/wp-content/uploads/2012/02/089.png" border="0" width="550" height="347" alt="variants nylon 6 and nylon 6,6"></a><br />
<b>variants nylon 6 and nylon 6,6</b><br />
Credit: Michael Ströck
</div>
<p>In 1975, Japanese scientists discovered bacteria eating the byproducts of nylon 6 manufacture in the wild despite the fact that those substances are thought to not have existed before nylon production in 1935.</p>
<li><b><a href="https://en.wikipedia.org/wiki/E._coli_long-term_evolution_experiment"><em>E. coli</em> Long-Term Evolution Experiment</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:Lenski%27s_long-term_lines_of_E._coli_on_25_June_2008,_close-up_of_citrate_mutant.jpg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/090.jpg" border="0" width="550" height="321" alt="Lenski's long-term lines of E. coli"></a><br />
<b>Lenski&#8217;s long-term lines of E. coli</b><br />
Credit: Brian Baer and Neerja Hajela
</div>
<p>For over two decades Richard Lenski has tracked the changes in generations of 12 initially identical populations of asexual <em>Escherichia coli</em>, freezing every 500th generation to track evolutionary changes. The project reached 50,000 generation in 2010 and observed numerous adaptations, most strikingly one strain evolving to consume citric acid&#8211;something the species was previously thought incapable of (Experiment website <a href="http://myxo.css.msu.edu/ecoli/cellsize.html">here</a>).</p>
<li><b><a href="http://www.talkorigins.org/faqs/faq-speciation.html#part5">Speciation of Fruit Flies</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:Drosophila_speciation_experiment.svg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/091.png" border="0" width="550" height="215" alt="allopatric speciation in the fruit fly"></a><br />
<b>allopatric speciation in the fruit fly</b><br />
Credit: Diane Dodd
</div>
<p>William Rice and G.W. Salt were able to breed a population of fruit flies into two species by selecting them for their food preferences in just 35 generations.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Ring_species">Ring Species</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:Ring_species_seagull.svg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/092.png" border="0" width="532" height="599" alt="Ring species seagull"></a><br />
<b>Ring species seagull</b>
</div>
<p>Seagulls around the North Pole, salamanders around California&#8217;s Central Valley, and Warblers around the Himalayas are species that can breed with their neighbors all the way around the circle, but cannot breed with species opposite them in the circle, meaning neighbors are the same species, but those at opposite ends of the circle are different species.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Somatic_evolution_in_cancer">Cancer</a></b></li>
<div align="center">
<a href="https://commons.wikimedia.org/wiki/File:IDC1.jpg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/093.jpg" border="0" width="550" height="412" alt="Brest cancer"></a><br />
<b>Brest cancer</b>
</div>
<p>One of the reasons cancer is so difficult to treat is because the disease evolves through natural selection to grow more resistant to treatments.</p>
<p><a name="SexualSelection"></a><br />
<h2><a href="#SexualSelection">Sexual Selection</a></h2>
<p>Natural selection doesn&#8217;t just apply to climate, food, and predators. Members of a species that sexually reproduce must compete with one another for mates.</p>
<li><b><a href="http://www.pbs.org/wgbh/evolution/sex/guppy/low_bandwidth.html">John Endler&#8217;s Guppies</a></b></li>
<div align="center">
<a href="http://en.wikipedia.org/wiki/File:Poecilia_reticulata_01.jpg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/094.jpg" border="0" width="541" height="224" alt="Poecilia reticulata"></a><br />
<b>Poecilia reticulata</b><br />
Credit: Silvana Gericke
</div>
<p>Endler documented the colors of guppies and the competing forces of predator and sexual selections. Where there were fewer predators, the guppies got more colorful to attract mates.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Sexual_selection#Example:_Intersexual_Selection">The Peacocks Tail</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:Indian_Peacock_Plumage.jpg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/095.jpg" border="0" width="550" height="365" alt="Indian Peacock Plumage"></a><br />
<b>Indian Peacock Plumage</b><br />
Credit: Vidhya Narayanan
</div>
<p>Peafowls have huge ungainly tail feathers that, while beautiful, seem like more of an encumbrance when dealing with predators; however, peacocks display this plumage to peahens as part of courtship, suggesting the peahen discerns something about the health of the male&#8217;s genes in the display.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Babirusa#Physical_description">Babirusa Tusks</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:Babyrousa_babyrussa_Crane.jpg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/096.jpg" border="0" width="550" height="366" alt="Babyrousa babyrussa Crane"></a><br />
<b>Babyrousa babyrussa Crane</b><br />
Credit: Didier Descouens
</div>
<p>These canines drive through the skin and curl back towards the forehead, providing a defense for intra-species fighting while the bottom canine-tusks provide an offense.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Bowerbird#Mating_behavior">Bowerbird</a></b></li>
<div align="center">
<a href="http://www.flickr.com/photos/40325561@N04/4091620125/"><img src="http://ideonexus.com/wp-content/uploads/2012/02/097.jpg" border="0" width="550" height="423" alt="Bowerbird Sorting His Treasures"></a><br />
<b>Bowerbird Sorting His Treasures</b><br />
Credit: <a href="http://www.flickr.com/photos/40325561@N04/4091620125/">dracophylla</a>
</div>
<p>Male bowerbirds construct elaborate bowers, decorating them with colorful objects, berries, piling twigs, stones, and other displays of which female bowerbirds will evaluate several before choosing a mate. After mating, the female then builds a nest elsewhere to raise the young alone.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Irish_Elk#Evolution_of_antler_size">Irish Elk Antlers</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:Irish_Elk_front.jpg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/098.jpg" border="0" width="550" height="312" alt="Irish Elk"></a><br />
<b>Irish Elk</b><br />
Credit: Franco Atirador
</div>
<p>Stephen J. Gould argued that these enormous antlers, which required great mineral resources from plants to support and prevented the elk from navigating through forests, were largely responsible for their extinction. The positioning of the antlers were poor for combat between males, but were great for intimidating rivals and impressing females.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Bird-of-paradise">Bird-of-Paradise</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:Ribbon-tailed_Astrapia.jpg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/099.png" border="0" width="550" height="375" alt="Bird of Paradise"></a><br />
<b>Bird of Paradise</b>
</div>
<p>These birds have evolved a wide variety of plumage displays for the sole purpose of attracting a mate.</p>
<li><b><a href="http://rspb.royalsocietypublishing.org/content/early/2009/12/18/rspb.2009.2139.full">Duck Penis</a></b></li>
<div align="center">
<a href="http://rspb.royalsocietypublishing.org/content/early/2009/12/18/rspb.2009.2139.full"><img src="http://ideonexus.com/wp-content/uploads/2012/02/100.jpg" border="0" width="550" height="235" alt="Duck genitalia and mechanical barriers"></a><br />
<b>Duck genitalia and mechanical barriers</b><br />
Credit: Patricia L. R. Brennan1,2,*, Christopher J. Clark1,2 and Richard O. Prum
</div>
<p>Ducks copulate through rape. As a result, females have evolved mazelike vaginas, complete with dead-ends to prevent insemination. Male ducks have evolved one of the longest penises in relation to body-size of any vertebrate as well has having a penis that takes on a corkscrew shape to better navigate the female&#8217;s vagina.</p>
<li><b><a href="https://en.wikipedia.org/wiki/Waist-hip_ratio#Measure_of_attractiveness">Waist-to-Hip Ratio in Human Females</a></b></li>
<div align="center">
<a href="https://en.wikipedia.org/wiki/File:Waist-hip_ratio.svg"><img src="http://ideonexus.com/wp-content/uploads/2012/02/101.png" border="0" width="550" height="300" alt="Waist-to-Hip Ratio"></a><br />
<b>Waist-to-Hip Ratio</b><br />
Credit: Mikael Häggström
</div>
<p>Waist-hip ratio is a significant measure of female attractiveness in humans, which makes sense as the waist is an indicator of fertility while the hips are an indicator of being able to give birth to human infants with their extremely large heads.</p>
<p><a name="OnAndOn"></a><br />
<h2><a href="#OnAndOn">And the List Goes On and On&#8230;</a></h2>
<p>Aphids go from <a href="http://mxplx.com/Meme/483/">asexual to sexual in times of stress</a>. Eating Cicadas can <a href="http://abcnews.go.com/US/Story?id=3210099&#038;page=1"> trigger a shellfish allergic reaction</a>. <a href="https://en.wikipedia.org/wiki/Antifreeze_proteins#Evolution">Antifreeze proteins</a> and <a href="https://en.wikipedia.org/wiki/List_of_examples_of_convergent_evolution#Extant_reptiles">lots and lots of other examples</a> of convergent evolution. The <a href="http://www.criticalzoologists.org/psg/g_pretenders01.html">Phylliidae Convention in Japan</a>. Dr. J. Craig Venter <a href="http://www.nytimes.com/2010/05/21/science/21cell.html">engineering the first self-replicating semi-synthetic bacterial cell</a>. <a href="http://www.kurzweilai.net/chemists-create-artificial-cell-membrane">Artificial cell membranes</a>. Yeast evolving into <a href="http://arstechnica.com/science/news/2012/01/researchers-evolve-a-multicellular-yeast-in-the-lab-in-2-months.ars">multicelluar yeast in two months</a> in a lab. The <a href="https://en.wikipedia.org/wiki/Triune_brain">Triune brain</a>. <a href="https://en.wikipedia.org/wiki/Radiotrophic_fungi">Radiotrophic fungi</a>. <a href="https://en.wikipedia.org/wiki/Urban_wildlife">Urban wildlife</a>. <a href="https://en.wikipedia.org/wiki/Chromosome_2_(human)">Chromosome 2</a> in humans. <a href="https://en.wikipedia.org/wiki/Cytochrome_c">Cytochrome c</a>. Examples of <a href="http://en.wikipedia.org/wiki/Genetic_code#Effect_of_mutations">mutations that occur in humans</a> when you change just one amino acid. The extensive <a href="https://en.wikipedia.org/wiki/List_of_fossil_sites">list of fossil sites</a> from around the Earth. Boa constrictors <a href="http://www.sandiegozoo.org/animalbytes/t-boa.html">have hip bones</a>. <a href="https://en.wikipedia.org/wiki/Pig#Domestic_pigs">Domestic Pigs</a>. <a href="https://en.wikipedia.org/wiki/Cow#Domestication_and_husbandry">Domesticated Cows</a>. Alligators and frogs <a href="http://usads.ms11.net/tastes.html">taste like fishy chicken</a>. <a href="https://en.wikipedia.org/wiki/Nipple#On_male_mammals">Male nipples</a>. Tibetan <a href="http://www.sciencemeetsreligion.org/blog/2011/08/evolution-right-before-our-eyes/">high-altitude genes and the Milano mutation</a>. The science of <a href="http://en.wikipedia.org/wiki/Memetics">memetics</a>. <a href="https://en.wikipedia.org/wiki/Chalk#Formation">Chalk mountains</a> are made from piles of forminifera shells. The <a href="http://mxplx.com/Meme/1221/">convoluted contortions of flat-fish growth</a>. Cannibals in Papua New Guinea developed <a href="http://www.zinio.com/article/article.jsp?popularityExcerptId=271019">resistance to prion protein disease</a>. Tibetans evolved <a href="http://www.nytimes.com/2010/07/02/science/02tibet.html">genes for higher red blood oxygen carrying capacity</a> after diverging from the Han Chinese 3,000 years ago. <a href="http://www.virology.ws/2009/02/20/hiv-1/">Smallpox and HIV resitance</a>. The <a href="http://genetics.thetech.org/ask/ask10">Black Death and the CCR5-Delta32 mutation</a>. <a href="http://www.pnas.org/content/88/1/310.abstract">Beta-thalassemia</a>. <a href="http://en.wikipedia.org/wiki/Alcohol_flush_reaction#Genetics">Asian alcohol flush syndrome</a>. The <a href="http://en.wikipedia.org/wiki/Palmaris_longus_muscle">Palmaris longus muscle</a>. <a href="http://www.sciencedaily.com/releases/2008/01/080130170343.htm">Blue Eyed people</a>. The <a href="http://en.wikipedia.org/wiki/Vomeronasal_organ#Humans">Vomeronasal organ</a>. The <a href="http://en.wikipedia.org/wiki/Plantaris_muscle">Plantaris muscle</a>. <a href="http://en.wikipedia.org/wiki/Darwin's_tubercle">Darwin&#8217;s tubercle</a>. Scientists <a href="http://www.gatech.edu/newsroom/release.html?nid=138621">regressed a bacteria and got it to retrace it&#8217;s evolution to its current state</a>.</p>
<p>And there&#8217;s more and more being discovered all the time. Without the theory of evolution, this is just a list of trivia. Through evolution, all of these facts fit together into one incredibly beautiful painting of how we came to be here today.</p>
</ol>
<ul style="margin:0;padding:0;list-style-position: inside;">
<h2>Further Reading</h2>
<li>Talk Origins has a much more erudite list <a href="http://www.talkorigins.org/faqs/comdesc/">29+ Evidences for Macroevolution</a>.</li>
<li>Dr. George Johnson&#8217;s Backgrounders has a <a href="http://txtwriter.com/backgrounders/evolution/EVcontents.html">step by step walkthrough</a> of the evidence in plain English.</li>
<li>Wikipedia has an extensive page outlining the <a href="https://en.wikipedia.org/wiki/Evidence_of_common_descent">evidence for common descent</a>.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://ideonexus.com/2012/02/12/101-reasons-why-evolution-is-true/feed/</wfw:commentRss>
		<slash:comments>73</slash:comments>
		</item>
		<item>
		<title>Evolve Culturally or Die</title>
		<link>http://ideonexus.com/2012/01/16/evolve-culturally-or-die/</link>
		<comments>http://ideonexus.com/2012/01/16/evolve-culturally-or-die/#comments</comments>
		<pubDate>Mon, 16 Jan 2012 05:00:21 +0000</pubDate>
		<dc:creator>Ryan Somma</dc:creator>
				<category><![CDATA[Ionian Enchantment]]></category>

		<guid isPermaLink="false">http://ideonexus.com/?p=9250</guid>
		<description><![CDATA[Cavefish and Zebrafish Embryos Credit: wellcome images An important rule of evolution is that species lose adaptations they aren&#8217;t using. Cave fish have eyes that do not work because they live in an environment without light. Crocodile icefish blood has lost its hemogloblin because they live in oxygen-rich water where they don&#8217;t need the protein [...]]]></description>
				<content:encoded><![CDATA[<div align="center">
<a href="http://www.flickr.com/photos/wellcomeimages/5814821326/"><img src="http://ideonexus.com/wp-content/uploads/2012/01/5814821326_7f59ec8e72_b.jpg" border="0" width="550" height="274" alt="Cavefish and Zebrafish Embryos"></a><br />
<b>Cavefish and Zebrafish Embryos</b><br />
Credit: <a href="http://www.flickr.com/photos/wellcomeimages/5814821326/">wellcome images</a>
</div>
<p>An important rule of evolution is that species <em>lose adaptations they aren&#8217;t using</em>. Cave fish have <a href="https://en.wikipedia.org/wiki/Cave_fish#Features">eyes that do not work</a> because they live in an environment without light. Crocodile icefish blood has <a href="https://en.wikipedia.org/wiki/Channichthyidae#Hemoglobin">lost its hemogloblin</a> because they live in oxygen-rich water where they don&#8217;t need the protein to transport oxygen throughout their bodies. Kiwis, chickens, and ostriches <a href="http://en.wikipedia.org/wiki/Flightless_bird">have wings but can&#8217;t fly</a>. Humans <a href="https://en.wikipedia.org/wiki/Vitamin_C#Vitamin_C_in_evolution">lack the gene to make Vitamin C</a>, forcing us to get our ascorbic acid from dietary sources.</p>
<p>This happens because when a trait isn&#8217;t in use, natural selection does not discriminate against mutations that break the trait. For example, when an individual impala is born with a mutation that gives it bad eyes, it gets eaten by a lion, but when a fish in the total darkness of a cave gets bad eyes, they are just as likely to survive as the fish with working vision; in fact, they have a slight advantage for not having to put resources into building and maintaining eyes that provide no advantage.<br />
<span id="more-9250"></span></p>
<div align="center">
<a href="https://commons.wikimedia.org/wiki/File:Icefishuk.jpg"><img src="http://ideonexus.com/wp-content/uploads/2012/01/Icefishuk.jpg" border="0" width="550" height="366" alt="Crocodile icefish larvae (note the clear blood)"></a><br />
<b>Crocodile icefish larvae (note the clear blood)</b><br />
Credit: <a href="https://commons.wikimedia.org/wiki/File:Icefishuk.jpg">Unknown Wikipedia User</a>
</div>
<p>A question that comes up regularly in popular science media is, <em>Are humans evolving?</em> And the answer depends on what we mean by <em>evolving</em>. If we are talking about the popular public use of the term, which is synonymous with a species getting better (taller, smarter, faster, etc), then the answer is: only in those parts of the world where natural selection is still at work. In Africa, for instance, where famine, disease, and, in some cases, lions are at work there is also natural selection in effect. The inhabitants of famine-stricken areas are being selected for resistance to starvation. Sickle-cell Anemia came out of Africa as an <a href="http://en.wikipedia.org/wiki/Sickle-cell_disease#Genetics">adaptative resistance</a> to Malarial infection by mosquitos; people with the sickle-cell gene survived longer than those without it despite the trait also having a deleterious effect on the carrier.</p>
<p>If we are talking about the scientific definition of <em>evolving</em>, meaning gradual genetic change in a species population over time, then that is occurring in all humans, selected or not; but in First World societies, the change that is occurring is not of the improvement kind, but more of the cavefish kind. Eyeglasses and eye surgery allow people like me to survive. Insulin shots allow type-I diabetes patients and obese people to survive. Immunizations eliminate natural selection for natural immune system resistance to bugs. C-sections have eliminated the need to give birth vaginally. Fertility clinics allow people to reproduce who could not in the past. AIDS drugs allow anyone who is infected to survive rather than select for a natural resistance. Wheelchairs, hearing aids, orthopedic shoes, braces, and a wealth of other medical innovations and modern conveniences have drastically reduced any need for athletic prowess or even most physical abilities in order to survive in modern society.</p>
<p>These are <b>wonderful</b> things. Without them, Vicky and I would not be able to have additional children and our son Sagan might likely have died due to our incompatible blood types (I&#8217;m O+, she&#8217;s A-), but thanks to a shot of Rh immune-globulin and our pediatrician coaching us, our newborn son overcame his jaundice in his first week of life. Science makes it possible to support 7 billion people on our planet, and keeps most of them in good health and comfort. I am perpetually grateful to scientific progress.</p>
<div align="center">
<a href="http://www.flickr.com/photos/30705804@N05/4725940989/"><img src="http://ideonexus.com/wp-content/uploads/2012/01/apteryx.jpg" border="0" width="550" height="366" alt="New Zealand Kiwi, Flightless Bird"></a><br />
<b>New Zealand Kiwi, Flightless Bird</b><br />
Credit: <a href="http://www.flickr.com/photos/30705804@N05/4725940989/">The.Rohit</a>
</div>
<p>The complication this creates for us is that every lost survival trait in every human being is a survival trait their children will likely not have. When a couple undergoes fertility treatment, then their children will <a href="http://www.npr.org/templates/story/story.php?storyId=129638953">inherit the need to have fertility treatment</a>. As the medical and engineering sciences discover ever new means for us to survive comfortably despite our flaws, they also perpetuate the inventions that keep so many of us alive.</p>
<p>In other words, as our genes fail us, our memes take over.</p>
<p>H. G. Wells wrote that &#8220;Civilization is in a race between education and catastrophe.&#8221; He was right in deeper dimensions than he realized. Consider what would happen if we were somehow magically stripped of all our technology so that tomorrow morning the human race were to wake up to a world without modern medicine, agricultural science, textiles, plastics, electricity, and all the other scientific conveniences we take for granted each day. How many of our planet&#8217;s 7 billion people would still be alive after a week? We would quickly be reduced to the tribal population levels of just a few brief centuries ago as only the fittest and healthiest survived.</p>
<p>Our <em>ideas</em> are keeping us alive. That means we must work for a society that keeps our ideas alive. Libraries, public schools, laboratories, and institutions of higher learning aren&#8217;t just conveniences, they are crucial to our survival, and the more we depend on them the more we will need to depend on them and <em>that&#8217;s a good thing</em>.</p>
]]></content:encoded>
			<wfw:commentRss>http://ideonexus.com/2012/01/16/evolve-culturally-or-die/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
