Discussion Topic |
|
This thread has been locked |
Messages 1 - 9 of total 9 in this topic |
WoodySt
Trad climber
Riverside
|
|
Topic Author's Original Post - Dec 5, 2006 - 02:35pm PT
|
Someone on this site may be able to answer the following: I've always taken pride in my ability to read Roman Numerals. It also impresses the younger types who have suffered the deficiencies of the modern educational system. However, does anyone know how the Romans computed with that system? Their engineering was superb, and they had to do all basic arithmetic, geometry etc. How did they manage the algorithms?
|
|
UncleDoug
Social climber
N. lake Tahoe
|
|
Thinking of only calculating in Roman vs. ARABIC numerals?
Phish on!
|
|
WoodySt
Trad climber
Riverside
|
|
Topic Author's Reply - Dec 5, 2006 - 02:53pm PT
|
The Romans didn't have place value in their system. Seems to me knowledge of Arabic(Phoenician) numerals and/or the abacus would have required that, and they wouldn't have used their cumbersome system.
|
|
mcKbill
climber
Grundy Center
|
|
What is the roman numeral for zero?
--NOSTYLE EDIT--
Forgive me, but on my break I just had to see if this could be done in the SAS programming language. Not surprisingly, the nice folks at the SAS institute have created a handy Roman numeral format that can be used to SIMULATE calculations.
Note: the data are Arabic numerals, but SAS format 'roman32.' makes them appear to be Roman numerals... another classic solution looking for a problem:
data roman_sasmath;
input x y;
z = x + y;
format x y z roman32.;
put x= @16 y= @32 z=;
cards;
1 7
30 90
222 987
;
run;
...yields this:
x=I y=VII z=VIII
x=XXX y=XC z=CXX
x=CCXXII y=CMLXXXVII z=MCCIX
NOTE: The data set WORK.ROMAN_SASMATH has 3 observations and 3 variables.
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.00 seconds
So, if you want to do math like this just get the SAS. I recommend SAS learning edition, or enrolling in classes at a university that has a nice site license agreement.
|
|
cintune
climber
Penn's Woods
|
|
There wasn't one. It was just implied.
|
|
Mighty Hiker
Social climber
Vancouver, B.C.
|
|
Why were they roamin'? Shouldn't they be rounded up or something? Or would that be too fractious?
|
|
WoodySt
Trad climber
Riverside
|
|
Topic Author's Reply - Dec 5, 2006 - 05:15pm PT
|
I thank you all. The ST Institution for Acquired Arcane Knowledge or STIAAK has come through again. Little does the world know that all wisdom and knowledge resides here.
|
|
Messages 1 - 9 of total 9 in this topic |
|
SuperTopo on the Web
|