0
$\begingroup$

I'm trying to find a Big-O notation of:

$\displaystyle\sum_{i=1}^{k} ( t(a_in)) + n$, where $\displaystyle\sum_{i=1}^{k} (a_i) < 1$

using a recursion tree method and substitution method. I've spent many hours trying to break this problem down, but it seems very complex (hence the summation of recurrences).

Any help would be great!

Thanks.

1 Answers 1

1

Hint: Presumably you are taking the floor of $a_in$ and have $t(n)=\sum_{i=1}^{k} t(\lfloor a_in\rfloor) + n$ Can you argue that $t$ is increasing so $\sum_{i=1}^{k} t(\lfloor a_in\rfloor) \le t(n-1)$ at least eventually?

  • 0
    I'm not sure what the "recursion part" and the "summation part" are. I just saw a way to fit it into things I know how to solve. Once we get to $t(n)=t(n-1)+n$ it is explicitly solved by t(n)=m+n(n-1)/2.2011-10-11