This common pattern in the definition of functions on naturals by a process of iteration
over (one of) the argument(s) can be abstracted out into a separate function, here called
itn
for "iteration on naturals". Once we abstract out the common pattern
of iteration with this function, the true character of the arithmetic operators is even
more apparent. The iteration function takes two other arguments, here called z and s, and it
essentially recurses over the structure of its natural argument and replaces every Zero
by a z
and every application of Succ
by an application of s
.
This is why (as expressed in green at the bottom of the code) when iteration is applied to
Zero
and Succ
,we get just the identity function on naturals.
|
|
add
(for example) as:
"add of n and m is defined by iteration, on n, of successor, controlled by m"