Page 1 of 1

Solve the following recurrence using Master’s theorem. T(n) = 4T (n/4) + n log n

Posted: Wed Jul 13, 2022 7:40 pm
by answerhappygod
a) T(n) = O(n (log n)2)
b) T(n) = O(n log n)
c) T(n) = O(n2log n)
d) cannot be solved using master’s theorem