We're currently covering recurrence relations in my course. I get it for the most part, but these 3 problems are throwing me off. Can someone please explain what's happening and how I would go about solving them? Thanks
T(n) = n( T(n/2)^2 )
T(n) = T(n-1) + 16lg(n) **is lg(n) just log(n)?
T(n) = log(n)T(n/2) + 1
In the 3rd question- the final relation that you get is:
let us write log(n) as p,
so,
this can be approximated as
which is equal to