Last modified: Mon Feb 20 14:53:11 1995
Other versions:
A + B + C + (A x B x C)and
(A + {nil}) x (B + {nil}) x (C + {nil})Are they equivalent? Nearly equivalent? Does one represent the other?
See p. 41 of the text.fib(0) = 1 fib(1) = 1 fib(n+2) = fib(n) + fib(n + 1)