Determine whether is this a valid recursive definition of a function f from the set of nonnegative integers to the set of integers. If f is well defined (valid recursion), find a formula for f(n) when n is a nonnegative integer and prove your formula is valid.
f(0) = 1, f(n) = -f(n-1) for n >= 1
This is extra work for a final exam tomorrow.
So I got f(0) = -f(0 - 1) = 1, so 1 = 1
So what are the next steps that I do next?
Sorry for the bad question...
– Rich Sanchez Dec 12 '13 at 06:13