Recent questions tagged master-theorem

0 votes
0 answers
1
$T\left ( n \right )= 8T\left ( \frac{n}{2} \right )+\left ( n\cdot logn \right )^{2.99}$Also can $\mathcal{O}(n^{3})$ be an upper bound to above recurrence relation?
1 votes
1 answer
5
0 votes
1 answer
6
0 votes
1 answer
7
which formula to use in master theorm
3 votes
2 answers
10
The master theoremassumes the subproblems are unequal sizescan be used if the subproblems are of equal sizecannot be used for divide and conquer algorithmscannot be used ...
0 votes
1 answer
11
How to check if a given recurrence relation is in a format that is valid to apply Master’s Theorem? Also, how to distinguish between Master’s Theorem and extended Mas...
0 votes
1 answer
15
0 votes
0 answers
16
0 votes
0 answers
18
0 votes
0 answers
19
what is master theorem for function like T(n) = aT(n-b) + f(n) where f(n) is not in the form of $n^k$
0 votes
0 answers
20
T(n)=4T(√n)+nHow can we solve it using master theorem using subsitution and renaming.
0 votes
0 answers
21
How the case is matched ? : T(n) = 2T(n/2) + O(n * m)we have a = 2, b = 2, c = 1 and c = $Log_ba$ (case 2)Hence, T(n) = O(n * m * log n)Now, substituting m with nT(n) =...
0 votes
1 answer
22
how to apply masters theorem in this type of cases!????!
0 votes
1 answer
23
T(1) = 1 T(n) = 2T(n - 1) + n, n ≥ 2 evaluates to(a) 2n + 1 - n – 2(b) 2n – n(c) 2n + 1 – 2n – 2(d) 2n – n HOW TO EVALUATES USING MASTER THEOREM
0 votes
0 answers
24
0 votes
2 answers
26
How to solve the given recurrence relation using master's theorem?T(n)=T(${n^{1/2}}$)+n
0 votes
2 answers
27
T(n) = 3T( n/3 ) + n/2The answer to the above question says that case 2 of masters theorem is applied here. How is it so?
0 votes
1 answer
28
T(n)=T(n-1)+O(n)Can we apply master's theorem here ??
0 votes
0 answers
29