A good answer might be:

No. It does not mention the base cases.


Complete Rules

A recursive definition (or program) must have two parts:

  1. If the problem is easy, solve it immediately.
  2. If the problem can't be solved immediately, divide it into smaller problems, then:
    • Solve the smaller problems by applying this procedure to each of them.

Here is an expanded version of Fib(N):

Fib( ___ ) = _____       (base case)

Fib( ___ ) = _____       (base case)

Fib( N ) = Fib( N-1 ) + Fib( N-2 )
Fibonacci Series
N12345 678910
Fib(N)11235 813213455

 

QUESTION 15:

The rule seems to be plagued with blue blanks. Can you remove them?