Difference between revisions of "Activities/Turtle Art/Tutorials/Numerals"

From Sugar Labs
Jump to navigation Jump to search
(Outline of new page)
 
(Migrate to GitHub)
 
(22 intermediate revisions by 2 users not shown)
Line 1: Line 1:
The numerals used in various languages, living and extinct, show their origins in stroke marks or scores (cuts), like the Chinese , and early forms of some Hindu-Arabic-European numerals.
+
== Turtle Art/Tutorials/Numerals ==
  
[[File:]]
+
Read at https://help.sugarlabs.org/turtleart_tutorials/numerals.html
Counting Rod Numerals and Mayan numerals (below) show clear indications of counting on fingers up to five, then with a whole hand for five plus fingers of the second hand, as in Roman numerals.
 
  
i ii iii iiii v vi vii viii viiii
+
The source file has been moved to [https://github.com/godiard/help-activity/blob/master/source/turtleart_tutorials/numerals.rst GitHub]
 
 
or
 
 
 
I II III IIII V VI VII VIII VIIII
 
 
 
with the later abbreviations iv and IV for iiii and IIII, and ix/IX for viiii/VIIII.
 
 
 
These number systems are of the same structure as the Chinese and Japanese [[Activities/TurtleArt/Tutorials/Abacus|abacuses]] (abaci?) and the Roman counting board with its little pebbles (Latin, ''calculus''/''calculi'', whence calculation and Differential and Integral [[Activities/TurtleArt/Tutorials/Kindergarten_Calculus|Calculus]]).
 
 
 
Mayan numerals go up to 20, which is often interpreted as counting on fingers and toes, with groupings of five for hands and feet, although we have no other evidence for how they began. Here are the visual numerals that have made it into Unicode as characters, first as a graphic, so that you can see them even if you do not have all of the fonts needed to display them. Then I have provided them as text so that you can test which fonts you lack.
 
 
 
[[File:UnicodeNumerals.png]]
 
 
 
It should be obvious that having a Turtle write these numbers is fairly simple to do. We can create TA stacks for each digit in one of these systems, and display whatever sort of arithmetic we want. For example,
 
 
 
[[File:TAMayanNumerals.png]]
 
 
 
We can also put these numerals on Turtle Art tiles as text, thus.
 
 
 
[[File:TACountingRodTiles.png]]
 
 
 
Mayan is also a candidate in part because it is the only one of these number systems with a zero, but Mayan has not yet been added to Unicode.
 
 
 
[[File:MayanNumerals.svg]]
 
 
 
No matter. We can still teach the Turtle to write numbers in Mayan glyphs in base 20.Only the shell glyph for 0 requires any real thought.
 
 
 
[[File:TAMayanNumerals.png
 
 
 
An advantage of any of these systems is that pre-literate preschoolers can deal with them by counting before they have memorized the conventional digits. We can actually animate arithmetic in these numerals, by taking them apart into their constituents and reassembling them. Here are a few frames.
 
 
 
[[File:TAVisualNumeralAddition
 

Latest revision as of 09:25, 28 July 2018

Turtle Art/Tutorials/Numerals

Read at https://help.sugarlabs.org/turtleart_tutorials/numerals.html

The source file has been moved to GitHub