<?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/"
	
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Indianapolis Museum of Art Blog &#187; mathematics</title>
	<atom:link href="http://www.imamuseum.org/blog/tag/mathematics/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.imamuseum.org/blog</link>
	<description>The IMA blog is a space to discuss everything related to the Indianapolis Museum of Art.</description>
	<lastBuildDate>Thu, 09 Feb 2012 18:51:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>There&#8217;s more to color than meets the eye</title>
		<link>http://www.imamuseum.org/blog/2009/03/03/theres-more-to-color-than-meets-the-eye/</link>
		<comments>http://www.imamuseum.org/blog/2009/03/03/theres-more-to-color-than-meets-the-eye/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 17:47:38 +0000</pubDate>
		<dc:creator>Ed</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Art]]></category>
		<category><![CDATA[art blog]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[demographics]]></category>
		<category><![CDATA[Ed Bachta]]></category>
		<category><![CDATA[ima]]></category>
		<category><![CDATA[IMA Dashboard]]></category>
		<category><![CDATA[Indianapolis Museum of Art]]></category>
		<category><![CDATA[Maps]]></category>
		<category><![CDATA[mathematics]]></category>
		<category><![CDATA[Museum Blog]]></category>
		<category><![CDATA[science]]></category>
		<category><![CDATA[Statistics]]></category>
		<category><![CDATA[visualization]]></category>
		<category><![CDATA[zip codes]]></category>

		<guid isPermaLink="false">http://www.imamuseum.org/blog/?p=3538</guid>
		<description><![CDATA[It has come to my attention that the tweets are out of the bag about the new interactive admissions map on the IMA dashboard. The map is a mashup of our admissions data using the Google Maps API and a zip code demographics resource called ZIPskinny. I thought that I would take some time today [...]]]></description>
			<content:encoded><![CDATA[<p>It has come to my attention that the tweets are out of the bag about the new <a href="http://dashboard.imamuseum.org/series/Admissions+Map" target="_blank">interactive admissions map</a> on the IMA dashboard. The map is a <a href="http://en.wikipedia.org/wiki/Mashup_(web_application_hybrid)" target="_blank">mashup</a> of our admissions data using the <a href="http://code.google.com/apis/maps/" target="_blank">Google Maps API</a> and a zip code demographics resource called <a href="http://zipskinny.com/" target="_blank">ZIPskinny</a>. I thought that I would take some time today to discuss the art and science of colormap selection that went into developing this visualization.</p>
<p style="text-align: center;"><a href="http://dashboard.imamuseum.org/series/Admissions+Map"><img class="size-medium wp-image-3540 aligncenter" title="Admissions Map" src="http://www.imamuseum.org/blog/wp-content/uploads/2009/03/admissions_map-299x300.png" alt="Admissions Map" width="299" height="300" /></a></p>
<p><span id="more-3538"></span></p>
<p>First, a quick overview of some technical bits. The user can select a range of dates from the map interface, and a new set of markers is rendered after an AJAX query to the backend PHP code, which requests the data from our database and aggregates it at the zip code and state level. The decision to do this two level aggregation was based on the performance hit that would be taken in trying to render on the order of 7000 icons for a year&#8217;s worth of data on a nationwide map. The <a href="http://code.google.com/apis/maps/documentation/reference.html#GMarkerManager" target="_blank">MarkerManager</a> class (which used to be part of the core Google Maps API) is used to display one set of icons when zoomed inside of what might be called &#8220;state level&#8221; and another set when zoomed out further. This adds a bit of extra complexity to our colormap choice.</p>
<p>There are a number of ways that this data could have been mapped into visual symbols. The size or shape of the glyphs could be related to the number of admissions, for example. The method that we are using maps the number of admissions to color (when this mapping is stored, it is called a colormap). The particular mapping that we use is important, because some mappings are better than others for certain tasks. For the markers on the map, we use a colormap that smoothly transitions from a blue at the low end to a red at the high end. The particular choice of blue to red leverages our cultural understanding of blue as &#8220;cold&#8221; and red as &#8220;hot&#8221; (note that sometimes colormap choice depends on cultural interpretation), a metaphor which works well as a representation of low vs. high admission rates. The combination of these two choices allows us to understand the general trends in the data without needing to refer back to the legend frequently. The drawback is that it is a bit more difficult to compare the value of two individual markers than it would be if we had picked a colormap of more distinct hues such as {red, orange, yellow, green, blue, purple}. We tried to make it easier for the viewer to make comparisons by limiting the number of colors in our legend.</p>
<p>The next important choice is how exactly to map the number of admissions to a particular color. To do this well, an understanding of the distribution of the data is necessary. Intuitively, we would expect that there will be high admissions numbers for the zip codes closest to the museum, and the trend will be toward increasingly lower admissions from more distant zip codes, and likely there will be many zip codes with very low, but non-zero admissions numbers. The best way to look at this objectively is with a <a href="http://en.wikipedia.org/wiki/Histogram" target="_blank">histogram</a>. I will take a number of approaches with the data from the year 2008, for which the highest raw admission count for a zip code was 12,375 (during the aggregation, 9 digit zip codes are merged into 5 digit zip codes, resulting in slightly higher numbers in some instances), out of 6806 zip codes.</p>
<p style="text-align: center;"><img class="aligncenter size-medium wp-image-3545" title="Linear" src="http://www.imamuseum.org/blog/wp-content/uploads/2009/03/histogram_linear-300x204.png" alt="Linear histogram" width="300" height="204" /></p>
<p>This first histogram segments the zip codes into buckets in a linear fashion, with each bucket representing 10% of 12,375. As you can see, the vast majority of the zip codes end up in the first bucket. If we used 10 colors with this linear mapping, almost all of the glyphs would be blue. It would be great for identifying and comparing the few zip codes that have very high admission, but a lot of subtlety in the big picture would be lost.</p>
<p style="text-align: center;"><img class="aligncenter size-medium wp-image-3547" title="Linear with upper limit" src="http://www.imamuseum.org/blog/wp-content/uploads/2009/03/histogram_linear_clamp-300x204.png" alt="Linear with upper limit" width="300" height="204" /></p>
<p>This histogram also uses a linear segmentation, but with an upper limit (or clamp). Any zip code with 10 admissions or more are put into the red bucket. This would be fine for comparing admissions from distant zip codes, but we wouldn&#8217;t be able to distinguish visually between admissions from zip codes around Indianapolis.</p>
<p style="text-align: center;"><img class="aligncenter size-medium wp-image-3548" title="Logarithmic" src="http://www.imamuseum.org/blog/wp-content/uploads/2009/03/histogram_log-300x204.png" alt="Logarithmic" width="300" height="204" /></p>
<p>This is where the beauty of <a href="http://en.wikipedia.org/wiki/Logarithm" target="_blank">logarithms</a> comes to the rescue. Let&#8217;s use our example to walk through the process. First we determine the logarithm of our maximum number, 12375, in base 2 (working in base 2 is very efficient for computers). The result is 13.59. The highest bucket represents 12375 in the real world, and 13.59 in exponent-land. Each bucket represents a tenth of 13.57 in exponent-land, just as in our first histogram each bucket represented a tenth of 12375. We then simply derive the numbers that each bucket represents in the real world; 2 to the 1.359th power equals 3 (when represented as a whole number), for example. These whole numbers in the real world are then used to put the zip codes in the proper bins.</p>
<p>The result is that we have teased out more meaning to bestow upon our colors. There are still thousands of zip codes in those blue buckets, but they are the ones that are scattered across the nation on our map, so here we are aided by spatial distribution. In the red zone, there are dozens of zip codes in each bucket, and this is just what we want to be able to analyze the subtleties around Indianapolis where the icons are more spatially dense. It also turns out that this trend is pretty much independent of the date range, and the colormap still works out well at the state level.</p>
<p>On the actual map we use eight icons rather than ten to reduce clutter in the legend, but the algorithm is the same.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-3543" title="ZIPskinny demographics" src="http://www.imamuseum.org/blog/wp-content/uploads/2009/03/zipskinny.png" alt="ZIPskinny demographics" width="276" height="311" /></p>
<p>You might notice that we use a different type of colormap in the demographic windows. We actually tried using a smooth colormap for this data for the more linear demographics (Income, Age, etc.). The problem was that it was then very difficult to visually relate a particular shade of blue or green to a particular age or income level, which would almost certainly lead to eye strain and headaches. So here we used a more rainbow-like colormap to make that analysis easier.</p>
<p>In summary, colormap selection is a complex process involving aspects of mathematics, design, and the nature of the dataset. It&#8217;s one of those areas where art and science come together and the best practices of each can lead to successful communication of concepts and beautiful representations of data.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.imamuseum.org/blog/2009/03/03/theres-more-to-color-than-meets-the-eye/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:thumbnail url="http://www.imamuseum.org/blog/wp-content/uploads/2009/03/admissions_map-150x150.png" />
		<media:content url="http://www.imamuseum.org/blog/wp-content/uploads/2009/03/admissions_map.png" medium="image">
			<media:title type="html">Admissions Map</media:title>
			<media:thumbnail url="http://www.imamuseum.org/blog/wp-content/uploads/2009/03/admissions_map-150x150.png" />
		</media:content>
		<media:content url="http://www.imamuseum.org/blog/wp-content/uploads/2009/03/histogram_linear.png" medium="image">
			<media:title type="html">Linear histogram</media:title>
			<media:thumbnail url="http://www.imamuseum.org/blog/wp-content/uploads/2009/03/histogram_linear-150x150.png" />
		</media:content>
		<media:content url="http://www.imamuseum.org/blog/wp-content/uploads/2009/03/histogram_linear_clamp.png" medium="image">
			<media:title type="html">Linear with upper limit</media:title>
			<media:thumbnail url="http://www.imamuseum.org/blog/wp-content/uploads/2009/03/histogram_linear_clamp-150x150.png" />
		</media:content>
		<media:content url="http://www.imamuseum.org/blog/wp-content/uploads/2009/03/histogram_log.png" medium="image">
			<media:title type="html">Logarithmic</media:title>
			<media:thumbnail url="http://www.imamuseum.org/blog/wp-content/uploads/2009/03/histogram_log-150x150.png" />
		</media:content>
		<media:content url="http://www.imamuseum.org/blog/wp-content/uploads/2009/03/zipskinny.png" medium="image">
			<media:title type="html">ZIPskinny demographics</media:title>
			<media:thumbnail url="http://www.imamuseum.org/blog/wp-content/uploads/2009/03/zipskinny-150x150.png" />
		</media:content>
<enclosure url="http://www.imamuseum.org/blog/wp-content/uploads/2009/03/admissions_map-150x150.png" length="44372" type="image/jpg" />	</item>
		<item>
		<title>How do you think? Confessions of a Nonverbal Thinker</title>
		<link>http://www.imamuseum.org/blog/2008/09/18/how-do-you-think-confessions-of-a-nonverbal-thinker/</link>
		<comments>http://www.imamuseum.org/blog/2008/09/18/how-do-you-think-confessions-of-a-nonverbal-thinker/#comments</comments>
		<pubDate>Thu, 18 Sep 2008 12:23:47 +0000</pubDate>
		<dc:creator>Linda Duke</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[geometry]]></category>
		<category><![CDATA[ima]]></category>
		<category><![CDATA[Indianapolis Museum of Art]]></category>
		<category><![CDATA[Linda Duke]]></category>
		<category><![CDATA[mathematics]]></category>
		<category><![CDATA[nonverbal thinking]]></category>
		<category><![CDATA[Numbers]]></category>
		<category><![CDATA[thinking]]></category>

		<guid isPermaLink="false">http://www.imamuseum.org/blog/?p=958</guid>
		<description><![CDATA[The IMA Blog team welcomes new author, Linda Duke, Director of Education. When I was very young, I had a special sense about written numbers. It’s hard for me to access that now, through all the years of education devoted to making sure I understood numbers in a standard way. But I still have a [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><em>The IMA Blog team welcomes new author, Linda Duke, Director of Education.</em></p>
<p style="text-align: left;">When I was very young, I had a special sense about written numbers. It’s hard for me to access that now, through all the years of education devoted to making sure I understood numbers in a standard way. But I still have a feeling about that early relationship, and sometimes I wonder how it might have developed if I hadn’t learned to be ashamed of it and to ignore it.</p>
<p style="text-align: center;"><a href="http://www.imamuseum.org/explore/artwork/8755?" target="_blank"><img class="size-full wp-image-959 aligncenter" title="Seven by Robert Indiana" src="http://www.imamuseum.org/blog/wp-content/uploads/2008/09/seven.jpg" alt="" width="268" height="291" /></a></p>
<p style="text-align: left;">Here’s what I can recall: I knew the shapes of the numerals as indicators of the distinct characters of each. Though my sense for some of them has slipped out of reach, in the way dreams do, I can still feel the stronger personalities. The numeral five was intimidating in appearance, but in actuality quite sweet. Seven was both stern and judgmental. Eight had complexity and depth – and eight led to a painful collision with my first grade teacher, Miss Logan. She taught us to write eight with one continuous figure-eight line. Soon after, she exhorted us never to write it as one circle on top of the other – an idea that had, frankly, not occurred to me.</p>
<p style="text-align: left;"><span id="more-958"></span>Once I heard about this forbidden way of making the image, I badly wanted to try it, to find out why it was seductive and wrong.  I hunched over my practice sheet to try what sounded to me like an ingenious alternative. The hurtful rap of a ruler on the back of my head shocked and scared me. I could hardly believe she caught me in the act so quickly and easily. Miss Logan’s efficient suppression of dissent gave me, early-on, the impression that privacy and experimentation had no place in the classroom.</p>
<p>Back to the personalities of numbers: you might think it’s just as well that this idiosyncratic notion of numerals having distinct natures signified by their visual forms was scared out of me. Even in first grade it was beginning to raise some dauntingly complex dimensions of arithmetic. What kind of psychodrama might be the sum of 8+7? If 5 were subtracted from 9, what interpersonal consequences would that equal? Left unmolested, I wonder if I might have been able to craft an alternative way of working with numbers that allowed me to derive answers that approximated my classmates’. I’ll never know. As it is, I developed a serious case of math phobia and went on to do poorly in math classes throughout my schooling – with only the slight exception of geometry, to which I was timidly attracted. It is only in middle age that I’ve come to terms with the fact that I am actually fascinated by mathematics as logic, and by the more philosophical implications of mathematics, rather than the computing tasks. I’ve also noticed that the concept of numbers having “natures’ isn’t entirely far-fetched when one considers mathematics as a system for describing relationships and processes.</p>
<p>My early sense about numbers may be one indication of something it’s taken me years to notice about myself: I believe I am a primarily a non-verbal thinker. Until I reached this hypothesis, I thought everyone thought approximately the same way.</p>
<p>Several years ago, I began asking my colleagues in the art museum education department how they thought – not what they thought, but how. Were they conscious of thinking in words, for example? I started this line of questioning because I realized that I was completely unable to describe or explain my experience of thinking. Of course I could mentally use words. If I needed to craft a statement of some kind and make decisions about the most effective wording, I could certainly rehearse the possibilities in my mind and make a choice. However, that would be a particular situation, very different from my ordinary, day-to-day thought/language processes. Truth be told, I had to admit that in my on-going mental life, words don’t play a part. In ordinary conversation, I do not plan or even know what words will come out of my mouth. I would even go so far as to say that the times I have jotted notes for a talk or to teach a class have led to my most lack-luster presentations. The notes always flummox me.  It’s taken me a while to trust myself, but I now feel that I am better off speaking “spontaneously.”</p>
<p>But back to the question about thinking that I posed to my co-workers: Most people seemed taken aback by the question and several mentioned that they had never considered how they thought. Upon reflection, quite a few said that they were conscious of words and sentences going through their minds. Several said they “heard” their thoughts as an on-going voice inside their heads. One person described being vaguely aware of punctuation in his thoughts! Another described dreams in which she read the narrative and conversations in a way that reminded her of the bubbles over the heads of comic book characters.</p>
<p>It was difficult to cover my own surprise at these revelations. Even now, as I type this anecdote into my laptop, I wish I could form the ideas on this screen with my hands. I wish that you could take them in with a probing – or a playful &#8211; gaze, rather than following various linear sentences to various open or dead ends. I don’t think with words.</p>
<p>How do you think? Can you describe your experience of thinking? Please let me know. I think others will be interested as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.imamuseum.org/blog/2008/09/18/how-do-you-think-confessions-of-a-nonverbal-thinker/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
	
		<media:thumbnail url="http://www.imamuseum.org/blog/wp-content/uploads/2008/09/seven-150x150.jpg" />
		<media:content url="http://www.imamuseum.org/blog/wp-content/uploads/2008/09/seven.jpg" medium="image">
			<media:title type="html">7 by Robert Indiana</media:title>
			<media:thumbnail url="http://www.imamuseum.org/blog/wp-content/uploads/2008/09/seven-150x150.jpg" />
		</media:content>
<enclosure url="http://www.imamuseum.org/blog/wp-content/uploads/2008/09/seven-150x150.jpg" length="5927" type="image/jpg" />	</item>
	</channel>
</rss>

