{"id":59,"date":"2023-06-05T15:29:39","date_gmt":"2023-06-05T15:29:39","guid":{"rendered":"https:\/\/courses.lumenlearning.com\/tulsacc-math1473\/chapter\/putting-it-together-historical-counting-systems\/"},"modified":"2023-07-19T18:11:12","modified_gmt":"2023-07-19T18:11:12","slug":"putting-it-together-historical-counting-systems","status":"publish","type":"chapter","link":"https:\/\/courses.lumenlearning.com\/tulsacc-math1473\/chapter\/putting-it-together-historical-counting-systems\/","title":{"raw":"Putting It Together: Historical Counting Systems","rendered":"Putting It Together: Historical Counting Systems"},"content":{"raw":"<a href=\"https:\/\/s3-us-west-2.amazonaws.com\/courses-images\/wp-content\/uploads\/sites\/1141\/2017\/04\/05223147\/globe-895580_1920.jpg\"><img class=\"wp-image-2512 alignright\" src=\"https:\/\/s3-us-west-2.amazonaws.com\/courses-images\/wp-content\/uploads\/sites\/1141\/2017\/04\/05223147\/globe-895580_1920-300x161.jpg\" alt=\"The Earth divided into an irregular grid, centered on North Africa.\" width=\"486\" height=\"261\" \/><\/a>Computers speak <strong>binary<\/strong>. \u00a0The binary, or base 2, positional number system uses only two digits, 0 and 1, which makes it ideal for computers whose basic components typically exist in two states, <em>off<\/em> (0) or <em>on<\/em> (1). \u00a0However, binary numbers can be very tedious for human readers to interpret. \u00a0For example, can you figure out what decimal number is represented by the following binary number?\r\n<p style=\"text-align: center;\">[latex]110111101100000101011001000111111[\/latex]<\/p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThere are 33 digits in this numeral! \u00a0We may estimate roughly how big this number is by working out just the first few digits (we\u2019ll work out just four digits, but you could go further if you wanted to).\r\n<p style=\"text-align: center;\">[latex]1 \\times 2^{32} + 1 \\times 2^{31} + 0 \\times 2^{30} + 1 \\times 2^{29}[\/latex]<\/p>\r\n<p style=\"text-align: center;\">[latex]= 4,294,967,296 + 2,147,483,648 + 0 + 536,870,912[\/latex]<\/p>\r\n<p style=\"text-align: center;\">[latex]\\approx 7,000,000,000[\/latex]<\/p>\r\nThis number, about 7 billion, represents the world population on January 1st, 2017 according to the website, Population.City.\r\n\r\n&nbsp;\r\n\r\nNow if we wanted to work out the decimal value of this number down to the last digit, there is a nice shortcut. \u00a0First let\u2019s separate the digits into groups of four.\r\n<p style=\"text-align: center;\">[latex]1\\; 1011\\; 1101\\;1000\\; 0010\\; 1011\\; 0010\\; 0011\\; 1111[\/latex]<\/p>\r\nEach group may now be thought of as a numeral in base [latex]2^4 =16[\/latex]. \u00a0The base 16, or hexadecimal, number system requires 16 digits. \u00a0In particular, the digits corresponding to decimal 10 through 15 are usually written as the letters A through F, as indicated in Table I.\r\n\r\n&nbsp;\r\n\r\nTable I: \u00a0Hexadecimal digits and their equivalent decimal representations.\r\n<div>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>Hexa-\r\n\r\ndecimal<\/td>\r\n<td>0<\/td>\r\n<td>1<\/td>\r\n<td>2<\/td>\r\n<td>3<\/td>\r\n<td>4<\/td>\r\n<td>5<\/td>\r\n<td>6<\/td>\r\n<td>7<\/td>\r\n<td>8<\/td>\r\n<td>9<\/td>\r\n<td>A<\/td>\r\n<td>B<\/td>\r\n<td>C<\/td>\r\n<td>D<\/td>\r\n<td>E<\/td>\r\n<td>F<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>Decimal<\/td>\r\n<td>0<\/td>\r\n<td>1<\/td>\r\n<td>2<\/td>\r\n<td>3<\/td>\r\n<td>4<\/td>\r\n<td>5<\/td>\r\n<td>6<\/td>\r\n<td>7<\/td>\r\n<td>8<\/td>\r\n<td>9<\/td>\r\n<td>10<\/td>\r\n<td>11<\/td>\r\n<td>12<\/td>\r\n<td>13<\/td>\r\n<td>14<\/td>\r\n<td>15<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<\/div>\r\n&nbsp;\r\n\r\nFurthermore, there is a one-to-one correspondence between every possible 4-digit binary expression and the hexadecimal digits, as shown in Table II. \u00a0It is this correspondence that makes hexadecimal a natural medium for writing large binary numbers in a more human-readable way.\r\n\r\n&nbsp;\r\n\r\nTable II: \u00a0Binary-hexadecimal conversion chart.\r\n<div>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>Binary<\/td>\r\n<td>Hex.<\/td>\r\n<td>Binary<\/td>\r\n<td>Hex.<\/td>\r\n<td>Binary<\/td>\r\n<td>Hex.<\/td>\r\n<td>Binary<\/td>\r\n<td>Hex.<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>0000<\/td>\r\n<td>0<\/td>\r\n<td>0100<\/td>\r\n<td>4<\/td>\r\n<td>1000<\/td>\r\n<td>8<\/td>\r\n<td>1100<\/td>\r\n<td>C<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>0001<\/td>\r\n<td>1<\/td>\r\n<td>0101<\/td>\r\n<td>5<\/td>\r\n<td>1001<\/td>\r\n<td>9<\/td>\r\n<td>1101<\/td>\r\n<td>D<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>0010<\/td>\r\n<td>2<\/td>\r\n<td>0110<\/td>\r\n<td>6<\/td>\r\n<td>1010<\/td>\r\n<td>A<\/td>\r\n<td>1110<\/td>\r\n<td>E<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>0011<\/td>\r\n<td>3<\/td>\r\n<td>0111<\/td>\r\n<td>7<\/td>\r\n<td>1011<\/td>\r\n<td>B<\/td>\r\n<td>1111<\/td>\r\n<td>F<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<\/div>\r\n&nbsp;\r\n\r\nSo let\u2019s see what the population of the Earth looks like in hexadecimal notation. \u00a0Note that the leading \u201c1\u201d in our numeral should be interpreted as \u201c0001.\u201d\r\n<div>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>0001<\/td>\r\n<td>1011<\/td>\r\n<td>1101<\/td>\r\n<td>1000<\/td>\r\n<td>0010<\/td>\r\n<td>1011<\/td>\r\n<td>0010<\/td>\r\n<td>0011<\/td>\r\n<td>1111<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>1<\/td>\r\n<td>B<\/td>\r\n<td>D<\/td>\r\n<td>8<\/td>\r\n<td>2<\/td>\r\n<td>B<\/td>\r\n<td>2<\/td>\r\n<td>3<\/td>\r\n<td>F<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<\/div>\r\n&nbsp;\r\n\r\nThe resulting hexadecimal number, 1BD82B23F, is much easier to write down and to work with than the original binary representation, at least for us non-computers.\r\n\r\n&nbsp;\r\n\r\nFinally, let\u2019s figure out the exact decimal representation of the number using what we have learned in this module about place-value systems.\r\n\r\n&nbsp;\r\n<div>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>Digit<\/td>\r\n<td>Place value<\/td>\r\n<td>Computed values<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>1<\/td>\r\n<td>[latex]16^8[\/latex]<\/td>\r\n<td>[latex]1 \\times 16^8 = 4,294,967,296[\/latex]<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>B<\/td>\r\n<td>[latex]16^7[\/latex]<\/td>\r\n<td>[latex]11 \\times 16^7 = 2,952,790,016[\/latex]<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>D<\/td>\r\n<td>[latex]16^6[\/latex]<\/td>\r\n<td>[latex]13 \\times 16^6 = 218,103,808[\/latex]<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>8<\/td>\r\n<td>[latex]16^5[\/latex]<\/td>\r\n<td>[latex]8 \\times 16^5 = 8,388,608[\/latex]<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>2<\/td>\r\n<td>[latex]16^4[\/latex]<\/td>\r\n<td>[latex]2 \\times 16^4 = 131,072[\/latex]<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>B<\/td>\r\n<td>[latex]16^3[\/latex]<\/td>\r\n<td>[latex]11 \\times 16^3 = 45,056[\/latex]<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>2<\/td>\r\n<td>[latex]16^2[\/latex]<\/td>\r\n<td>[latex]2 \\times 16^2 = 512[\/latex]<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>3<\/td>\r\n<td>[latex]16[\/latex]<\/td>\r\n<td>[latex]3 \\times 16 = 48[\/latex]<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>F<\/td>\r\n<td>[latex]1[\/latex]<\/td>\r\n<td>[latex]15 \\times 1 = 15[\/latex]<\/td>\r\n<\/tr>\r\n<tr style=\"background-color: #4286f4;\">\r\n<td><\/td>\r\n<td>Total:<\/td>\r\n<td>[latex]7,474,426,431[\/latex]<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<\/div>\r\n&nbsp;\r\n\r\nAlmost seven and a half billion people call this planet home. \u00a0That\u2019s a lot of people regardless whether the amount is expressed in decimal, hexadecimal, or binary notation.\r\n\r\nSo far in this unit, we have briefly sketched the development of numbers and our counting system, with the emphasis on the \u201cbrief\u201d part. There are numerous sources of information and research that fill many volumes of books on this topic. Unfortunately, we cannot begin to come close to covering all of the information that is out there.\r\n\r\n<a href=\"https:\/\/s3-us-west-2.amazonaws.com\/courses-images\/wp-content\/uploads\/sites\/1141\/2017\/03\/28182439\/204px-Numeral_Systems_of_the_World.svg_.png\"><img class=\" wp-image-2292 aligncenter\" src=\"https:\/\/s3-us-west-2.amazonaws.com\/courses-images\/wp-content\/uploads\/sites\/1141\/2017\/03\/28182439\/204px-Numeral_Systems_of_the_World.svg_.png\" alt=\"\" width=\"302\" height=\"215\" \/><\/a>\r\n\r\nWe have only scratched the surface of the wealth of research and information that exists on the development of numbers and counting throughout human history. What is important to note is that the system that we use every day is a product of thousands of years of progress and development. It represents contributions by many civilizations and cultures. It does not come down to us from the sky, a gift from the gods. It is not the creation of a textbook publisher. It is indeed as human as we are, as is the rest of mathematics. Behind every symbol, formula and rule there is a human face to be found, or at least sought.\r\n\r\nFurthermore, we hope that you now have a basic appreciation for just how interesting and diverse number systems can get. Also, we\u2019re pretty sure that you have also begun to recognize that we take our own number system for granted so much that when we try to adapt to other systems or bases, we find ourselves truly having to concentrate and think about what is going on.","rendered":"<p><a href=\"https:\/\/s3-us-west-2.amazonaws.com\/courses-images\/wp-content\/uploads\/sites\/1141\/2017\/04\/05223147\/globe-895580_1920.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-2512 alignright\" src=\"https:\/\/s3-us-west-2.amazonaws.com\/courses-images\/wp-content\/uploads\/sites\/1141\/2017\/04\/05223147\/globe-895580_1920-300x161.jpg\" alt=\"The Earth divided into an irregular grid, centered on North Africa.\" width=\"486\" height=\"261\" \/><\/a>Computers speak <strong>binary<\/strong>. \u00a0The binary, or base 2, positional number system uses only two digits, 0 and 1, which makes it ideal for computers whose basic components typically exist in two states, <em>off<\/em> (0) or <em>on<\/em> (1). \u00a0However, binary numbers can be very tedious for human readers to interpret. \u00a0For example, can you figure out what decimal number is represented by the following binary number?<\/p>\n<p style=\"text-align: center;\">[latex]110111101100000101011001000111111[\/latex]<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>There are 33 digits in this numeral! \u00a0We may estimate roughly how big this number is by working out just the first few digits (we\u2019ll work out just four digits, but you could go further if you wanted to).<\/p>\n<p style=\"text-align: center;\">[latex]1 \\times 2^{32} + 1 \\times 2^{31} + 0 \\times 2^{30} + 1 \\times 2^{29}[\/latex]<\/p>\n<p style=\"text-align: center;\">[latex]= 4,294,967,296 + 2,147,483,648 + 0 + 536,870,912[\/latex]<\/p>\n<p style=\"text-align: center;\">[latex]\\approx 7,000,000,000[\/latex]<\/p>\n<p>This number, about 7 billion, represents the world population on January 1st, 2017 according to the website, Population.City.<\/p>\n<p>&nbsp;<\/p>\n<p>Now if we wanted to work out the decimal value of this number down to the last digit, there is a nice shortcut. \u00a0First let\u2019s separate the digits into groups of four.<\/p>\n<p style=\"text-align: center;\">[latex]1\\; 1011\\; 1101\\;1000\\; 0010\\; 1011\\; 0010\\; 0011\\; 1111[\/latex]<\/p>\n<p>Each group may now be thought of as a numeral in base [latex]2^4 =16[\/latex]. \u00a0The base 16, or hexadecimal, number system requires 16 digits. \u00a0In particular, the digits corresponding to decimal 10 through 15 are usually written as the letters A through F, as indicated in Table I.<\/p>\n<p>&nbsp;<\/p>\n<p>Table I: \u00a0Hexadecimal digits and their equivalent decimal representations.<\/p>\n<div>\n<table>\n<tbody>\n<tr>\n<td>Hexa-<\/p>\n<p>decimal<\/td>\n<td>0<\/td>\n<td>1<\/td>\n<td>2<\/td>\n<td>3<\/td>\n<td>4<\/td>\n<td>5<\/td>\n<td>6<\/td>\n<td>7<\/td>\n<td>8<\/td>\n<td>9<\/td>\n<td>A<\/td>\n<td>B<\/td>\n<td>C<\/td>\n<td>D<\/td>\n<td>E<\/td>\n<td>F<\/td>\n<\/tr>\n<tr>\n<td>Decimal<\/td>\n<td>0<\/td>\n<td>1<\/td>\n<td>2<\/td>\n<td>3<\/td>\n<td>4<\/td>\n<td>5<\/td>\n<td>6<\/td>\n<td>7<\/td>\n<td>8<\/td>\n<td>9<\/td>\n<td>10<\/td>\n<td>11<\/td>\n<td>12<\/td>\n<td>13<\/td>\n<td>14<\/td>\n<td>15<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<p>&nbsp;<\/p>\n<p>Furthermore, there is a one-to-one correspondence between every possible 4-digit binary expression and the hexadecimal digits, as shown in Table II. \u00a0It is this correspondence that makes hexadecimal a natural medium for writing large binary numbers in a more human-readable way.<\/p>\n<p>&nbsp;<\/p>\n<p>Table II: \u00a0Binary-hexadecimal conversion chart.<\/p>\n<div>\n<table>\n<tbody>\n<tr>\n<td>Binary<\/td>\n<td>Hex.<\/td>\n<td>Binary<\/td>\n<td>Hex.<\/td>\n<td>Binary<\/td>\n<td>Hex.<\/td>\n<td>Binary<\/td>\n<td>Hex.<\/td>\n<\/tr>\n<tr>\n<td>0000<\/td>\n<td>0<\/td>\n<td>0100<\/td>\n<td>4<\/td>\n<td>1000<\/td>\n<td>8<\/td>\n<td>1100<\/td>\n<td>C<\/td>\n<\/tr>\n<tr>\n<td>0001<\/td>\n<td>1<\/td>\n<td>0101<\/td>\n<td>5<\/td>\n<td>1001<\/td>\n<td>9<\/td>\n<td>1101<\/td>\n<td>D<\/td>\n<\/tr>\n<tr>\n<td>0010<\/td>\n<td>2<\/td>\n<td>0110<\/td>\n<td>6<\/td>\n<td>1010<\/td>\n<td>A<\/td>\n<td>1110<\/td>\n<td>E<\/td>\n<\/tr>\n<tr>\n<td>0011<\/td>\n<td>3<\/td>\n<td>0111<\/td>\n<td>7<\/td>\n<td>1011<\/td>\n<td>B<\/td>\n<td>1111<\/td>\n<td>F<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<p>&nbsp;<\/p>\n<p>So let\u2019s see what the population of the Earth looks like in hexadecimal notation. \u00a0Note that the leading \u201c1\u201d in our numeral should be interpreted as \u201c0001.\u201d<\/p>\n<div>\n<table>\n<tbody>\n<tr>\n<td>0001<\/td>\n<td>1011<\/td>\n<td>1101<\/td>\n<td>1000<\/td>\n<td>0010<\/td>\n<td>1011<\/td>\n<td>0010<\/td>\n<td>0011<\/td>\n<td>1111<\/td>\n<\/tr>\n<tr>\n<td>1<\/td>\n<td>B<\/td>\n<td>D<\/td>\n<td>8<\/td>\n<td>2<\/td>\n<td>B<\/td>\n<td>2<\/td>\n<td>3<\/td>\n<td>F<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<p>&nbsp;<\/p>\n<p>The resulting hexadecimal number, 1BD82B23F, is much easier to write down and to work with than the original binary representation, at least for us non-computers.<\/p>\n<p>&nbsp;<\/p>\n<p>Finally, let\u2019s figure out the exact decimal representation of the number using what we have learned in this module about place-value systems.<\/p>\n<p>&nbsp;<\/p>\n<div>\n<table>\n<tbody>\n<tr>\n<td>Digit<\/td>\n<td>Place value<\/td>\n<td>Computed values<\/td>\n<\/tr>\n<tr>\n<td>1<\/td>\n<td>[latex]16^8[\/latex]<\/td>\n<td>[latex]1 \\times 16^8 = 4,294,967,296[\/latex]<\/td>\n<\/tr>\n<tr>\n<td>B<\/td>\n<td>[latex]16^7[\/latex]<\/td>\n<td>[latex]11 \\times 16^7 = 2,952,790,016[\/latex]<\/td>\n<\/tr>\n<tr>\n<td>D<\/td>\n<td>[latex]16^6[\/latex]<\/td>\n<td>[latex]13 \\times 16^6 = 218,103,808[\/latex]<\/td>\n<\/tr>\n<tr>\n<td>8<\/td>\n<td>[latex]16^5[\/latex]<\/td>\n<td>[latex]8 \\times 16^5 = 8,388,608[\/latex]<\/td>\n<\/tr>\n<tr>\n<td>2<\/td>\n<td>[latex]16^4[\/latex]<\/td>\n<td>[latex]2 \\times 16^4 = 131,072[\/latex]<\/td>\n<\/tr>\n<tr>\n<td>B<\/td>\n<td>[latex]16^3[\/latex]<\/td>\n<td>[latex]11 \\times 16^3 = 45,056[\/latex]<\/td>\n<\/tr>\n<tr>\n<td>2<\/td>\n<td>[latex]16^2[\/latex]<\/td>\n<td>[latex]2 \\times 16^2 = 512[\/latex]<\/td>\n<\/tr>\n<tr>\n<td>3<\/td>\n<td>[latex]16[\/latex]<\/td>\n<td>[latex]3 \\times 16 = 48[\/latex]<\/td>\n<\/tr>\n<tr>\n<td>F<\/td>\n<td>[latex]1[\/latex]<\/td>\n<td>[latex]15 \\times 1 = 15[\/latex]<\/td>\n<\/tr>\n<tr style=\"background-color: #4286f4;\">\n<td><\/td>\n<td>Total:<\/td>\n<td>[latex]7,474,426,431[\/latex]<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<p>&nbsp;<\/p>\n<p>Almost seven and a half billion people call this planet home. \u00a0That\u2019s a lot of people regardless whether the amount is expressed in decimal, hexadecimal, or binary notation.<\/p>\n<p>So far in this unit, we have briefly sketched the development of numbers and our counting system, with the emphasis on the \u201cbrief\u201d part. There are numerous sources of information and research that fill many volumes of books on this topic. Unfortunately, we cannot begin to come close to covering all of the information that is out there.<\/p>\n<p><a href=\"https:\/\/s3-us-west-2.amazonaws.com\/courses-images\/wp-content\/uploads\/sites\/1141\/2017\/03\/28182439\/204px-Numeral_Systems_of_the_World.svg_.png\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-2292 aligncenter\" src=\"https:\/\/s3-us-west-2.amazonaws.com\/courses-images\/wp-content\/uploads\/sites\/1141\/2017\/03\/28182439\/204px-Numeral_Systems_of_the_World.svg_.png\" alt=\"\" width=\"302\" height=\"215\" \/><\/a><\/p>\n<p>We have only scratched the surface of the wealth of research and information that exists on the development of numbers and counting throughout human history. What is important to note is that the system that we use every day is a product of thousands of years of progress and development. It represents contributions by many civilizations and cultures. It does not come down to us from the sky, a gift from the gods. It is not the creation of a textbook publisher. It is indeed as human as we are, as is the rest of mathematics. Behind every symbol, formula and rule there is a human face to be found, or at least sought.<\/p>\n<p>Furthermore, we hope that you now have a basic appreciation for just how interesting and diverse number systems can get. Also, we\u2019re pretty sure that you have also begun to recognize that we take our own number system for granted so much that when we try to adapt to other systems or bases, we find ourselves truly having to concentrate and think about what is going on.<\/p>\n\n\t\t\t <section class=\"citations-section\" role=\"contentinfo\">\n\t\t\t <h3>Candela Citations<\/h3>\n\t\t\t\t\t <div>\n\t\t\t\t\t\t <div id=\"citation-list-59\">\n\t\t\t\t\t\t\t <div class=\"licensing\"><div class=\"license-attribution-dropdown-subheading\">CC licensed content, Original<\/div><ul class=\"citation-list\"><li>Putting It Together: Historical Counting Systems. <strong>Authored by<\/strong>: Lumen Learning. <strong>License<\/strong>: <em><a target=\"_blank\" rel=\"license\" href=\"https:\/\/creativecommons.org\/licenses\/by\/4.0\/\">CC BY: Attribution<\/a><\/em><\/li><\/ul><div class=\"license-attribution-dropdown-subheading\">CC licensed content, Shared previously<\/div><ul class=\"citation-list\"><li><strong>Located at<\/strong>: <a target=\"_blank\" href=\"https:\/\/pixabay.com\/en\/globe-earth-world-globalization-895580\/\">https:\/\/pixabay.com\/en\/globe-earth-world-globalization-895580\/<\/a>. <strong>License<\/strong>: <em><a target=\"_blank\" rel=\"license\" href=\"https:\/\/creativecommons.org\/about\/cc0\">CC0: No Rights Reserved<\/a><\/em><\/li><\/ul><\/div>\n\t\t\t\t\t\t <\/div>\n\t\t\t\t\t <\/div>\n\t\t\t <\/section>","protected":false},"author":503070,"menu_order":9,"template":"","meta":{"_candela_citation":"[{\"type\":\"cc\",\"description\":\"\",\"author\":\"\",\"organization\":\"\",\"url\":\"https:\/\/pixabay.com\/en\/globe-earth-world-globalization-895580\/\",\"project\":\"\",\"license\":\"cc0\",\"license_terms\":\"\"},{\"type\":\"original\",\"description\":\"Putting It Together: Historical Counting Systems\",\"author\":\"Lumen Learning\",\"organization\":\"\",\"url\":\"\",\"project\":\"\",\"license\":\"cc-by\",\"license_terms\":\"\"}]","CANDELA_OUTCOMES_GUID":"3d5836da-8d20-44b6-b1a3-791497bc2816","pb_show_title":"on","pb_short_title":"","pb_subtitle":"","pb_authors":[],"pb_section_license":""},"chapter-type":[],"contributor":[],"license":[],"class_list":["post-59","chapter","type-chapter","status-publish","hentry"],"part":33,"_links":{"self":[{"href":"https:\/\/courses.lumenlearning.com\/tulsacc-math1473\/wp-json\/pressbooks\/v2\/chapters\/59","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/courses.lumenlearning.com\/tulsacc-math1473\/wp-json\/pressbooks\/v2\/chapters"}],"about":[{"href":"https:\/\/courses.lumenlearning.com\/tulsacc-math1473\/wp-json\/wp\/v2\/types\/chapter"}],"author":[{"embeddable":true,"href":"https:\/\/courses.lumenlearning.com\/tulsacc-math1473\/wp-json\/wp\/v2\/users\/503070"}],"version-history":[{"count":3,"href":"https:\/\/courses.lumenlearning.com\/tulsacc-math1473\/wp-json\/pressbooks\/v2\/chapters\/59\/revisions"}],"predecessor-version":[{"id":983,"href":"https:\/\/courses.lumenlearning.com\/tulsacc-math1473\/wp-json\/pressbooks\/v2\/chapters\/59\/revisions\/983"}],"part":[{"href":"https:\/\/courses.lumenlearning.com\/tulsacc-math1473\/wp-json\/pressbooks\/v2\/parts\/33"}],"metadata":[{"href":"https:\/\/courses.lumenlearning.com\/tulsacc-math1473\/wp-json\/pressbooks\/v2\/chapters\/59\/metadata\/"}],"wp:attachment":[{"href":"https:\/\/courses.lumenlearning.com\/tulsacc-math1473\/wp-json\/wp\/v2\/media?parent=59"}],"wp:term":[{"taxonomy":"chapter-type","embeddable":true,"href":"https:\/\/courses.lumenlearning.com\/tulsacc-math1473\/wp-json\/pressbooks\/v2\/chapter-type?post=59"},{"taxonomy":"contributor","embeddable":true,"href":"https:\/\/courses.lumenlearning.com\/tulsacc-math1473\/wp-json\/wp\/v2\/contributor?post=59"},{"taxonomy":"license","embeddable":true,"href":"https:\/\/courses.lumenlearning.com\/tulsacc-math1473\/wp-json\/wp\/v2\/license?post=59"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}