Recent questions tagged master-theorem

1 votes
0 answers
92
3 votes
2 answers
93
How to apply Master's Theorem(i) $T(n)= T(\frac{n}{2})+2^{n}$(ii) $T(n)=2^{n}T(\frac{n}{2})+n^{n}$
2 votes
3 answers
94
Which is right method to apply for this substitute or recursion...Can we convert it in master theorem format
3 votes
1 answer
95
Solve RecurrenceA) T(n) = T( √ n) + Θ(lg lg n)B) T(n) = T(n/2 + √ n) + √ 6046C) T(n) = T(n − 2) + lg nD) T(n) = √ n T( √ n) + 100n
1 votes
1 answer
97
2 votes
3 answers
98
There are different versions of master theorem available. I want to know whether the version given in Cormen book is sufficient for GATE?
2 votes
1 answer
99
0 votes
3 answers
100
When do we say that 2 functions are polynomially comparable for applying master theorem...? We can apply the theorem for T(n)=3T(n/4)+nlgn but cant apply it for T(n)=2T(n...