Tool to convert babylonian numbers (Babylonian Numerals). The Mesopotamian numeral system uses a mix of base 60 (sexagesimal) and base 10 (decimal) by writing wedges (vertical or corner wedge).
Babylonian Numerals - dCode
Tag(s) : Numeral System, History, Symbol Substitution
dCode is free and its tools are a valuable help in games, maths, geocaching, puzzles and problems to solve every day!
A suggestion ? a feedback ? a bug ? an idea ? Write to dCode!
Babylonian numeration is a numbering system used by the ancient Babylonians/Sumerians in Mesopotamia to represent numbers. In mesopotamian/babylonian/sumerian number system, our current number system, called hindu-arabic (0,1,2,3,4,5,6,7,8,9) did not exist. Numbers are written in a cuneiform style with | (pipe or nail) and < (corner wedge or bracket), written in base 60.
The number is written in base 60, the 60 digits are broken down into vertical bars π (often noted |) which are worth one unit (1) and chevrons π (often noted <) which are worth ten (10) in base 10.
The power change of sixty ($ 60^1 = 60 $, $ 60^2 = 3600 $, $ 60^3 = 216000 $ etc.) is represented by a space.
dCode uses the recent system (from the 3rd century civilization in Babylon) which introduce the writing or 0 (before the concept of zero did not exist, it was replace by an ambiguous empty space).
Since Unicode 5 (2006) cuneiform symbols can be represented on compatible browsers, here is the table of characters used by dCode:
π | 1 | π | 2 | π | 3 | π | 4 | π | 5 | π | 6 | π | 7 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
π | 8 | π | 9 | π | 10 | π | 20 | π | 30 | π | 40 | π | 50 |
Converting is easy by counting symbols and considering it in base 60 to get numbers into classical Hindu-Arabic notation.
Example: <<||| is 2 < and 3 | so $ 2 \times 10 + 3 \times 1 = 23 $
Example: | | (note the space) is 1 | and then 1 | so $ 1 \times 60 + 1 = 61 $
To convert a number $ n $ from base $ 10 $ to base $ b=60 $ apply the algorithm:
// pseudo-code
q[0] = n
i = 0
while (q[i] > 0) {
r[i] = q[i] mod 60
q[i+1] = q[i] div 60
i = i+1
}
return q
Example: $$ q_0 = 100 \\ r_0 = 100 \mbox{ mod } 60 = 40 \;\;\; q_1 = 100 \mbox{ div } 60 = 1 \\ r_1 = 1 \mbox{ mod } 60 = 1 \;\;\; q_2 = 0 \\ \Rightarrow \{1,0,0\}_{(10)} = \{1, 40\}_{(60)} $$
60 has the advantage of having many divisors: 2, 3, 4, 5, 6, 10, 12, 15, 20, 30, and 60.
Today the time system of hours still uses the base sixty: 60 seconds = 1 minute, 60 minutes = 1 hour = 3600 seconds
Convert the Babylonian numbers to Hindu-Arabic numerals (1,2,3,4,5,6,7,8,9,0), then use the Roman numeral converter of dCode.
Clay tablets played a crucial role in understanding Babylonian numbers, as they were the medium on which the ancient Babylonians wrote their numerations. These tablets have survived through the centuries, providing a valuable source of information about the numerical and mathematical systems of the time.
dCode retains ownership of the "Babylonian Numerals" source code. Except explicit open source licence (indicated Creative Commons / free), the "Babylonian Numerals" algorithm, the applet or snippet (converter, solver, encryption / decryption, encoding / decoding, ciphering / deciphering, breaker, translator), or the "Babylonian Numerals" functions (calculate, convert, solve, decrypt / encrypt, decipher / cipher, decode / encode, translate) written in any informatic language (Python, Java, PHP, C#, Javascript, Matlab, etc.) and all data download, script, or API access for "Babylonian Numerals" are not public, same for offline use on PC, mobile, tablet, iPhone or Android app!
Reminder : dCode is free to use.
The copy-paste of the page "Babylonian Numerals" or any of its results, is allowed (even for commercial purposes) as long as you credit dCode!
Exporting results as a .csv or .txt file is free by clicking on the export icon
Cite as source (bibliography):
Babylonian Numerals on dCode.fr [online website], retrieved on 2024-11-15,