Egyptian Numerals

Total Page:16

File Type:pdf, Size:1020Kb

Egyptian Numerals • 30000BC Palaeolithic peoples in central Europe and France record numbers on bones. • 5000BC A decimal number system is in use in Egypt. • 4000BC Babylonian and Egyptian calendars in use. • 3400BC The first symbols for numbers, simple straight lines, are used in Egypt. • 3000BC The abacus is developed in the Middle East and in areas around the Mediterranean. A somewhat different type of abacus is used in China. • 3000BC Hieroglyphic numerals in use in Egypt. • 3000BC Babylonians begin to use a sexagesimal number system for recording financial transactions. It is a place-value system without a zero place value. • 2000BC Harappans adopt a uniform decimal system of weights and measures. • 1950BC Babylonians solve quadratic equations . • 1900BC The Moscow papyrus is written. It gives details of Egyptian geometry. • 1850BC Babylonians know Pythagoras 's Theorem. • 1800BC Babylonians use multiplication tables. • 1750BC The Babylonians solve linear and quadratic algebraic equations, compile tables of square and cube roots. They use Pythagoras 's theorem and use mathematics to extend knowledge of astronomy. • 1700BC The Rhind papyrus (sometimes called the Ahmes papyrus) is written. It shows that Egyptian mathematics has developed many techniques to solve problems. Multiplication is based on repeated doubling, and division uses successive halving. • 1360BC A decimal number system with no zero starts to be used in China. • 1000BC Chinese use counting boards for calculation. • 540BC Counting rods used in China. • 500BC The Babylonian sexagesimal number system is used to record and predict the positions of the Sun, Moon and planets. Egyptian Numerals Egyptian number system is additive. Mesopotamia Civilization Above: Babylonian sexagesimal (base 60) number. It is the first positional number system. Left: Oldest cuneiform writing by Sumerian. Babylonian numerals Chinese numerals 4359 Indian numerals Greek number systems Roman Numerals I 1 VI 6 L 50 II 2 VII 7 C 100 III 3 VIII 8 D 500 IV 4 IX 9 M 1000 V 5 X 10 MMMDCCCLXXVIII 3878 Mayan mathematics 250 AD to 900 AD, this period was built on top of a civilization which had lived in the region from about 2000 BC. [8;14;3;1;12] represents 12 + 1 x 20 + 3 x 18 x 20 + 14 x 18 x 20 2 + 8 x 18 x 20 3 = 1253912. The numerals from al-Sizji's treatise of 969 Abaci Chinese Abacus Boethius (Hindu-Arabic) vs Pythagoras (counting board) Logarithm and Slide Rule John Napier of Scotland developed the concept of logarithm around AD 1600. Slide rule based on the property of logarithm was invented in the late 1700s. y If a =x, then y = log ax log ( u v) = log ( u) + log( v) Decimal Numbers: Base 10 Digits: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 Example: 3271 = (3x10 3) + (2x10 2) + (7x10 1) + (1x10 0) Numbers: positional notation • Number Base B ⇒ B symbols per digit: – Base 10 (Decimal): 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 Base 2 (Binary): 0, 1 • Number representation: – d31 d30 ... d 1d0 is a 32 digit number × 31 × 30 × 1 × 0 – value = d31 ×× B + d30 ×× B + ... + d1 ×× B + d0 ×× B • Binary: 0,1 (In binary digits called “bits”) – 0b11010 = 1×××24 + 1×××23 + 0×××22 + 1×××21 + 0×××20 = 16 + 8 + 2 = 26 – Here 5 digit binary # turns into a 2 digit decimal # – Can we find a base that converts to binary easily? #s often written 0b… Hexadecimal Numbers: Base 16 • Hexadecimal: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F – Normal digits + 6 more from the alphabet – In C, written as 0x … (e.g., 0xFAB5) • Conversion: Binary ⇔Hex – 1 hex digit represents 16 decimal values – 4 binary digits represent 16 decimal values ⇒1 hex digit replaces 4 binary digits • One hex digit is a “ nibble ”. Two is a “ byte ” • Example: – 1010 1100 0011 (binary) = 0x_____ ? Decimal vs. Hexadecimal vs. Binary Examples: 00 0 0000 01 1 0001 1010 1100 0011 (binary) 02 2 0010 = 0xAC3 03 3 0011 04 4 0100 10111 (binary) 05 5 0101 = 0001 0111 (binary) 06 6 0110 = 0x17 07 7 0111 08 8 1000 0x3F9 09 9 1001 = 11 1111 1001 (binary) 10 A 1010 How do we convert between hex and 11 B 1011 Decimal? 12 C 1100 13 D 1101 14 E 1110 15 F 1111 What to do with representations of numbers? • Just what we do with numbers! – Add them – Subtract them – Multiply them 1 1 – Divide them 1 0 1 0 – Compare them • Example: 10 + 7 = 17 + 0 1 1 1 – …so simple to add in binary that we can build circuits to do it! – subtraction just as you would in decimal ------------------------- – Comparison: How do you tell if X > Y ? 1 0 0 0 1 Which base do we use? • Decimal: great for humans, especially when doing arithmetic • Hex: if human looking at long strings of binary numbers, its much easier to convert to hex and look 4 bits/symbol – Terrible for arithmetic on paper • Binary: what computers use; you will learn how computers do +, -, *, / – To a computer, numbers always binary – Regardless of how number is written: 32 ten == 32 10 == 0x20 == 100000 2 == 0b100000 – Use subscripts “ten”, “hex”, “two” in book, slides when might be confusing BIG IDEA: Bits can represent anything!! • Characters? – 26 letters ⇒ 5 bits (2 5 = 32) – upper/lower case + punctuation ⇒ 7 bits (in 8) (“ASCII”) – standard code to cover all the world’s languages ⇒ 8,16,32 bits (“Unicode”) www.unicode.com • Logical values? – 0 ⇒ False, 1 ⇒ True • colors ? Ex: • locations / addresses? commands? • MEMORIZE: N bits ⇔ at most 2 N things Red (00) Green (01) Blue (11) How to Represent Negative Numbers? • So far, un signed numbers • Obvious solution: define leftmost bit to be sign! – 0 ⇒ +, 1 ⇒ - – Rest of bits can be numerical value of number • Representation called sign and magnitude • MIPS uses 32-bit integers. +1 ten would be: 0000 0000 0000 0000 0000 0000 0000 0001 • And –1ten in sign and magnitude would be: 1000 0000 0000 0000 0000 0000 0000 0001 Shortcomings of sign and magnitude? • Arithmetic circuit complicated – Special steps depending whether signs are the same or not • Also, two zeros – 0x00000000 = +0 ten – 0x80000000 = -0ten – What would two 0s mean for programming? • Therefore sign and magnitude abandoned Another try: complement the bits • Example: 710 = 00111 2 -710 = 11000 2 • Called One’s Complement • Note: positive numbers have leading 0s, negative numbers have leadings 1s. 00000 00001... 01111 10000 ... 11110 11111 • What is -00000 ? Answer: 11111 • How many positive numbers in N bits? • How many negative ones? Shortcomings of One’s complement? • Arithmetic still a somewhat complicated. • Still two zeros – 0x00000000 = +0 ten – 0xFFFFFFFF = -0ten • Although used for awhile on some computer products, one’s complement was eventually abandoned because another solution was better. Standard Negative Number Representation • What is result for unsigned numbers if tried to subtract large number from a small one? – Would try to borrow from string of leading 0s, so result would have a string of leading 1s » 3 - 4 ⇒ 00…0011 - 00…0100 = 11…1111 – With no obvious better alternative, pick representation that made the hardware simple – As with sign and magnitude, leading 0s ⇒ positive, leading 1s ⇒ negative » 000000...xxx is ≥ 0, 111111...xxx is < 0 » except 1…1111 is -1, not -0 (as in sign & mag.) • This representation is Two’s Complement Sign and Magnitude -7 +0 -6 1111 0000 +1 Example: N = 4 1110 0001 -5 +2 + 1101 0010 -4 1100 0011 +3 0 100 = + 4 -3 1011 0100 +4 1 100 = - 4 1010 0101 -2 +5 - 1001 0110 -1 1000 0111 +6 -0 +7 High order bit is sign: 0 = positive (or zero), 1 = negative Remaining low order bits is the magnitude: 0 (000) thru 7 (111) Number range for n bits = +/- 2n-1 - 1 Representations for 0? Operations: =, <, >, +, - ??? Ones Complement (algebraically) N is positive number, then N is its negative 1's complement 4 N = (2 n - 1) - N 2 = 10000 -1 = 00001 Example: 1's complement of 7 1111 -7 = 0111 1000 -7 in 1's comp . Bit manipulation: simply complement each of the bits 0111 -> 1000 Ones Complement on the number wheel -0 +0 -1 1111 0000 +1 1110 0001 -2 +2 + 1101 0010 -3 1100 0011 +3 0 100 = + 4 -4 1011 0100 +4 1 011 = - 4 1010 0101 -5 +5 - 1001 0110 -6 1000 0111 +6 -7 +7 Subtraction implemented by addition & 1's complement Sign is easy to determine Closure under negation. If A can be represented, so can -A Still two representations of 0! If A = B then is A – B == 0 ? Addition is almost clockwise advance, like unsigned Twos Complement number wheel -1 +0 -2 1111 0000 +1 1110 0001 -3 +2 + like 1's comp 1101 0010 except shifted -4 1100 0011 +3 0 100 = + 4 one position clockwise -5 1011 0100 +4 1 100 = - 4 1010 0101 -6 +5 - 1001 0110 -7 1000 0111 +6 -8 +7 Easy to determine sign (0?) Only one representation for 0 Addition and subtraction just as in unsigned case Simple comparison: A < B iff A – B < 0 One more negative number than positive number - one number has no additive inverse Twos Complement (algebraically) N* = 2 n -N 4 2 = 10000 Example: Twos complement of 7 sub 7 = 0111 1001 = repr. of -7 4 Example: Twos complement of -7 2 = 10000 sub -7 = 1001 0111 = repr. of 7 Bit manipulation: Twos complement: take bitwise complement and add one 0111 -> 1000 + 1 -> 1001 (representation of -7) 1001 -> 0110 + 1 -> 0111 (representation of 7) How is addition performed in each number system? • Operands may be positive or negative Sign Magnitude Addition Operand have same sign: unsigned addition of magnitudes 4 0100 -4 1100 result sign bit is the same as the operands' + 3 0011 + (-3) 1011 sign 7 0111 -7 1111 Operands have different signs: subtract smaller from larger and keep sign of the larger 4 0100 -4 1100 - 3 1011 + 3 0011 1 0001 -1 1001 Ones complement addition Perform unsigned addition, then add in the end-around carry
Recommended publications
  • Numbers - the Essence
    Numbers - the essence A computer consists in essence of a sequence of electrical on/off switches. Big question: How do switches become a computer? ITEC 1000 Introduction to Information Technologies 1 Friday, September 25, 2009 • A single switch is called a bit • A sequence of 8 bits is called a byte • Two or more bytes are often grouped to form word • Modern laptop/desktop standardly will have memory of 1 gigabyte = 1,000,000,000 bytes ITEC 1000 Introduction to Information Technologies 2 Friday, September 25, 2009 Question: How do encode information with switches ? Answer: With numbers - binary numbers using only 0’s and 1’s where for each switch on position = 1 off position = 0 ITEC 1000 Introduction to Information Technologies 3 Friday, September 25, 2009 • For a byte consisting of 8 bits there are a total of 28 = 256 ways to place 0’s and 1’s. Example 0 1 0 1 1 0 1 1 • For each grouping of 4 bits there are 24 = 16 ways to place 0’s and 1’s. • For a byte the first and second groupings of four bits can be represented by two hexadecimal digits • this will be made clear in following slides. ITEC 1000 Introduction to Information Technologies 4 Friday, September 25, 2009 Bits & Bytes imply creation of data and computer analysis of data • storing data (reading) • processing data - arithmetic operations, evaluations & comparisons • output of results ITEC 1000 Introduction to Information Technologies 5 Friday, September 25, 2009 Numeral systems A numeral system is any method of symbolically representing the counting numbers 1, 2, 3, 4, 5, .
    [Show full text]
  • On the Origin of the Indian Brahma Alphabet
    - ON THE <)|{I<; IN <>F TIIK INDIAN BRAHMA ALPHABET GEORG BtfHLKi; SECOND REVISED EDITION OF INDIAN STUDIES, NO III. TOGETHER WITH TWO APPENDICES ON THE OKU; IN OF THE KHAROSTHI ALPHABET AND OF THK SO-CALLED LETTER-NUMERALS OF THE BRAHMI. WITH TIIKKK PLATES. STRASSBUKi-. K A K 1. I. 1 1M I: \ I I; 1898. I'lintccl liy Adolf Ilcil/.haiisi'ii, Vicniiii. Preface to the Second Edition. .As the few separate copies of the Indian Studies No. Ill, struck off in 1895, were sold very soon and rather numerous requests for additional ones were addressed both to me and to the bookseller of the Imperial Academy, Messrs. Carl Gerold's Sohn, I asked the Academy for permission to issue a second edition, which Mr. Karl J. Trlibner had consented to publish. My petition was readily granted. In addition Messrs, von Holder, the publishers of the Wiener Zeitschrift fur die Kunde des Morgenlandes, kindly allowed me to reprint my article on the origin of the Kharosthi, which had appeared in vol. IX of that Journal and is now given in Appendix I. To these two sections I have added, in Appendix II, a brief review of the arguments for Dr. Burnell's hypothesis, which derives the so-called letter- numerals or numerical symbols of the Brahma alphabet from the ancient Egyptian numeral signs, together with a third com- parative table, in order to include in this volume all those points, which require fuller discussion, and in order to make it a serviceable companion to the palaeography of the Grund- riss.
    [Show full text]
  • The What and Why of Whole Number Arithmetic: Foundational Ideas from History, Language and Societal Changes
    Portland State University PDXScholar Mathematics and Statistics Faculty Fariborz Maseeh Department of Mathematics Publications and Presentations and Statistics 3-2018 The What and Why of Whole Number Arithmetic: Foundational Ideas from History, Language and Societal Changes Xu Hu Sun University of Macau Christine Chambris Université de Cergy-Pontoise Judy Sayers Stockholm University Man Keung Siu University of Hong Kong Jason Cooper Weizmann Institute of Science SeeFollow next this page and for additional additional works authors at: https:/ /pdxscholar.library.pdx.edu/mth_fac Part of the Science and Mathematics Education Commons Let us know how access to this document benefits ou.y Citation Details Sun X.H. et al. (2018) The What and Why of Whole Number Arithmetic: Foundational Ideas from History, Language and Societal Changes. In: Bartolini Bussi M., Sun X. (eds) Building the Foundation: Whole Numbers in the Primary Grades. New ICMI Study Series. Springer, Cham This Book Chapter is brought to you for free and open access. It has been accepted for inclusion in Mathematics and Statistics Faculty Publications and Presentations by an authorized administrator of PDXScholar. Please contact us if we can make this document more accessible: [email protected]. Authors Xu Hu Sun, Christine Chambris, Judy Sayers, Man Keung Siu, Jason Cooper, Jean-Luc Dorier, Sarah Inés González de Lora Sued, Eva Thanheiser, Nadia Azrou, Lynn McGarvey, Catherine Houdement, and Lisser Rye Ejersbo This book chapter is available at PDXScholar: https://pdxscholar.library.pdx.edu/mth_fac/253 Chapter 5 The What and Why of Whole Number Arithmetic: Foundational Ideas from History, Language and Societal Changes Xu Hua Sun , Christine Chambris Judy Sayers, Man Keung Siu, Jason Cooper , Jean-Luc Dorier , Sarah Inés González de Lora Sued , Eva Thanheiser , Nadia Azrou , Lynn McGarvey , Catherine Houdement , and Lisser Rye Ejersbo 5.1 Introduction Mathematics learning and teaching are deeply embedded in history, language and culture (e.g.
    [Show full text]
  • Writing the History of Mathematics: Interpretations of the Mathematics of the Past and Its Relation to the Mathematics of Today
    Writing the History of Mathematics: Interpretations of the Mathematics of the Past and Its Relation to the Mathematics of Today Johanna Pejlare and Kajsa Bråting Contents Introduction.................................................................. 2 Traces of Mathematics of the First Humans........................................ 3 History of Ancient Mathematics: The First Written Sources........................... 6 History of Mathematics or Heritage of Mathematics?................................. 9 Further Views of the Past and Its Relation to the Present.............................. 15 Can History Be Recapitulated or Does Culture Matter?............................... 19 Concluding Remarks........................................................... 24 Cross-References.............................................................. 24 References................................................................... 24 Abstract In the present chapter, interpretations of the mathematics of the past are problematized, based on examples such as archeological artifacts, as well as written sources from the ancient Egyptian, Babylonian, and Greek civilizations. The distinction between history and heritage is considered in relation to Euler’s function concept, Cauchy’s sum theorem, and the Unguru debate. Also, the distinction between the historical past and the practical past,aswellasthe distinction between the historical and the nonhistorical relations to the past, are made concrete based on Torricelli’s result on an infinitely long solid from
    [Show full text]
  • Solving a System of Linear Equations Using Ancient Chinese Methods
    Solving a System of Linear Equations Using Ancient Chinese Methods Mary Flagg University of St. Thomas Houston, TX JMM January 2018 Mary Flagg (University of St. Thomas Houston,Solving TX) a System of Linear Equations Using Ancient ChineseJMM Methods January 2018 1 / 22 Outline 1 Gaussian Elimination 2 Chinese Methods 3 The Project 4 TRIUMPHS Mary Flagg (University of St. Thomas Houston,Solving TX) a System of Linear Equations Using Ancient ChineseJMM Methods January 2018 2 / 22 Gaussian Elimination Question History Question Who invented Gaussian Elimination? When was Gaussian Elimination developed? Carl Friedrick Gauss lived from 1777-1855. Arthur Cayley was one of the first to create matrix algebra in 1858. Mary Flagg (University of St. Thomas Houston,Solving TX) a System of Linear Equations Using Ancient ChineseJMM Methods January 2018 3 / 22 Gaussian Elimination Ancient Chinese Origins Juizhang Suanshu The Nine Chapters on the Mathematical Art is an anonymous text compiled during the Qin and Han dynasties 221 BCE - 220 AD. It consists of 246 problems and their solutions arranged in 9 chapters by topic. Fangcheng Chapter 8 of the Nine Chapters is translated as Rectangular Arrays. It concerns the solution of systems of linear equations. Liu Hui The Chinese mathematician Liu Hui published an annotated version of The Nine Chapters in 263 AD. His comments contain a detailed explanation of the Fangcheng Rule Mary Flagg (University of St. Thomas Houston,Solving TX) a System of Linear Equations Using Ancient ChineseJMM Methods January 2018 4 / 22 Chinese Methods Counting Rods The ancient Chinese used counting rods to represent numbers and perform arithmetic.
    [Show full text]
  • Lecture 2: Arithmetic
    E-320: Teaching Math with a Historical Perspective Oliver Knill, 2010-2017 Lecture 2: Arithmetic The oldest mathematical discipline is arithmetic. It is the theory of the construction and manip- ulation of numbers. The earliest steps were done by Babylonian, Egyptian, Chinese, Indian and Greek thinkers. Building up the number system starts with the natural numbers 1; 2; 3; 4::: which can be added and multiplied. Addition is natural: join 3 sticks to 5 sticks to get 8 sticks. Multiplication ∗ is more subtle: 3 ∗ 4 means to take 3 copies of 4 and get 4 + 4 + 4 = 12 while 4 ∗ 3 means to take 4 copies of 3 to get 3 + 3 + 3 + 3 = 12. The first factor counts the number of operations while the second factor counts the objects. To motivate 3 ∗ 4 = 4 ∗ 3, spacial insight motivates to arrange the 12 objects in a rectangle. This commutativity axiom will be carried over to larger number systems. Realizing an addition and multiplicative structure on the natural numbers requires to define 0 and 1. It leads naturally to more general numbers. There are two major motivations to to build new numbers: we want to 1. invert operations and still get results. 2. solve equations. To find an additive inverse of 3 means solving x + 3 = 0. The answer is a negative number. To solve x ∗ 3 = 1, we get to a rational number x = 1=3. To solve x2 = 2 one need to escape to real numbers. To solve x2 = −2 requires complex numbers. Numbers Operation to complete Examples of equations to solve Natural numbers addition and multiplication 5 + x = 9 Positive fractions addition and
    [Show full text]
  • Arabic Numeral
    CHAPTER 4 Number Representation and Calculation Copyright © 2015, 2011, 2007 Pearson Education, Inc. Section 4.4, Slide 1 4.4 Looking Back at Early Numeration Systems Copyright © 2015, 2011, 2007 Pearson Education, Inc. Section 4.4, Slide 2 Objectives 1. Understand and use the Egyptian system. 2. Understand and use the Roman system. 3. Understand and use the traditional Chinese system. 4. Understand and use the Ionic Greek system. Copyright © 2015, 2011, 2007 Pearson Education, Inc. Section 4.4, Slide 3 The Egyptian Numeration System The Egyptians used the oldest numeration system called hieroglyphic notation. Copyright © 2015, 2011, 2007 Pearson Education, Inc. Section 4.4, Slide 4 Example: Using the Egyptian Numeration System Write the following numeral as a Hindu-Arabic numeral: Solution: Using the table, find the value of each of the Egyptian numerals. Then add them. 1,000,000 + 10,000 + 10,000 + 10 + 10 + 10 + 1 + 1 + 1 + 1 = 1,020,034 Copyright © 2015, 2011, 2007 Pearson Education, Inc. Section 4.4, Slide 5 Example: Using the Egyptian Numeration System Write 1752 as an Egyptian numeral. Solution: First break down the Hindu-Arabic numeral into quantities that match the Egyptian numerals: 1752 = 1000 + 700 + 50 + 2 = 1000 + 100 + 100 + 100 + 100 + 100 + 100 + 100 + 10 + 10 + 10 + 10 + 10 + 1 + 1 Now use the table to find the Egyptian symbol that matches each quantity. Thus, 1752 can be expressed as Copyright © 2015, 2011, 2007 Pearson Education, Inc. Section 4.4, Slide 6 The Roman Numeration System Roman I V X L C D M Numeral Hindu- 1 5 10 50 100 500 1000 Arabic Numeral The Roman numerals were used until the eighteenth century and are still commonly used today for outlining, on clocks, and in numbering some pages in books.
    [Show full text]
  • About Numbers How These Basic Tools Appeared and Evolved in Diverse Cultures by Allen Klinger, Ph.D., New York Iota ’57
    About Numbers How these Basic Tools Appeared and Evolved in Diverse Cultures By Allen Klinger, Ph.D., New York Iota ’57 ANY BIRDS AND Representation of quantity by the AUTHOR’S NOTE insects possess a The original version of this article principle of one-to-one correspondence 1 “number sense.” “If is on the web at http://web.cs.ucla. was undoubtedly accompanied, and per- … a bird’s nest con- edu/~klinger/number.pdf haps preceded, by creation of number- mtains four eggs, one may be safely taken; words. These can be divided into two It was written when I was a fresh- but if two are removed, the bird becomes man. The humanities course had an main categories: those that arose before aware of the fact and generally deserts.”2 assignment to write a paper on an- the concept of number unrelated to The fact that many forms of life “sense” thropology. The instructor approved concrete objects, and those that arose number or symmetry may connect to the topic “number in early man.” after it. historic evolution of quantity in differ- At a reunion in 1997, I met a An extreme instance of the devel- classmate from 1954, who remem- ent human societies. We begin with the bered my paper from the same year. opment of number-words before the distinction between cardinal (counting) As a pack rat, somehow I found the abstract concept of number is that of the numbers and ordinal ones (that show original. Tsimshian language of a tribe in British position as in 1st or 2nd).
    [Show full text]
  • Numerical Notation: a Comparative History
    This page intentionally left blank Numerical Notation Th is book is a cross-cultural reference volume of all attested numerical notation systems (graphic, nonphonetic systems for representing numbers), encompassing more than 100 such systems used over the past 5,500 years. Using a typology that defi es progressive, unilinear evolutionary models of change, Stephen Chrisomalis identifi es fi ve basic types of numerical notation systems, using a cultural phylo- genetic framework to show relationships between systems and to create a general theory of change in numerical systems. Numerical notation systems are prima- rily representational systems, not computational technologies. Cognitive factors that help explain how numerical systems change relate to general principles, such as conciseness and avoidance of ambiguity, which also apply to writing systems. Th e transformation and replacement of numerical notation systems relate to spe- cifi c social, economic, and technological changes, such as the development of the printing press and the expansion of the global world-system. Stephen Chrisomalis is an assistant professor of anthropology at Wayne State Uni- versity in Detroit, Michigan. He completed his Ph.D. at McGill University in Montreal, Quebec, where he studied under the late Bruce Trigger. Chrisomalis’s work has appeared in journals including Antiquity, Cambridge Archaeological Jour- nal, and Cross-Cultural Research. He is the editor of the Stop: Toutes Directions project and the author of the academic weblog Glossographia. Numerical Notation A Comparative History Stephen Chrisomalis Wayne State University CAMBRIDGE UNIVERSITY PRESS Cambridge, New York, Melbourne, Madrid, Cape Town, Singapore, São Paulo, Delhi, Dubai, Tokyo Cambridge University Press The Edinburgh Building, Cambridge CB2 8RU, UK Published in the United States of America by Cambridge University Press, New York www.cambridge.org Information on this title: www.cambridge.org/9780521878180 © Stephen Chrisomalis 2010 This publication is in copyright.
    [Show full text]
  • Arxiv:2008.01900V1 [Math.NA] 5 Aug 2020
    The Eight Epochs of Math as regards past and future Matrix Computations Frank Uhlig Department of Mathematics and Statistics, Auburn University, AL 36849-5310 ([email protected]) Abstract : This talk gives a personal assessment of Epoch making advances in Matrix Computations from antiquity and with an eye towards tomorrow. We trace the development of number systems and elementary algebra, and the uses of Gaussian Elimination meth- ods from around 2000 BC on to current real-time Neural Network computations to solve time-varying linear equations. We include relevant advances from China from the 3rd century AD on, and from India and Persia in the 9th century and discuss the conceptual genesis of vectors and matrices in central Europe and Japan in the 14th through 17th centuries AD. Followed by the 150 year cul-de-sac of polynomial root finder research for matrix eigenvalues, as well as the su- perbly useful matrix iterative methods and Francis’ eigenvalue Algorithm from last century. Then we explain the recent use of initial value problem solvers to master time-varying linear and nonlinear matrix equations via Neural Networks. We end with a short outlook upon new hardware schemes with multilevel processors that go beyond the 0-1 base 2 framework which all of our past and current electronic computers have been using. Introduction In this paper we try to outline the Epoch making achievements and transformations that have occurred over time for computations and more specifically for matrix computations. We will trace how our linear algebraic concepts and matrix computations have progressed from the beginning of recorded time until today and how they will likely progress into the future.
    [Show full text]
  • On Mathematical Symbols in China* by Fang Li and Yong Zhang†
    On Mathematical Symbols in China* by Fang Li and Yong Zhang† Abstract. When studying the history of mathemati- cal symbols, one finds that the development of mathematical symbols in China is a significant piece of Chinese history; however, between the beginning of mathematics and modern day mathematics in China, there exists a long blank period. Let us focus on the development of Chinese mathematical symbols, and find out the significance of their origin, evolution, rise and fall within Chinese mathematics. The Origin of the Mathematical Symbols Figure 1. The symbols for numerals are the earliest math- ematical symbols. Ancient civilizations in Babylonia, derived from the word “white” (ⱑ) which symbolizes Egypt and Rome, which each had distinct writing sys- the human’s head in hieroglyphics. Similarly, the Chi- tems, independently developed mathematical sym- nese word “ten thousand” (ϛ) in Oracle Bone Script bols. Naturally, China did not fall behind. In the 16th was derived from the symbol for scorpion, possibly century BC, symbols for numerals, called Shang Or- because it is a creature found throughout rocks “in acle Numerals because they were used in the Oracle the thousands”. In Oracle Script, the multiples of ten, Bone Script, appeared in China as a set of thirteen hundred, thousand and ten thousand can be denoted numbers, seen below. (The original can be found in in two ways: one is called co-digital or co-text, which reference [2].) combines two single figures; another one is called Oracle Bone Script is a branch of hieroglyphics. analysis-word or a sub-word, which uses two sepa- In Figure 1, it is obvious that 1 to 4 are the hiero- rate symbols to represent a single meaning (see [5]).
    [Show full text]
  • Numbering Systems Developed by the Ancient Mesopotamians
    Emergent Culture 2011 August http://emergent-culture.com/2011/08/ Home About Contact RSS-Email Alerts Current Events Emergent Featured Global Crisis Know Your Culture Legend of 2012 Synchronicity August, 2011 Legend of 2012 Wednesday, August 31, 2011 11:43 - 4 Comments Cosmic Time Meets Earth Time: The Numbers of Supreme Wholeness and Reconciliation Revealed In the process of writing about the precessional cycle I fell down a rabbit hole of sorts and in the process of finding my way around I made what I think are 4 significant discoveries about cycles of time and the numbers that underlie and unify cosmic and earthly time . Discovery number 1: A painting by Salvador Dali. It turns that clocks are not as bad as we think them to be. The units of time that segment the day into hours, minutes and seconds are in fact reconciled by the units of time that compose the Meso American Calendrical system or MAC for short. It was a surprise to me because one of the world’s foremost authorities in calendrical science the late Dr.Jose Arguelles had vilified the numbers of Western timekeeping as a most grievious error . So much so that he attributed much of the worlds problems to the use of the 12 month calendar and the 24 hour, 60 minute, 60 second day, also known by its handy acronym 12-60 time. I never bought into his argument that the use of those time factors was at fault for our largely miserable human-planetary condition. But I was content to dismiss mechanized time as nothing more than a convenient tool to facilitate the activities of complex societies.
    [Show full text]