Homework Statement
I have recurrence relation problem and what to ask would my way be just as correct as the TA did the solution:
f(n) = 0, n=1 and 2f(n/2) + n -1
The Attempt at a Solution
Here we assume n = 2k
This is my way:
f(k-1) = 2[2f(2k-2)*2k-1-1] + 2k - 1
=...