In my local paper this morning, I read about how a North Carolina state commission plans to recommend changes to our teaching standards for mathematics. One of the topics that they want to bring back: Roman numerals. Why? According to my exhaustive 30 seconds of Internet research, the only practical applications of Roman numerals are: I) understanding Super Bowl numbering, and II) reading the time on old-fashion clocks.
But I don't need convincing. I believe that there are other advantages of teaching Roman numerals. The main lesson is this: the world has not always revolved around "base 10" numbering, and actually it still doesn't today. Having the ability to express numbers in other forms helps us to understand history, passage of time, technology, and even philosophy*.
In the popular media, binary (base 2) is famous for being "the language of computers". That may be so, but binary is not usually the language of computer programmers. When I was a kid, I spent many hours programming graphics on my TI 99/4A computer. I became proficient in translating decimal to hexadecimal (base 16) to binary -- all to express how the pixels would be drawn on the screen and in what color. Due to lack of practice and today's availability of handy tools and higher-level programming languages, I have since lost the ability to calculate all of these in my head. I also lost the ability to solve any Rubik's Cube that I pick up -- there go all of my party tricks.
But the SAS programming language retains many fun math tricks, including the ability to express numbers in many different ways, instantly. Here's an example of one number expressed six (or 6 or VI or 0110) different ways.
data _null_; x = 1956; put / 'Decimal: ' x=best12.; put / 'Roman: ' x=roman10.; put / 'Word: ' x=words50.; put / 'Binary: ' x=binary20.; put / 'Octal: ' x=octal10.; put / 'Hexadecimal: ' x=hex6.; run; |
The output:
Decimal: x=1956 Roman: x=MCMLVI Word: x=one thousand nine hundred fifty-six Binary: x=00000000011110100100 Octal: x=0000003644 Hexadecimal: x=0007A4
You might never need some of these number systems or SAS formats in your job, but knowing them makes you a more interesting person. If nothing else, it's a skill that you can trot out during cocktail parties. (I guess I attend different sorts of parties now.)
* For example, the number 'zero' has not always been with us. Introducing it into our numbering system allows us to think about 'nothing' in ways that earlier societies could not.
12 Comments
You also need to understand Roman numerals to be able to sing along to a Roman numerals stanza of "18 Wheels on a Big Rig" sung Trout Fishing in America. Great, fun song for kids.
https://www.youtube.com/watch?v=nvDgxPvX1tM
One of my faves. And they're rolling rolling rolling! Originally by Heywood Banks: https://youtu.be/_aVRWRQJZoE
I 'bumped into' my 6th grade math teacher on Facebook. When we reconnected, I commented on how one of her lessons is one of my favorite middle-school memories. We all had to come up with a numeric system and use it to display a calendar month. Mine was based on the Roman system, but used symbols instead of letters. A number of classmates chimed in with their own recollections; one did a base-31 system, so every day was unique. The teacher was surprised at how vividly we all remembered this one lesson -- 40 years later!
Jenni, your story reminded me of puzzles in the computer game Myst. The game introduced a numbering system for a fictional culture that was central to the game, and as a player you had to figure out the system from a series of context-related cues. That is, there was no key available -- you had to divine your own. Challenging, but rewarding when you figured it out!
You also need to know Roman Numerals for dating old films and books!
Yes! When I watch film credits all the way through, I can put my skills to the test. No cheating with IMDB!
Without this vital education the future generations will never get the joke about the Roman soldier holding up 2 fingers to order five beers ✌
Sounds like we enjoy the same kind of parties Chris ;-)
Our 5 year old son had a school project to show a representation of a number between 1 and 20. As the project outline didn't stipulate an integer, I was encouraging him to do pi... In the end he chose 19 and I had fun teaching him the roman numeral representation and seeing him present it. Next, to get him coding in SAS and to run your code to the class using SAS Studio!
XIX - I like a number that's also a palindrome.
One of my favorite palindromes is the palindromic binary for 2015. Was very excited to count in the new year!
2015=2^0 + 2^1 + 2^2 + 2^3 + 2^4 + 2^6 + 2^7 + 2^8 + 2^9 + 2^10 or a beautiful palindromic binary 11111011111
Ah, in other words:
%put %sysfunc(year(%sysfunc(today())),binary11.);
Of course... Love your work!