Which of the following two recursive definition is valid ?
- Let
x0 = x1 = 1
and define
xn = xn - 1 + xn - 2
for all n > 1.
- Select the following subset from the natural numbers:
- x0 = smallest element of N
- xn = smallest element of
N - {x0 , x1 , x2 , ..., xn + 1}
Back
|