3 votes
2 answers
1
It's a question from Cormen book Exercise 4.4-5 and is described like this:Use a recursion tree to determine a good asymptotic upper bound on the recurrence $T(n)=T(n-1)+...
2 votes
1 answer
2
1 votes
1 answer
8
$(a) \sum_{k = 0}^{m} \left \lfloor \sqrt k \right \rfloor$$(b) \sum_{k = 0}^{m} \left \lfloor \sqrt {k^{3}} \right \rfloor$Is there any quick way to find the formula for...
1 votes
1 answer
9
$\sum_{j \in S} 1$ where S = {1, 3, 5, 7}.if we have $\sum_{j = 1}^{n} 1$ then the answer will be n. But what happens if this a set?