Solve the following recurrences using the Master Theorem Sta
Solve the following recurrences using the Master Theorem. State the case and the constant values used:
T (n) 47 (1) lg nSolution
T(n)=aT(n/b)+f(n)
where f(n)=O(nlogn)
Then T(n)=O(nlogba)
Comapre with given ,
b=4,a=2
T(n)=O(nlog24)
=O(n2)
