749 views
1 votes
1 votes

how do i apply master theorem to this?
 

𝑇(𝑛)=16𝑇(𝑛/4)+5𝑛^3

1 Answer

1 votes
1 votes
You can apply the extended master theorem:

T(n) = aT(n/b) + $\Theta$(n$^{k}$log$^{p}$n)

as per the question :

a=16,b=4,k=3 and p=0

since a < b$^{k}$ (i.e 16 < 4$^{3}$)

p >= 0,

therefore T(n) = $\Theta$(n$^{k}$log$^{p}$n) => $\Theta$(n$^{3}$)

Related questions

1 votes
1 votes
1 answer
1
0 votes
0 votes
1 answer
2
lucasbbs asked Feb 28, 2022
6,808 views
How do I apply the master theorem in the above recurrence? Please give details about which case and on hiow to solve the asymptotic analysis...
1 votes
1 votes
2 answers
3
mdboi asked Oct 28, 2022
779 views
how do i apply master theorem to this? T(n)=2T(n/2)−n^3n