For recursive implementation of Fibonacci series, the recursive equation is given by:-
T(n) = T(n-1) + T(n-2) + c
My question is that why do we have to assume that upper bound of T(n-2) has to be T(n-1) and similarly why lower bound of T(n-1) has to be equal to T(n-2)?
Suppose some recursive equation is given as:-
T(n) = T(n-2) + T(n-3) + T(n-5) + c
then would we be assuming here also that upper bound of T(n-2) and T(n-3) will be equal to T(n-5) and lower bound of T(n-3) and T(n-5) will be equal to T(n-2) ,i.e.,
For approximating upper bound, T(n) = 3T(n-5) + c
and for approximating lower bound, T(n) = 3T(n-2) + c
in order to solve for T(n) ?