We can make some further minor consolidations on two fronts: first, notice that the
conversion function ntoi
follows the same pattern as the arithmetic
operators, and thus can alse be re-defined more concisely in terms of iteration.
(In fact, it becomes so transparent as to nearly disappear!) Furthermore, note
that we can drop a final argument m from both sides of each of the definitions
for the arithmetic operations, leading to a final consolidation which further highlights
their character.
|
|
ntoi
(for example) as:
"ntoi is defined by iteration with zero and one-plus"or even (almost too transparently):
"ntoi is defined by iteration with zero and successor"
add
and mul
as:
"addition to n is defined by iteration, on n, of successor"and:
"multiplication by n is defined by iteration, on zero, of addition by n"