MT1
MT1
MT1
√
Problem 1-15. T (n) = 8T ((n − n)/4) + n2 √
M.T. doesn’t apply. Using Akra-Bazzi can ignore n/4, which
√ gives Θ(n2 ). Could also use
2
M.T. to get an upper bound√of O(n ) by removing the n/4 term and a lower bound of
Ω(n2 ) by replacing the (n − n)/4 term by 0.24n.
√
Problem 1-16. T (n) = 2T (n/4) + n
T (n) = Θ(n1/2 lg n) (case 2).