Notes - Chapter 2

Total Page:16

File Type:pdf, Size:1020Kb

Notes - Chapter 2 DEPARTMENT OF ELECTRICAL AND COMPUTER ENGINEERING, THE UNIVERSITY OF NEW MEXICO ECE-238L: Computer Logic Design Fall 2013 Notes - Chapter 2 BINARY NUMBER CONVERSIONS DECIMAL NUMBER SYSTEM DIGIT . A decimal digit can take values from 0 to 9: 0 1 2 3 4 5 6 7 8 9 . Digit-by-digit representation of a positive integer number (powers of 10): Number: 9372 hundreds tens thousands units 9 3 7 2 9 thousands, 3 hundreds, 7 tens, and 2 units 103 102 101 100 9372 = 9×103 + 3×102 + 7×101 + 2×100 Positional Number Representation . Let’s consider the numbers from 0 to 999. We represent these numbers with 3 digits (each digit being a number between 0 and 9). We show a 3-digit number using the positional number representation: MATHEMATICAL REPRESENTATION EXAMPLE 3-digit d2 d1 d0 2 0 9 Third Digit Second Digit First Digit Third Digit Second Digit First Digit . The positional number representation allows us to express the decimal value using powers of ten: 2 1 0 퐷 = 푑2 × 10 + 푑1 × 10 + 푑0 × 10 . Example: 3-digit representation Decimal Powers of 10: 2 1 0 Number d2d1d0 d2 10 + d1 10 + d0 10 2 1 0 0 000 0 10 + 0 10 + 0 10 9 009 0 102 + 0 101 + 9 100 11 011 0 102 + 1 101 + 1 100 25 025 0 102 + 2 101 + 5 100 90 090 0 102 + 9 101 + 0 100 1 102 + 2 101 + 8 100 128 128 2 1 0 255 255 2 10 + 5 10 + 5 10 Exercise: Write down the 3-digit and the powers of ten representations for the following numbers: 2 1 0 Decimal Number 3-digit representation 푑2 × 10 + 푑1 × 10 + 푑0 × 10 5 254 100 99 Instructor: Daniel Llamocca DEPARTMENT OF ELECTRICAL AND COMPUTER ENGINEERING, THE UNIVERSITY OF NEW MEXICO ECE-238L: Computer Logic Design Fall 2013 General Case: . Positional number representation for an integer positive number with ‘n’ digits: dn-1dn-2 ... d1d0 n-1 n-2 1 0 Decimal Value: dn-1 10 + dn-2 10 + ... + d1 10 + d0 10 . Example: 1098324 (7 digits). 1098324 1106 0 105 9 104 8 103 3102 2 101 4 100 203476 (6 digits). 203476 2 105 0 104 3103 4 102 7 101 6 100 Maximum value: . The table presents the maximum attainable value for a given number of digits. What pattern do you find? Can you complete it for the highlighted cases (4 and 6)? Number of digits Maximum value Range 1 9 = 101-1 0 9 0 101-1 2 99 = 102-1 0 99 0 102-1 3 999 = 103-1 0 999 0 103-1 4 5 99999 = 105-1 0 99999 0 105-1 6 … n 999…999 = 10n-1 0 999…999 0 10n-1 . Maximum value for a number with ‘n’ digits: Based on the table, the maximum decimal value for a number with ‘n’ digits is given by: n-1 n-2 1 0 n D = 999...999 = 9 10 + 9 10 + ... + 9 10 + 9 10 = 10 -1 n digits With ‘n’ digits, we can represent positive integer numbers from 0 to 10n-1. With 7 digits, what is the range (starting from 0) of positive numbers that we can represent? How many different numbers can we represent? BINARY NUMBER SYSTEM . We are used to the decimal number system. However, DIGIT BIT there exist other number systems: octal, hexadecimal, vigesimal, binary, etc. In particular, binary numbers are 0 1 2 3 4 5 6 7 8 9 0 1 very practical as they are used by digital computers. For binary numbers, the counterpart of digit (that can take values from 0 to 9) is the bit (binary digit) that can take the value of 0 or 1. Bit: Unit of information that a computer uses to process and retrieve data. It can also be used as a logical variable (see Chapter 1). Binary representation: We use the positional number representation. Note that here, we are using a string of bits to represent a binary number. Converting a binary number into a decimal number: The following figure depicts two cases: 2-bit numbers and 3-bit numbers. Note that the positional representation with powers of two let us obtain the decimal value (integer positive) of the binary number. Instructor: Daniel Llamocca DEPARTMENT OF ELECTRICAL AND COMPUTER ENGINEERING, THE UNIVERSITY OF NEW MEXICO ECE-238L: Computer Logic Design Fall 2013 Binary number Powers of 2: Decimal 1 0 b1b0 b1 2 + b0 2 Number MATHEMATICAL REPRESENTATION 2-bit 1 0 b b 00 0 2 + 0 2 0 1 0 1 0 01 0 2 + 1 2 1 10 1 21 + 0 20 2 Second Bit First Bit 11 1 21 + 1 20 3 Binary number Powers of 2: Decimal 2 1 0 b2b1b0 b2 2 + b1 2 + b0 2 Number 2 1 0 MATHEMATICAL REPRESENTATION 000 0 2 + 0 2 + 0 2 0 2 1 0 3-bit 001 0 2 + 0 2 + 1 2 1 b b b 010 0 22 + 1 21 + 0 20 2 2 1 0 011 0 22 + 1 21 + 1 20 3 100 1 22 + 0 21 + 0 20 4 2 1 0 Third Bit Second Bit First Bit 101 1 2 + 0 2 + 1 2 5 110 1 22 + 1 21 + 0 20 6 111 1 22 + 1 21 + 1 20 7 General case: . Positional number representation for a binary number with ‘n’ bits: b b ... b b n-1 n-2 1 0 Most significant Least significant (leftmost) bit (rightmost) bit This formula converts a binary number into a decimal number: Decimal Value (integer positive): n-1 n-2 1 0 D = bn-1 2 + bn-2 2 + ... + b1 2 + b0 2 . To avoid confusion, we usually write a binary number and attach a suffix ‘2’: (푏푛−1푏푛−2 … 푏1푏0)2 5 4 3 2 1 0 . Example: 6 푏푖푡푠: (101011)2 ≡ 퐷 = 1 × 2 + 0 × 2 + 1 × 2 + 0 × 2 + 1 × 2 + 1 × 2 = 43 3 2 1 0 4 푏푖푡푠: (1011)2 ≡ 퐷 = 1 × 2 + 0 × 2 + 1 × 2 + 1 × 2 = 11 . Maximum value for a given number of bits. Complete the tables for the highlighted cases (4 and 6): Number of bits Maximum value Range 1 1 1 12 2 -1 0 12 0 2 -1 2 2 2 112 2 -1 0 112 0 2 -1 3 3 3 1112 2 -1 0 1112 0 2 -1 4 5 5 5 111112 2 -1 0 111112 0 2 -1 6 … n n n 111…1112 2 -1 0 111…1112 0 2 -1 . Maximum value for ‘n’ bits: The maximum decimal value with ‘n’ bits is given by: n-1 n-2 1 0 n D = 111...111 = 1 2 + 1 2 + ... + 1 2 + 1 2 = 2 -1 n bits With ‘n’ bits, we can represent positive integer numbers from 0 to 2n-1. (2n numbers) Instructor: Daniel Llamocca DEPARTMENT OF ELECTRICAL AND COMPUTER ENGINEERING, THE UNIVERSITY OF NEW MEXICO ECE-238L: Computer Logic Design Fall 2013 . The case n=8 bits is of particular interest, as a string of 8 bits is called a byte. Here, the range for 8-bit numbers is 0 to 28-1 0 to 255. b b b b b b b b 7 6 5 4 3 2 1 0 Most significant Least significant (leftmost) bit (rightmost) bit . The table shows some examples: Decimal 8-bit format b 27 + b 26 + b 25 + b 24 + b 23 + b 22 + b 21 + b 20 Number b7b6b5b4b3b2d1d0 7 6 5 4 3 2 1 0 7 6 5 4 3 2 1 0 0 00000000 0 2 + 0 2 + 0 2 + 0 2 + 0 2 + 0 2 + 0 2 + 0 2 9 00001001 0 27 + 0 26 + 0 25 + 0 24 + 1 23 + 0 22 + 0 21 + 1 20 11 00001011 0 27 + 0 26 + 0 25 + 0 24 + 1 23 + 0 22 + 1 21 + 1 20 25 00011001 0 27 + 0 26 + 0 25 + 1 24 + 1 23 + 0 22 + 0 21 + 1 20 90 01011010 0 27 + 1 26 + 0 25 + 1 24 + 1 23 + 0 22 + 1 21 + 0 20 128 10000000 1 27 + 0 26 + 0 25 + 0 24 + 0 23 + 0 22 + 0 21 + 0 20 255 11111111 1 27 + 1 26 + 1 25 + 1 24 + 1 23 + 1 22 + 1 21 + 1 20 Exercise: Convert the following binary numbers (positive integers) to their decimal values: 8-bit Decimal 7 6 5 4 3 2 1 0 representation 푏7 × 2 + 푏6 × 2 + 푏5 × 2 + 푏4 × 2 + 푏3 × 2 + 푏2 × 2 + 푏1 × 2 + 푏0 × 2 Number 00000001 00001001 10000101 10000111 11110011 . In general to convert a number of base 'r' (r = 2, 3,4 ,…) to decimal, we use the following formula: Number in base 'r': (푟푛−1푟푛−2 … 푟1푟0)푟 푛−1 푛−2 1 0 Conversion to decimal: 퐷 = 푟푛−1 × 푟 + 푟푛−2 × 푟 + ⋯ + 푟1 × 푟 + 푟0 × 푟 Also, the maximum decimal value for a number in base 'r' with 'n' digits is: 푛−1 푛−2 1 0 푛 퐷 = 푟푟푟 … 푟푟푟 = 푟 × 푟 + 푟푛−2 × 푟 + ⋯ + 푟 × 푟 + 푟 × 푟 = 푟 − 1 Example: Base-8: Number of digits Maximum value Range 1 1 1 78 8 -1 0 78 0 8 -1 2 2 2 778 8 -1 0 778 0 8 -1 3 3 3 7778 8 -1 0 7778 0 8 -1 … n n n 777…7778 8 -1 0 777…7778 0 8 -1 Examples: . (50632)8: Number in base 8 (octal system) Number of digits: n = 5 Conversion to decimal: 퐷 = 5 × 84 + 0 × 83 + 6 × 82 + 3 × 81 + 2 × 80 = 20890 .
Recommended publications
  • Vigesimal Numerals on Ifẹ̀ (Togo) and Ifẹ̀ (Nigeria) Dialects of Yorùbá
    Vigesimal Numerals on Ifẹ̀ (Togo) and Ifẹ̀ (Nigeria) Dialects of Yorùbá Felix Abídèmí Fábùnmi (Ilé-Ifẹ̀) Abstract This study intends to bring Ifẹ̀ (Togo) into a linguistic limelight using the numeral systems. Numerals are a very important aspect of the day to day socio-economic and linguistic life of Ifẹ̀ (Togo) people. The traditional Ifẹ̀ (Togo) number system is vigesimal. In this study, forty- two different number words are listed for Yorùbá Ifẹ̀ (Nigeria) and Yorùbá Ifẹ̀ (Togo) and compared with Standard Yorùbá. We compared the Ifẹ̀ (Togo) number words and counting patterns with that of the Standard Yorùbá and Ifẹ̀ (Nigeria) and discovered that, by the nature of the components of these numbers, majority of the basic number words are either bisyllabic or trisyllabic, each syllable having the form VCV for the cardinals, and CVCV for the ordinals. There are irregularities in tonality; there are also alternations in the sequences of the vowel (oral and nasalized) and consonant sounds. This work finds out that Ifẹ̀ (Togo) has two counting patterns. In the first pattern, it uses addition solely to derive the number words but with a counting pattern where 'ten', 'twenty' and the added number units are taken as a whole. In the second counting pattern, subtraction is used to derive number words but this is applicable only to three numbers i. e. seventeen – /mɛ́ɛtadínóɡú/, eighteen – /méèʤìdínóɡu/ and nineteen – /mɔ̀kɔ̃dínoɡ́ u/. The Ifẹ̀ (Togo) dialect of Yorùbá mostly uses additive number positions. The dialect favours additive number positions more than the subtractive and the multiplicative positions. In other words, higher numbers are frequently used as bases for addition not as bases for multiplication in Ifẹ̀ (Togo).
    [Show full text]
  • Chapter 6 MISCELLANEOUS NUMBER BASES. the QUINARY
    The Number Concept: Its Origin and Development By Levi Leonard Conant Ph. D. Chapter 6 MISCELLANEOUS NUMBER BASES. THE QUINARY SYSTEM. The origin of the quinary mode of counting has been discussed with some fulness in a preceding chapter, and upon that question but little more need be said. It is the first of the natural systems. When the savage has finished his count of the fingers of a single hand, he has reached this natural number base. At this point he ceases to use simple numbers, and begins the process of compounding. By some one of the numerous methods illustrated in earlier chapters, he passes from 5 to 10, using here the fingers of his second hand. He now has two fives; and, just as we say “twenty,” i.e. two tens, he says “two hands,” “the second hand finished,” “all the fingers,” “the fingers of both hands,” “all the fingers come to an end,” or, much more rarely, “one man.” That is, he is, in one of the many ways at his command, saying “two fives.” At 15 he has “three hands” or “one foot”; and at 20 he pauses with “four hands,” “hands and feet,” “both feet,” “all the fingers of hands and feet,” “hands and feet finished,” or, more probably, “one man.” All these modes of expression are strictly natural, and all have been found in the number scales which were, and in many cases still are, in daily use among the uncivilized races of mankind. In its structure the quinary is the simplest, the most primitive, of the natural systems.
    [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]
  • Curiosities Regarding the Babylonian Number System
    Curiosities Regarding the Babylonian Number System Sherwin Doroudi April 12, 2007 By 2000 bce the Babylonians were already making significant progress in the areas of mathematics and astronomy and had produced many elaborate mathematical tables on clay tablets. Their sexagecimal (base-60) number system was originally inherited from the Sumerian number system dating back to 3500 bce. 1 However, what made the Babylonian number system superior to its predecessors, such as the Egyptian number system, was the fact that it was a positional system not unlike the decimal system we use today. This innovation allowed for the representation of numbers of virtually any size by reusing the same set of symbols, while also making it easier to carry out arithmetic operations on larger numbers. Its superiority was even clear to later Greek astronomers, who would use the sexagecimal number system as opposed to their own native Attic system (the direct predecessor to Roman numerals) when making calculations with large numbers. 2 Most other number systems throughout history have made use of a much smaller base, such as five (quinary systems), ten (decimal systems), or in the case of the Mayans, twenty (vigesimal systems), and such choices for these bases are all clearly related to the fingers on the hands. The choice (though strictly speaking, it's highly unlikely that any number system was directly \chosen") of sixty is not immediately apparent, and at first, it may even seem that sixty is a somewhat large and unwieldy number. Another curious fact regarding the ancient number system of the Babylonians is that early records do not show examples of a \zero" or null place holder, which is an integral part of our own positional number system.
    [Show full text]
  • Altaic Numerals
    102 ALTAIC NUMERALS For Karl H. Menges to his 90th birthday (April 22,1998) The Altaic hypothesis supposes a genetic relationship of Turkic, Mongo­ lian, Tungus, Korean and Japanese. One of the most frequent arguments of its opponents (Clauson, Scerbak) is based on an imaginary absence of common numerals. The presence of common (= inherited) numerals represents certainly an important argument for a genetic relationship. But its absence has no de­ claring value — there are more safely related languages without any related numerals. The recent progress in a comparative historical phonology of Altaic languages allows to identify more inherited numerals and to differentiate them from the numerals of substratal or adstratal origin. The most promising set of regular correspondences among Altaic branches and the reconstruction of the Proto-Altaic consonantism was made by Sta- rostin (1986: 104 and 1991: 21) and Vovin (1994: 100): Rule Proto- Proto-Tuikic Common Proto- Middle Proto-Japanese - Altaic Mongolian Tungus Korean 1. V *0-,*-p- V > h-, -b- *P p-.p(h) *P 2. *p *b h-, -r-/-w- *p-. *-b- p-, -w- */>-, -m- 3. *b *b b-,-y- *b-, *-w- P *p/*b(-m-/-r-) 4. *-w- *-b-/*-0- -b-l-y- *-w/*-y-•0- / *-0- 5. *m *b-, *m m *m m *m/*-0 6. +t *t t. m *t. V;'- t-. t(h) *t 7. *t *d-, *-t- d.Sd) *d; *Sl-.- t-, -r- *t/*d t- 8. *d *d- d,S(0 *d. *Si- t-, -r- *t/*d, -y-l-0 9. *n *-n- n *n n *n/*-0 10. *-rr *-r- -r- *-r- -r- *-t-/*-r-/*-0 11.
    [Show full text]
  • Non-Power Positional Number Representation Systems, Bijective Numeration, and the Mesoamerican Discovery of Zero
    Non-Power Positional Number Representation Systems, Bijective Numeration, and the Mesoamerican Discovery of Zero Berenice Rojo-Garibaldia, Costanza Rangonib, Diego L. Gonz´alezb;c, and Julyan H. E. Cartwrightd;e a Posgrado en Ciencias del Mar y Limnolog´ıa, Universidad Nacional Aut´onomade M´exico, Av. Universidad 3000, Col. Copilco, Del. Coyoac´an,Cd.Mx. 04510, M´exico b Istituto per la Microelettronica e i Microsistemi, Area della Ricerca CNR di Bologna, 40129 Bologna, Italy c Dipartimento di Scienze Statistiche \Paolo Fortunati", Universit`adi Bologna, 40126 Bologna, Italy d Instituto Andaluz de Ciencias de la Tierra, CSIC{Universidad de Granada, 18100 Armilla, Granada, Spain e Instituto Carlos I de F´ısicaTe´oricay Computacional, Universidad de Granada, 18071 Granada, Spain Keywords: Zero | Maya | Pre-Columbian Mesoamerica | Number rep- resentation systems | Bijective numeration Abstract Pre-Columbian Mesoamerica was a fertile crescent for the development of number systems. A form of vigesimal system seems to have been present from the first Olmec civilization onwards, to which succeeding peoples made contributions. We discuss the Maya use of the representational redundancy present in their Long Count calendar, a non-power positional number representation system with multipliers 1, 20, 18× 20, :::, 18× arXiv:2005.10207v2 [math.HO] 23 Mar 2021 20n. We demonstrate that the Mesoamericans did not need to invent positional notation and discover zero at the same time because they were not afraid of using a number system in which the same number can be written in different ways. A Long Count number system with digits from 0 to 20 is seen later to pass to one using digits 0 to 19, which leads us to propose that even earlier there may have been an initial zeroless bijective numeration system whose digits ran from 1 to 20.
    [Show full text]
  • Vigesimal System of Numeration As Prevailed in the Bārelā Tribe Dipak
    Vigesimal System of Numeration as Prevailed in the Bārelā Tribe Dipak Jadhav Lecturer in Mathematics Govt. Boys Higher Secondary School, Anjad Distt. Barwani 451556 (M. P.) India [email protected] Abstract Bārelā is a tribe. It resides in the western part of India. In Bārelā system of numeration other numbers stand in relation to twenty. This paper finds that no other vigesimal system whether it was in India or from abroad has been influential in shaping Bārelā system of numeration if their corresponding terms are taken into consideration. Gunnīsa, uganīsa, and oganīsa are the alternative terms used by Bārelās for 19. This paper also offers an insight into the formation of each of them. Key Words: Bārelā, Vigesimal system of numeration, Vīsa, Vīsu. Introduction Bārelā is an Indian tribe. Most of its population lives in Barwani District of State of Madhya Pradesh in India. The surrounding region, where as well Bārelās dwell, to this District encompasses the neighboring Khargone District of Madhya Pradesh and the three neighboring Districts, namely, Jalgoan, Dhule, and Nandurbar, of State of Maharashtra. The term used to identify Bārelā in Maharashtra is Pāvarā.1 The entire region of their dwelling, which is in the western part of India, falls in the forest of Satpura range. The dialect which Bārelās speak is called Bārelī. Their system of numeration is based on twenty. It is observed to be mostly practised in Pati and Barwani Blocks of Barwani District. Bārelās dealing with retailers in its terms can be seen in weekly haat bazars2 conducted in this region (Parihar et el 2000; Thakur 2005, p.
    [Show full text]
  • Binary Number System
    BINARY NUMBER SYSTEM Just as the standard decimal system is based upon the powers of ten to express any number, the binary system is based on the powers of two to express a number. The binary system was first studied in detail by G. Leibnitz in 1678 and forms the basis for all computer and digital manipulations. As an example of a binary representation, consider the decimal base number 13. It is equivalent to 2^3+2^2+2^0 and so has the binary designation 1101 with the 1 designating an existing power of two and 0 if it does not exist. Likewise twelve is expressed as 1100 since the number equals 2^3+2^2 and no other powers of two. To double a binary number one needs to only add a zero at the right. Thus decimal 26=2x13 is 11010 in binary and decimal 416=2x2x2x2x2x13 will be 110100000. One can also reverse things and ask what decimal number corresponds to 101011. Here we have six digits so the number can be read off as 2^5+2^3+2^1+2^0=32+8+2+1=43. To help in these conversions it is a good idea to be familiar with the first twelve powers of two as shown in the following table- Number, n 0 1 2 3 4 5 6 7 8 9 10 11 12 2n 1 2 4 8 16 32 64 128 256 512 1024 2048 4096 Also, when adding binary numbers, use the addition table- 0 + 0 = 0 1 + 0 = 1 0 + 1 = 1 1 + 1 = 10 and when multiplying, use the multiplication table- 1 x 1 = 1 1 x 0 = 0 0 x 1 = 0 0 x 0 = 0 Following these rules, one can construct a table for addition and subtraction of the numbers 27 and 14 as follows- 2^6 2^5 2^4 2^3 2^2 2^1 2^0 N1=27 0 0 1 1 0 1 1 N2=14 0 0 0 1 1 1 0 N1+N2 0 1 0 1 0 0 1 N1-N2 0 0 0 1 1 0 1 The Japanese Soroban and Chinese Abacus are mechanical calculating devices whose origin lies in a table of this sort when adjusted to a decimal base and using bead positions to indicate 1 or 0.
    [Show full text]
  • Digital Computers Masterclass: Extra Background Information
    Digital Computers Masterclass: Extra Background Information Finger counting and number systems Historically, fingers have always been used for counting, and it is the basis of our decimal number system that a standard pair of human hands has 10 fingers. Other systems historically, including the vigesimal system used by the Ancient Mayans, have used base 20 which is a multiple of 10. Counting on your fingers can be achieved in many ways - as well as the standard systems shown on the first slide (the ‘thumb first’ system is claimed to be widespread in continental Europe, while starting with the index finger is supposedly more popular in the UK and North America, although there is variation everywhere), there exist many other finger counting systems. In Japan, zero is represented by an open palm, and fingers are counted inwards for 1-5 and then out again for 6-10 on the same hand. Chinese systems also allow counting up to 10 on one hand, while counting in binary (as described in the workshop) allows you to count to over 1000 on your fingers. The Ancient Mesopotamians developed a system of finger counting using the left thumb to point to different parts of the right hand - 1 at the tip of the little finger, then 2 and 3 for the other sections of that finger, and 4 starting at the top of the ring finger and so on. The other hand is used to store groups of 12, up to a maximum of 60 on two hands. This is suspected to be the origin of our current 60-minute/12-hour clock system.
    [Show full text]
  • Realistic Approach of Strange Number System from Unodecimal to Vigesimal
    International Journal of Computer Science and Telecommunications [Volume 3, Issue 1, January 2012] 11 Realistic Approach of Strange Number System from Unodecimal to Vigesimal ISSN 2047-3338 Debasis Das and Dr. U. A. Lanjewar Abstract — Presently in computer science and technology, 11 digits: numeral 0 through 9 and alphabet A, a base 12 number system is based on some traditional number system viz. (duodecimal) numbers contain 12 digits numeral 0 through 9 decimal (base 10), binary (base-2), octal (base-8) and hexadecimal and alphabets A and B, a base 13 (tridecimal) number contains (base 16). The numbers in strange number system (SNS) are those numbers which are other than the numbers of traditional number 13 digits: numeral 0 through 9 and alphabet A, B and C and so system. Some of the strange numbers are unary, ternary, …, fourth. These are an alphanumeric number system because its Nonary, ..., unodecimal, …, vigesimal, …, sexagesimal, etc. The uses both alphabets and numerical to represent a particular strange numbers are not widely known or widely used as number. traditional numbers in computer science, but they have charms all It is well known that the design of computers begins with their own. Today, the complexity of traditional number system is the choice of number system, which determines many technical steadily increasing in computing. Due to this fact, strange number system is investigated for efficiently describing and implementing characteristics of computers. But in the modern computer, the in digital systems. In computing the study of strange number traditional number system is only used, especially binary system (SNS) will useful to all researchers.
    [Show full text]
  • Patterns of Creating Numerals
    325 PATTERNS OF CREATING NUMERALS I. Introduction: It is almost a communis opinio that numerals belong to the most stable parts of human speech. The other myth is that the internal structure of numer­ als is analyzable only in 'primitive' languages, while the numerals in lan­ guages of the 'developed civilizations' cannot be etymologized. On the basis of etymological studies of various numerical systems, it is possible to demon­ strate that concerning changes or borrowings numerals have no privileged position. At present, not only in the 'primitive' languages, but also in the 'civilized' languages the understanding of the internal structure and semantic motivation of numerals depends on the level of etymological research. The most natural source for semantic motivation is the human body, esp. the "hand" and its parts (fingers, spans, joints). Studying the numerical systems based on the body parts terminology and those with transparent internal structure reflecting the primary arithmetic operations, we can not only explain the origin of less intelligible numerals, but also find a solution of the origin of numerals in general. II. Illustrative examples of various systems of numerals A. Numeral systems with a transparent semantic motivation: Telefol (Leontjev) [Trans-New-Guinean phylum of Indo-Pacific macro- phylum] 1 maakub little finger of the left hand 9tukal left biceps lalob ring-finger of the left hand 10 nakalkal left shoulder 3 asuno middle finger of the left hand Ukumkal left side of the neck 4 kalbinim index of the left hand 12 tulunkal left ear 5 ookal thumb of the left hand 13 tiinkal left eye 6 bukubkal fist of the left hand 14 mitkal nose 1 bankal left forearm 15 tiin miliifoko right eye Sifankal left elbow 16 tulun milifoko right ear etc.
    [Show full text]
  • Multiplication Tables of Various Bases by Michael Th Omas De Vlieger
    Th e Dozenal Society of America Multiplication Tables of Various Bases by Michael Th omas De Vlieger Ever wonder what multiplication tables might look like in alternative bases? Th e dsa Updated 6 February 2011. presents the following tables in an eff ort to thoroughly explore number bases in general. Not long into any study of the multiplication tables, we require new numerals for digits Undecimal (Base 11) greater than 9 (“transdecimal” digits). At bases eleven and twelve, this document uses Numeral Set: the dsa-Classic or Dwiggins transdecimals, where a = digit-ten and b = digit-eleven. decimal equivalent Beginning with base thirteen, we need more digits. Here we use the author’s numeral set 012345678910 known as “arqam” (< Arabic, “numbers”). Th is number 0123456789a Binary (Base 2) set extends to about four hundred numerals, however undecimal digits 1 10 only sixty are currently available in the typeface. Th is 1 23456789a10 10 100 document will be expanded from time to time to in- clude tables for larger bases. 2 4 6 8 a 11 13 15 17 19 20 Ternar y (Base 3) 369 11 14 17 1a 22 25 28 30 1 210 Octal (Base 8) 481115 19 22 26 2a 33 37 40 2 11 20 1 23456710 5 a 14 19 23 28 32 37 41 46 50 10 20 100 2 4 6 1012141620 6 1117222833 39 44 4a 55 60 7 131a26323945 51 58 64 70 Quaternary (Base 4) 3611 14 17 22 25 30 4101420 24 30 34 40 8 15222a37445159 66 73 80 1 2310 5 12172431 36 43 50 9 172533414a586674 82 90 2 10 12 20 6 1422303644 52 60 a 192837465564738291 a0 31221 30 7 162534435261 70 10 20 30 40 50 60 70 80 90 a0 100 10 20 30 100 10 20 30 40 50 60 70 100 Note that there are no standard undecimal numerals.
    [Show full text]