|
 |
Numbers, numerals, operators 3
|
|
|
 |
Recovery/review I: basis of cardinal & ordinal numbers
|
|
|
 |
in the beginning, humans (and some animals) have a raw number sense
|
|
|
 |
(can tell when number has changed—only works for small numbers)
|
|
|
 |
this gets extended to a notion of cardinality by establishing a correspondence (bijection; isomorphism)
|
|
|
 |
this leads to tallies (“unary notation”; from “cut”) and pebbles (“calculate” from stone)
|
|
|
 |
in this context we can recover at least the sum & product operations of SPF
|
|
|
 |
merging groups of pebbles; substitution of groups for individuals (perhaps of different “type”)
|
|
|
 |
early uses of numbers in this sense are often “typed” according to what they count
|
|
|
 |
this gets extended later to a more abstract notion of number independent of the objects
|
|
|
 |
eventually, we get an ordinal sense of number from counting
|
|
|
 |
(these might be “nonsense words”, but seem to be based on body parts (e.g., fingers or digits) used for correspondence)
|
|
|
 |
Peano formalizes natural numbers in the late 1800s (as formal logic & set theory are rising)
|
|
|
 |
an abstract “linguistic” or term-structured basis, plus axioms to characterize behavior
|
|
|
 |
in Haskell, these fall out of the algebraic definition & the notions of constructor & pattern-matching
|
|
|
 |
the SPF functions are easily defined by iteration over each other, in sequence, from successor
|
|
|
 |
iteration is roughly primitive recursion, the computational view of logical induction provided via Peano’s axioms)
|
|
|
 |
we can recover integers (with negatives) and rationals (with fractions) using a general construction
|
|
|
 |
any monoid (algebraic structure with associative operation and unit) can be extended to a group (with inverses)
|
|
|
 |
… but not responsible for this construction this semester!
|
|
|
 |
Numerals
|
|
|
 |
numbers: the abstract entities; numerals: the linguistics, written (string) forms
|
|
|
 |
an obvious (but poor) choice for numerals is to use tallies
|
|
|
 |
(even then, bundles soon arise: see diagonal mark to make "5")
|
|
|
 |
a sense of order amongst symbols of an alphabet can be extended to pairs and lists
|
|
|
 |
for pairs, we simply identify a dominant and subordinate role, then arrange a la pets or cards
|
|
|
 |
we can extend the lexicographic ordering technique to lists, which are really just iterated products
|
|
|
 |
when counting a common type of thing in larger numbers, natural to make & count “bundles”
|
|
|
 |
this is what will lead to the notion of a base (‘b’ for bundle, ‘b’ for base)
|
|
|
 |
the operation which “counts” lex-ordered products is: sumProd b j k = b * j + k
|
|
|
 |
(relative to base b, curried over j and k: j bundles via product, plus k extra “units”
|
|
|
 |
the “inverse” operation (relative to base b) is divMod (from the Haskell Prelude)
|
|
|
 |
but note that this only works when restricted so that k < b (as we would have in a symbolic/alphabetic/digital context)
|
|
|
 |
we can extend these operations to lists in an natural way using folds & unfolds
|
|
|
 |
very concise, revealing definitions
|
|
|
 |
traditional mathematical definition of numeral “meaning” (or evaluation) uses indices
|
|
|
 |
positional notation is just the coefficients of a polynomial in the base
|
|
|
 |
relative to the same restriction as above (symbolic/alphabetic/digital context)
|
|
|
 |
what about algorithms to compute number operations via their numerals?
|
|
|
 |
remind of standard addition and multiplication algorithms, as usually presented (with very stylized layout)
|
|
|
 |
historically, there was a time when such computations were considered college-level topics
|
|
|
 |
these algorithms are accessible to elementary students only because of intense pedagogical development
|
|
|
 |
for polynomials, these algorithms (very usefully) extend the “FOIL” mnemonic taught in schools
|
|
|
 |
Alternative numerals/notations
|
|
|
 |
tallies
|
|
|
 |
use (e.g.) List of Unit—in Haskell, [()]
|
|
|
 |
addition is just appending—in Haskell, (++)
|
|
|
 |
multiplication is just substitution—in Haskell, (concatMap . const)
|
|
|
 |
dyadic/bijective numerals a la logician Raymond Smullyan
|
|
|
 |
uses the same “formula” as conventional positional notation
|
|
|
 |
… but no digit 0: instead, use a digit b (where b is the base)
|
|
|
 |
no leading 0s, so a 1-1 correspondence with numbers!
|
|
|
 |
(but 0 is represented by the empty string)
|
|
|
 |
hereditary prime decomposition as a basis for numerals
|
|
|
 |
the choice of a base is particularly arbitrary
|
|
|
 |
a much more “universal” choice would be to use prime decomposition
|
|
|
 |
we can pull back to the exponents, just as we normally pull back to the “coefficients”
|
|
|
 |
… but then we should recursively express those exponents in the same notation!
|
|
|