Saturday, February 26, 2011

Life in Nine Dimensions

I took a SAS programming class last week. SAS was invented in 1966 for the purpose of analyzing the data collected by the U.S. Department of Agriculture. The language developed proved to be so well suited for statistical processing that it's now used at 50,000 sites worldwide.

During the class, we covered the topic of arrays. Arrays, for those of you who are neither geeks nor mathematicians, are used for processing blocks of related data. For example, if you have sales figures by date and you want to calculate net profit for each quarter, you could write a program that says something like:

Quarter1_Net_Profit = Quarter1_Gross_Sales - Quarter1_Costs
Quarter2_Net_Profit = Quarter2_Gross_Sales - Quarter2_Costs
Quarter3_Net_Profit = Quarter3_Gross-Sales - Quarter3_Costs
Quarter4_Net_Profit = Quarter4_Gross_Sales - Quarter4_Costs

or you could put the data into an array and process it by performing this calculation 4 times, incrementing the value of the subscript (q) with each iteration:

Quarter_Net_Profit(q) = Quarter_Gross_Sales(q)- Quarter_Costs(q)

If you wanted to tally your profits by month within each quarter, you could set up a two-dimensional array:

Quarter_Net_Profit(q,m) = Quarter_Gross_Sales(q,m)- Quarter_Costs(q,m)

The way I've always pictured arrays in my head is like this:


A one-dimensional array is a list of things, like a single column in an Excel spreadsheet.









A two-dimensional array is rows and columns, like the periodic table.





A three-dimensional array is more like library stacks, with rows, columns and depth.





I suppose you could argue that the fourth dimension, which is time, would be that same set of stacks today versus tomorrow versus the day after.


Once you get to a fifth dimension, you're up, up and away from a stoned soul picnic, which, of course, is something else again.



And beyond that, you're into string theory.



Anyway, the class reminded me that I once worked with a woman who wrote a program that contained a nine-dimensional array.

She was building a report on student demographics: how many were freshmen vs. sophomores, male vs. female, black/white/Hispanic/Native American/ Asian/etc. and some other stuff I no longer recall. In total, the info fell into 9 categories.

So she set up an array that looked like this:

Demographics_Count(a,b,c,d,e,f,g,h,i)

where "a" was either a 1 (freshman) or 2 (sophomore),
and "b" was either a 1 (male) or 2 (female),
and "c" was 1-6, for whatever race,
and you get the picture.

And while it makes perfect sense to me that if you set all the subscripts to the appropriate values and increment the Demographics_Count by 1, you'll wind up with exactly what you need, my brain cramps when I try to picture it.

Apparently it did the same thing to her, because soon after she left programming to become a meter-reader for the local electric company. There, she had all kinds of interesting adventures like:
a) Getting locked in the basement by four guys playing poker (scary, but they did let her out when she yelled)
b) Happening on a naked woman tied to a bed (yeah, it takes all kinds)
c) Having her calf ripped open by a German Shepherd

The last time I ran into her, she was working as a waitress in a steakhouse.

I'd love to know where she is and what she's doing today, because this was a woman who lived life in many dimensions.

How about you? How many dimensions are there to your life?

9 comments:

  1. You don't even want to know how many dimensions I need for my research - it's often in double figures. And that's just my academic life!

    ReplyDelete
  2. Awesome! I love it when you talk all that statistics stuff!

    I just finished reading, "Last Words" by George Carlin. He clearly believed all religion to be based on myth, and that he was simply the center of his own universe. Since he is dead, so then must be his universe.

    I also believe I am the center of my own universe; which is owned by a particular supreme being. I believe he/she will take it back eventually, and render me transformed into a timeless multi dimensional entity of pure energy, manifested, hopefully, into some form of love. At any rate,that sounds better to me than just being dead.

    ReplyDelete
  3. I'm so entertained and rendered utterly clueless by this blog and it's commentors.

    ReplyDelete
  4. I'm been feeling a bit one dimensional lately...I'm working on it.

    ReplyDelete
  5. I can't lie. My brain exploded after the first sentence.

    ReplyDelete
  6. Now that dear girl is a scary, scary question. I fear if ya peeled me back I'd be kinda like an onion!

    You done went and planted that song in my head and all I can do right now is sing..."Would ya like to fly..in my beautiful balloon..." Seriously I have no self~control when it comes to a great tune!

    God bless and enjoy your day sweetie!!!

    Giveaway...my place! :o)

    ReplyDelete
  7. Maybe I am ready to listen now. In high school or even afterward, if I heard any math related anything, I would go get another drink, well in my case another Pepsi.

    Now I am sitting in my new writing group discussing quantam physics and now this will follow me around, or at least when I go to the library :)

    ReplyDelete
  8. I had to really, really focus to understand this post and now my brain hurts. I know I have at least four arrays in my life, and they all scream at me on at least four dimensions. Is that eight? Or sixteen?

    ReplyDelete

Note: Only a member of this blog may post a comment.

LinkWithin

Related Posts with Thumbnails